
/* ---------- GLOBAL OVERFLOW FIX ---------- */
html { overflow-x: hidden; }

/* ---------- NAVBAR HIDE ON SCROLL (mobile) ---------- */
.lp-navbar.nav-hidden {
    transform: translateY(-110%);
    pointer-events: none;
}

/* ---------- NAVBAR ---------- */
.lp-navbar {
    background: transparent;
    transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease, transform .3s ease;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

/* Default state: transparent navbar over hero */
.lp-navbar .logo-color { display: none; }
.lp-navbar .logo-white { display: block; }
.lp-navbar .nav-link { color: rgba(255,255,255,.85) !important; }
.lp-navbar .nav-link:hover { color: #fff !important; }

/* Buttons: ghost style on transparent bg */
.lp-nav-btn-login {
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    transition: all .3s;
}
.lp-nav-btn-login:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,.15);
}
.lp-nav-btn-register {
    color: #0d6efd;
    background: #fff;
    border: 1px solid #fff;
    transition: all .3s;
}
.lp-nav-btn-register:hover {
    background: rgba(255,255,255,.9);
}

/* Scrolled state: white navbar */
.lp-navbar.nav-fixed {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.lp-navbar.nav-fixed .logo-color { display: block; }
.lp-navbar.nav-fixed .logo-white { display: none; }
.lp-navbar.nav-fixed .nav-link { color: #212529 !important; }
.lp-navbar.nav-fixed .nav-link:hover { color: #0d6efd !important; }

/* Buttons: primary style on white bg */
.lp-navbar.nav-fixed .lp-nav-btn-login {
    color: #0d6efd;
    border-color: #0d6efd;
    background: transparent;
}
.lp-navbar.nav-fixed .lp-nav-btn-login:hover {
    color: #fff;
    background: #0d6efd;
    border-color: #0d6efd;
}
.lp-navbar.nav-fixed .lp-nav-btn-register {
    color: #fff;
    background: #0d6efd;
    border-color: #0d6efd;
}
.lp-navbar.nav-fixed .lp-nav-btn-register:hover {
    background: #0b5ed7;
    border-color: #0a58ca;
}
.lp-navbar .nav-link {
    position: relative;
    font-size: .9rem;
    transition: color .2s;
}
.lp-navbar .nav-link:hover {
    color: #0d6efd !important;
}
.lp-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: #0d6efd;
    border-radius: 2px;
    transition: left .3s, right .3s;
}
.lp-navbar .nav-link:hover::after {
    left: .75rem;
    right: .75rem;
}

/* ---------- NAVBAR TOGGLER ---------- */
.lp-nav-toggler {
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,.5) !important;
    border-radius: 6px;
    flex-shrink: 0;
}
.lp-nav-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.2em;
    height: 1.2em;
}
.lp-navbar.nav-fixed .lp-nav-toggler {
    border-color: rgba(13,110,253,.3) !important;
}
.lp-navbar.nav-fixed .lp-nav-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,110,253,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- BACK TO TOP ---------- */
#back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    line-height: 44px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(13,110,253,.35);
    transition: all .3s;
}
#back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13,110,253,.45);
}

/* ---------- HERO ---------- */
.lp-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13,110,253,.97), rgba(6,61,148,.98)),
        url('/images/Home-SZ.jpg') center/cover no-repeat;
}
.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 200px;
background: linear-gradient(
    to top,
    #ffffff 0%,
    #ffffff6d 50%,
    transparent 100%
);    z-index: 1;
}
.lp-hero .container { position: relative; z-index: 2; }

.lp-hero h1 { font-size: 3.6rem; letter-spacing: -.5px; }
.lp-hero .lp-highlight { position: relative; display: inline-block; }
.lp-hero .lp-highlight::after {
    content: '';
    position: absolute; left: 0; bottom: 4px;
    width: 100%; height: 12px;
    background: rgba(255,255,255,.25);
    border-radius: 4px; z-index: -1;
}

.lp-hero-badge { backdrop-filter: blur(4px); }

/* ---------- CUSTOM BUTTONS (hover only) ---------- */
.lp-btn-white,
.lp-btn-ghost { transition: all .3s; }
.lp-btn-white:hover {
    background: transparent !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.lp-btn-ghost:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,.1) !important;
    transform: translateY(-2px);
}

/* ---------- SKELETON PULSE ANIMATION ---------- */
.lp-skel-pulse {
    background: linear-gradient(90deg, #e9ecef 25%, #f3f4f6 50%, #e9ecef 75%) !important;
    background-size: 200% 100%;
    animation: lp-pulse 1.8s ease-in-out infinite;
}
@keyframes lp-pulse {
    0%   { background-position: 200%  0; }
    100% { background-position: -200% 0; }
}

/* ---------- SKELETON SPECIFIC SIZES ---------- */
.lp-skel-nav-logo  { width: 32px; height: 32px; }
.lp-skel-nav-search { max-width: 220px; height: 32px; }
.lp-skel-nav-icon  { width: 22px; height: 22px; }
.lp-skel-avatar    { width: 40px; height: 40px; }
.lp-skel-action-icon { width: 16px; height: 16px; }
.lp-skel-action-text { width: 50px; height: 10px; }
.lp-skel-meta-icon { width: 12px; height: 12px; }
.lp-skel-meta-text { height: 8px; }

/* ---------- SKELETON TABS (active indicator) ---------- */
.lp-skel-tab { position: relative; }
.lp-skel-tab.active::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: #0d6efd; border-radius: 2px;
}

/* ---------- SKELETON EVENT GRID ---------- */
.lp-skel-event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.lp-skel-event-img {
    height: 80px;
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
}
.lp-skel-event-img .badge {
    position: absolute; top: 8px; right: 8px;
}

/* ---------- SKELETON DASHBOARD GRIDS ---------- */
.lp-skel-dash-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.lp-skel-dash-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lp-skel-dash-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
}
.lp-skel-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.lp-skel-cal-day.today {
    background: #0d6efd;
    color: #fff;
    font-weight: 700;
}
.lp-skel-cal-day.has-event { position: relative; }
.lp-skel-cal-day.has-event::after {
    content: '';
    position: absolute; bottom: 1px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%; background: #0d6efd;
}
.lp-skel-dash-tab.active {
    color: #0d6efd;
    border-bottom: 2px solid #0d6efd;
    margin-bottom: -2px;
}

/* ---------- STEP NUMBER + LINE ---------- */
.lp-step-num {
    width: 64px; height: 64px;
    box-shadow: 0 6px 20px rgba(13,110,253,.35);
}
.lp-step-line {
    position: absolute; top: 32px; left: 60%;
    width: 80%; height: 2px;
    background: linear-gradient(90deg, #0d6efd, #cfe2ff);
    opacity: .4;
}

/* ---------- FEATURE CARD HOVER ---------- */
.lp-feat-card {
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.lp-feat-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: #0d6efd;
    transform: scaleX(0); transition: transform .3s;
}
.lp-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(13,110,253,.12);
    border-color: #b6d4fe;
}
.lp-feat-card:hover::after { transform: scaleX(1); }

/* ---------- CRM ICON SIZE ---------- */
.lp-crm-icon { width: 44px; height: 44px; }

/* ---------- AUDIENCE CARD HOVER ---------- */
.lp-audience-card { transition: all .3s; }
.lp-audience-card:hover { transform: translateY(-4px); }
.lp-audience-card.bg-primary:hover  { box-shadow: 0 20px 50px rgba(13,110,253,.4); }
.lp-audience-card.bg-white:hover    { box-shadow: 0 20px 50px rgba(13,110,253,.15); }
.lp-audience-card .btn:hover { transform: translateY(-2px); }

/* ---------- CHECK ICON ---------- */
.lp-check { width: 22px; height: 22px; font-size: .65rem; }

/* ---------- FEAT ICON SIZE ---------- */
.lp-feat-icon { width: 56px; height: 56px; }

/* ---------- IMAGE SECTION ---------- */
.lp-img-section img { object-fit: cover; }

/* ---------- FINAL CTA ---------- */
.lp-final {
    padding: 110px 0;
    position: relative; overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13,110,253,.97), rgba(6,61,148,.98)),
        url('/images/Newsletter-SZ.jpg') center/cover no-repeat;
}
.lp-final::before {
    content: '';
    position: absolute; top: -2px; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(
    to top,
    transparent 0%,
    #ffffff3a 50%,
    #ffffff 100%
);
    z-index: 1;
}
.lp-final .container { position: relative; z-index: 2; }

/* ---------- RESPONSIVE ---------- */

/* Mobile navbar collapse menu */
@media (max-width: 991.98px) {
    .lp-navbar .navbar-collapse {
        background: rgba(9, 49, 128, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 0 0 16px 16px;
        padding: 1rem 1.25rem 1.5rem;
        margin: 8px -12px 0;
        box-shadow: 0 8px 32px rgba(0,0,0,.3);
    }
    .lp-navbar.nav-fixed .navbar-collapse {
        background: #fff;
        border-top: 1px solid #e9ecef;
        border-radius: 0;
        margin: 0 -12px;
        box-shadow: 0 8px 20px rgba(0,0,0,.07);
    }
    .lp-navbar .lp-nav-btn-login,
    .lp-navbar .lp-nav-btn-register {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .lp-navbar.nav-fixed .lp-nav-btn-login {
        color: #0d6efd;
        border-color: #0d6efd;
        background: transparent;
    }
    .lp-navbar.nav-fixed .lp-nav-btn-register {
        color: #fff;
        background: #0d6efd;
        border-color: #0d6efd;
    }
}

@media (max-width: 991px) {
    .lp-hero h1 { font-size: 2.6rem; }
    .lp-skel-event-grid { grid-template-columns: 1fr; }
    .lp-skel-dash-stats { grid-template-columns: repeat(3, 1fr); }
    .lp-skel-dash-content { grid-template-columns: 1fr; }
    .lp-page-hero { padding: 130px 0 50px; }
    .lp-page-hero h1 { font-size: 2rem; }
    /* Dashboard tabs scrollable */
    #skelDashTabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    #skelDashTabs::-webkit-scrollbar { display: none; }
    #skelDashTabs .nav-link { white-space: nowrap; }
}
@media (max-width: 768px) {
    .lp-hero { padding: 120px 0 60px; text-align: center; }
    .lp-hero h1 { font-size: 2.1rem; }
    .lp-hero-badge { margin-left: auto; margin-right: auto; }
    .lp-skel-dash-stats { grid-template-columns: repeat(3, 1fr); }
    .lp-skel-dash-content { grid-template-columns: 1fr; }
    .lp-page-hero { padding: 110px 0 40px; }
    .lp-page-hero h1 { font-size: 1.7rem; }
}

/* ---------- PAGE HERO (internal pages) ---------- */
.lp-page-hero {
    padding: 150px 0 60px;
    background:
        linear-gradient(135deg, rgba(13,110,253,.97), rgba(6,61,148,.98)),
        url('/images/Home-SZ.jpg') center/cover no-repeat;
}
.lp-page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.4);
}

/* ---------- LEGAL ICON ---------- */
.lp-legal-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.1rem;
}

/* ---------- FOOTER ---------- */
.lp-footer {
    position: relative;
    background: linear-gradient(135deg, rgba(13,110,253,.97), rgba(6,61,148,.98));
}
.lp-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,10,30,.45) 100%);
    pointer-events: none;
}
.lp-footer .container {
    position: relative;
    z-index: 1;
}
.lp-footer-link {
    transition: color .3s, transform .2s;
}
.lp-footer-link:hover {
    color: #6ea8fe !important;
    opacity: 1 !important;
}
.lp-footer-social {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    transition: all .3s;
}
.lp-footer-social:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13,110,253,.4);
}

/* ---------- KANBAN BOARD (skeleton marketing) ---------- */
.lp-kanban-board {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.lp-kanban-board::-webkit-scrollbar { height: 4px; }
.lp-kanban-board::-webkit-scrollbar-track { background: #f0f2f5; border-radius: 2px; }
.lp-kanban-board::-webkit-scrollbar-thumb { background: #ced4da; border-radius: 2px; }
.lp-kanban-col {
    flex: 0 0 185px;
    background: #f0f2f5;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}
.lp-kanban-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.lp-kanban-card {
    background: #fff;
    border-radius: 6px;
    padding: 8px 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    cursor: default;
}
.lp-kanban-add {
    font-size: .62rem;
    color: #adb5bd;
    cursor: default;
    padding: 4px 2px;
    display: flex;
    align-items: center;
}
.lp-kanban-tag {
    font-size: .54rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 20px;
    letter-spacing: .3px;
    white-space: nowrap;
}
.lp-kanban-tag.tag-todo      { background: #fff3cd; color: #856404; }
.lp-kanban-tag.tag-inprogress { background: #cfe2ff; color: #0a58ca; }
.lp-kanban-tag.tag-done      { background: #d1e7dd; color: #0a3622; }
.lp-kanban-tag.tag-edl       { background: #e0e7ff; color: #3730a3; }
.lp-kanban-tag.tag-normal    { background: #f1f3f5; color: #868e96; }

/* ---------- RESERVATIONS PANEL (skeleton marketing) ---------- */
.lp-resv-stat {
    font-size: .58rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .lp-kanban-col { flex: 0 0 155px; }
    .lp-hero { padding: 95px 0 50px; }
    .lp-hero h1 { font-size: 1.85rem; }
    .lp-hero .d-flex.gap-3 { flex-direction: column; }
    .lp-hero .d-flex.gap-3 .btn { width: 100%; justify-content: center; }
    .lp-skel-dash-stats { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .lp-skel-dash-content { grid-template-columns: 1fr; }
    .lp-resv-stat { font-size: .52rem; padding: 2px 4px !important; }
    .lp-final { padding: 70px 0; }
}

/* ---------- PARTNERS PAGE ---------- */
.lp-partner-logo {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    transition: transform .3s, box-shadow .3s;
}
.lp-partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13,110,253,.15) !important;
}
.lp-partner-name:hover { color: #0d6efd !important; }

/* ---------- AMBASSADORS PAGE ---------- */
.lp-ambassador-card {
    transition: transform .3s, box-shadow .3s;
}
.lp-ambassador-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13,110,253,.13) !important;
}
.lp-ambassador-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #e9ecef;
}
