:root {
            --deep-blue: #1B2E5D;
            --royal-blue: #223367;
            --orange: #F58220;
            --orange-hover: #ff9a3c;
            --white: #FFFFFF;
            --dark: #000000;
        }

       html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;          
}
.nav-logo {
    
    height: 50px; 
    width: auto; 
    
    
    object-fit: contain; 
    
    display: block;
}

.logo-box {
    display: flex;
    align-items: center;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    overflow-x: hidden;
    color: var(--white);
    margin-bottom: 0;          
}
       
        /* ============================================================
           NAVBAR
           ============================================================ */
        .way-navbar {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            z-index: 1050;
            padding: 18px 0;
            transition: all 0.4s ease;
        }

        .way-navbar.scrolled {
            background: rgba(27, 46, 93, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--white);
            z-index: 1060;
            flex-shrink: 0;
        }

        .brand-logo-img {
            height: 65px;
            width: auto;
            object-fit: contain;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: brightness(1.15);
        }

        /* Fallback logo */
        .brand-logo-fallback {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-logo-fallback .logo-icon-box {
            width: 48px; height: 48px;
            background: linear-gradient(135deg, var(--orange), #e07020);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; color: #fff;
            box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
        }

        .brand-logo-fallback .logo-words {
            display: flex; flex-direction: column; line-height: 1;
        }

        .brand-logo-fallback .logo-words strong {
            font-size: 20px; font-weight: 800;
            letter-spacing: 2px;
        }

        .brand-logo-fallback .logo-words strong span { color: var(--orange); }

        .brand-logo-fallback .logo-words small {
            font-size: 8px; letter-spacing: 2.5px;
            color: rgba(255,255,255,0.45);
            text-transform: uppercase; margin-top: 3px;
        }

        .way-navbar.scrolled .brand-logo-img {
            height: 55px;
            filter: brightness(1.25);
        }

        .nav-brand:hover .brand-logo-img {
            transform: scale(1.05);
        }

        /* ✅ NAV LINKS  */
        .nav-links {
            display: none;
            list-style: none;
            gap: 32px;
            margin: 0;
            padding: 0;
            align-items: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        @media (min-width: 992px) {
            .nav-links { display: flex; }
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14.5px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 2px;
            background: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover { color: var(--orange); }
        .nav-links a:hover::after { width: 100%; }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 1060;
            justify-content: flex-end;
            flex-shrink: 0;
        }

        .nav-phone {
            display: none;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        @media (min-width: 992px) { .nav-phone { display: flex; } }
        .nav-phone i { color: var(--orange); font-size: 16px; }
        .nav-phone:hover {
            border-color: var(--orange);
            background: rgba(245, 130, 32, 0.08);
        }

        .btn-book-nav {
            display: none;
            background: var(--orange);
            color: #fff; border: none;
            padding: 10px 26px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        @media (min-width: 992px) { .btn-book-nav { display: inline-block; } }

        .btn-book-nav:hover {
            background: var(--orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 130, 32, 0.35);
            color: #fff;
        }

        .nav-login-btn {
            display: none;
            align-items: center;
            gap: 5px;
            padding: 10px 18px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.8);
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        @media (min-width: 992px) {
            .nav-login-btn { display: inline-flex; }
        }

        .nav-login-btn i {
            font-size: 16px;
            color: var(--orange);
        }

        .nav-login-btn:hover {
            border-color: var(--orange);
            color: #fff;
            background: rgba(245, 130, 32, 0.08);
        }

        .nav-login-btn.logged-in {
            border-color: rgba(39, 174, 96, 0.4);
            background: rgba(39, 174, 96, 0.08);
        }

        .nav-login-btn.logged-in i {
            color: #27ae60;
        }

        .menu-btn {
            font-size: 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 992px) { .menu-btn { display: none; } }

        .menu-btn:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: var(--orange);
            color: var(--orange);
        }

        /* ============================================================
           SIDEBAR
           ============================================================ */
        .custom-sidebar {
            background: linear-gradient(180deg, var(--deep-blue) 0%, var(--royal-blue) 100%) !important;
            color: white;
            width: 300px !important;
            max-width: 85vw !important;
            border-left: 3px solid var(--orange) !important;
            top: 0 !important; bottom: 0 !important;
            height: 100vh !important;
        }

  .custom-sidebar .btn-close {
    filter: none !important;
    opacity: 1 !important;
    width: 36px !important;
    height: 36px !important;
    background: none !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    background-image: none !important;
    position: relative;
    transition: all 0.3s ease;
    padding: 0 !important;       
    margin: 0 !important;       
    box-sizing: content-box !important; 
}

.custom-sidebar .btn-close::before,
.custom-sidebar .btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.custom-sidebar .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.custom-sidebar .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.custom-sidebar .btn-close:hover {
    border-color: var(--orange) !important;
    background: rgba(245, 130, 32, 0.1) !important;
}

.custom-sidebar .btn-close:hover::before,
.custom-sidebar .btn-close:hover::after {
    background: var(--orange);
}

        .custom-sidebar .btn-close:hover { opacity: 1; }

        .menu-links {
            list-style: none;
            padding: 0; margin: 0;
        }

        .menu-links a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            transition: 0.3s;
            letter-spacing: 1px;
            font-size: 15px;
            font-weight: 400;
        }

        .menu-links a:hover {
            color: var(--orange);
            padding-left: 10px;
        }

        .visit-section { margin-top: 40px; text-align: center; }

        .visit-section h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            display: inline-block;
        }

        .visit-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px; left: 50%;
            transform: translateX(-50%);
            width: 30px; height: 2px;
            background: var(--orange);
        }

        .visit-section p {
            font-size: 14px; line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 4px;
        }

        .visit-section .phone {
            font-size: 20px; font-weight: bold;
            color: var(--orange); margin-top: 12px;
        }

        .btn-orange {
            background-color: var(--orange);
            color: #fff; border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px; font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-orange:hover {
            background-color: var(--orange-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 130, 32, 0.35);
        }

        .sidebar-social {
            display: flex; gap: 10px;
            margin-top: 24px; justify-content: center;
        }

        .sidebar-social a {
            width: 38px; height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            padding: 0 !important;
            border-bottom: none !important;
        }

        .sidebar-social a:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(245, 130, 32, 0.1);
        }

        .offcanvas-backdrop { background: rgba(0, 0, 0, 0.6) !important; }

        /* ============================================================
           LOGIN MODAL
           ============================================================ */
        .login-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .login-modal.open {
            opacity: 1;
            visibility: visible;
        }

        .login-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .login-modal-content {
            position: relative;
            display: flex;
            width: 880px;
            max-width: 94vw;
            max-height: 92vh;
            background: var(--deep-blue);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transform: translateY(30px) scale(0.96);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .login-modal.open .login-modal-content {
            transform: translateY(0) scale(1);
        }

        .login-modal-close {
            position: absolute;
            top: 16px; right: 16px;
            width: 36px; height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            cursor: pointer;
            z-index: 10;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.25s ease;
        }

        .login-modal-close:hover {
            background: rgba(255, 60, 60, 0.15);
            border-color: rgba(255, 60, 60, 0.4);
            color: #ff6b6b;
        }

        .login-visual {
            width: 340px;
            min-width: 340px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-visual-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, #0d1f3c 0%, var(--deep-blue) 40%, #2a4a7f 70%, var(--orange) 100%);
            opacity: 0.9;
        }

        .login-visual-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 80%, rgba(245, 130, 32, 0.2) 0%, transparent 60%),
                        radial-gradient(circle at 80% 20%, rgba(42, 74, 127, 0.4) 0%, transparent 50%);
        }

        .login-visual-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px 30px;
        }

        .login-visual-icon {
            width: 80px; height: 80px;
            border-radius: 50%;
            background: rgba(245, 130, 32, 0.15);
            border: 2px solid rgba(245, 130, 32, 0.3);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 24px;
            font-size: 36px;
            color: var(--orange);
        }

        .login-visual-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .login-visual-content p {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 30px;
        }

        .login-visual-stats {
            display: flex;
            gap: 24px;
            justify-content: center;
        }

        .login-visual-stats > div { text-align: center; }

        .login-visual-stats span {
            display: block;
            font-size: 22px;
            font-weight: 700;
            color: var(--orange);
        }

        .login-visual-stats small {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .login-form-side {
            flex: 1;
            padding: 40px 36px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .login-form-side::-webkit-scrollbar { width: 4px; }
        .login-form-side::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .login-form-panel {
            display: none;
            flex-direction: column;
            animation: loginFadeIn 0.35s ease;
        }

        .login-form-panel.active { display: flex; }

        @keyframes loginFadeIn {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .login-form-header { margin-bottom: 28px; }

        .login-form-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .login-form-header p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }

        .login-form-header p strong { color: var(--orange); }

        .login-field { margin-bottom: 18px; }

        .login-field label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 7px;
            letter-spacing: 0.5px;
        }

        .login-input-wrap {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0 16px;
            transition: all 0.3s ease;
        }

        .login-input-wrap:focus-within {
            border-color: var(--orange);
            background: rgba(245, 130, 32, 0.04);
            box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.08);
        }

        .login-input-wrap > i {
            color: rgba(255, 255, 255, 0.25);
            font-size: 15px;
            flex-shrink: 0;
        }

        .login-input-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            padding: 13px 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 13.5px;
            color: var(--white);
        }

        .login-input-wrap input::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }

        .login-toggle-pass {
            background: none; border: none;
            color: rgba(255, 255, 255, 0.25);
            cursor: pointer;
            font-size: 14px;
            padding: 4px;
            transition: color 0.2s;
        }

        .login-toggle-pass:hover { color: var(--orange); }

        .login-field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .login-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 22px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .login-remember {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            user-select: none;
        }

        .login-remember input[type="checkbox"] { display: none; }

        .login-checkmark {
            width: 18px; height: 18px;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .login-checkmark::after {
            content: '';
            width: 10px; height: 10px;
            border-radius: 3px;
            background: var(--orange);
            transform: scale(0);
            transition: transform 0.2s ease;
        }

        .login-remember input:checked + .login-checkmark {
            border-color: var(--orange);
        }

        .login-remember input:checked + .login-checkmark::after {
            transform: scale(1);
        }

        .login-forgot {
            font-size: 12px;
            color: var(--orange);
            text-decoration: none;
            transition: color 0.2s;
        }

        .login-forgot:hover {
            color: var(--orange-hover);
            text-decoration: underline;
        }

        .login-submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--orange), #e07020);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(245, 130, 32, 0.3);
        }

        .login-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(245, 130, 32, 0.45);
        }

        .login-submit-btn:active { transform: translateY(0); }

        .login-msg {
            margin-top: 14px;
            padding: 0;
            font-size: 12.5px;
            border-radius: 10px;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: all 0.35s ease;
        }

        .login-msg.show {
            padding: 12px 16px;
            max-height: 80px;
            opacity: 1;
        }

        .login-msg.success {
            background: rgba(39, 174, 96, 0.12);
            border: 1px solid rgba(39, 174, 96, 0.25);
            color: #2ecc71;
        }

        .login-msg.error {
            background: rgba(231, 76, 60, 0.12);
            border: 1px solid rgba(231, 76, 60, 0.25);
            color: #e74c3c;
        }

        .login-switch {
            text-align: center;
            margin-top: 24px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        .login-switch button {
            background: none; border: none;
            color: var(--orange);
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            margin-left: 4px;
            transition: color 0.2s;
        }

        .login-switch button:hover {
            color: var(--orange-hover);
            text-decoration: underline;
        }

        /* Dashboard */
        .dash-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .dash-stat {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 16px 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .dash-stat:hover {
            border-color: rgba(245, 130, 32, 0.2);
            background: rgba(245, 130, 32, 0.04);
        }

        .dash-stat i {
            font-size: 22px;
            color: var(--orange);
            margin-bottom: 8px;
            display: block;
        }

        .dash-stat span {
            display: block;
            font-size: 22px;
            font-weight: 700;
        }

        .dash-stat small {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dash-journeys { flex: 1; min-height: 120px; }

        .dash-empty {
            text-align: center;
            padding: 30px 20px;
            color: rgba(255, 255, 255, 0.25);
        }

        .dash-empty i {
            font-size: 40px;
            margin-bottom: 12px;
            display: block;
        }

        .dash-empty p { font-size: 13px; }

        .dash-book-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--orange), #e07020);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(245, 130, 32, 0.3);
            margin-top: 8px;
        }

        .dash-book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(245, 130, 32, 0.45);
        }

        .dash-logout-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .dash-logout-btn:hover {
            border-color: rgba(231, 76, 60, 0.4);
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.06);
        }

        @media (max-width: 768px) {
            .login-modal-content {
                flex-direction: column;
                max-height: 95vh;
            }

            .login-visual {
                width: 100%;
                min-width: unset;
                padding: 30px 24px 24px;
            }

            .login-visual-content { padding: 0; }

            .login-visual-icon {
                width: 60px; height: 60px;
                font-size: 28px;
                margin-bottom: 16px;
            }

            .login-visual-content h3 { font-size: 20px; }
            .login-visual-content p { font-size: 12px; margin-bottom: 20px; }
            .login-visual-stats span { font-size: 18px; }

            .login-form-side { padding: 28px 24px 32px; }
            .login-form-header h2 { font-size: 22px; }
            .login-field-row { grid-template-columns: 1fr; }

            .dash-stats { gap: 8px; }
            .dash-stat { padding: 12px 8px; }
            .dash-stat span { font-size: 18px; }
        }

       

        
        /* ============================================================
           EXPLORE SIDE CARD
           ============================================================ */
        .explore-side-card {
            position: fixed; right: -8px; top: 50%;
            transform: translateY(-50%);
            z-index: 1000; width: 240px;
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .stroke-shapes {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 320px; height: 320px; pointer-events: none;
        }

        .stroke-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
        .ring-1 { animation: rotateSlow 20s linear infinite; }
        .ring-2 { animation: rotateReverse 15s linear infinite; }
        .ring-3 { animation: rotateSlow 25s linear infinite reverse; }

        .stroke-diamond { position: absolute; top: 20px; left: 20px; width: calc(100% - 40px); height: calc(100% - 40px); animation: rotateReverse 30s linear infinite; }
        .stroke-cross { position: absolute; top: 30px; left: 30px; width: calc(100% - 60px); height: calc(100% - 60px); animation: rotateSlow 40s linear infinite; }

        .stroke-wmark { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; animation: pulseSoft 4s ease-in-out infinite; }

        @keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes rotateReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
        @keyframes pulseSoft { 0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.1); } }

        .explore-card-inner {
            position: relative; z-index: 2;
            background: rgba(27, 46, 93, 0.6);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 130, 32, 0.12);
            border-radius: 24px; padding: 28px 22px; text-align: center;
            pointer-events: auto;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03) inset;
        }

        .explore-card-inner:hover {
            background: rgba(27, 46, 93, 0.8);
            border-color: rgba(245, 130, 32, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(245,130,32,0.06);
        }

        .explore-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; padding: 5px 14px; background: rgba(245,130,32,0.1); border: 1px solid rgba(245,130,32,0.15); border-radius: 50px; }
        .explore-tag i { font-size: 12px; }
        .explore-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; transition: color 0.4s ease; }
        .explore-card-inner:hover .explore-title { color: var(--orange); }
        .explore-subtitle { font-family: 'Great Vibes', cursive; font-size: 18px; color: rgba(255,255,255,0.4); line-height: 1.4; margin-bottom: 18px; transition: color 0.4s ease; }
        .explore-card-inner:hover .explore-subtitle { color: rgba(255,255,255,0.6); }
        .explore-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
        .exp-tag { font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); padding: 4px 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; transition: all 0.3s ease; }
        .explore-card-inner:hover .exp-tag { border-color: rgba(245,130,32,0.15); color: rgba(255,255,255,0.65); }
        .exp-tag:hover { background: rgba(245,130,32,0.12); border-color: rgba(245,130,32,0.3); color: var(--orange) !important; }
        .explore-img { width: 100%; height: 100px; border-radius: 14px; overflow: hidden; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.05); }
        .explore-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
        .explore-card-inner:hover .explore-img img { transform: scale(1.1); }

        .explore-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: var(--orange); color: #fff; text-decoration: none; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(245,130,32,0.25); }
        .explore-btn:hover { background: var(--orange-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,130,32,0.4); gap: 12px; }
        .explore-btn i { font-size: 13px; transition: transform 0.3s ease; }
        .explore-btn:hover i { transform: translateX(3px); }

        @media (max-width: 1200px) { .explore-side-card { width: 210px; } .explore-title { font-size: 30px; } .explore-subtitle { font-size: 16px; } .stroke-shapes { width: 280px; height: 280px; } }
        @media (max-width: 991px) { .explore-side-card { display: none; } }

        /* ============================================================
           ABOUT US — EDITORIAL
           ============================================================ */
      .about-section {
    padding: 140px 0 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    }

        .about-wrapper {
            display: flex; flex-direction: column;
            gap: 60px; max-width: 1200px;
            margin: 0 auto; padding: 0 24px;
        }

        @media (min-width: 992px) {
            .about-wrapper { flex-direction: row; align-items: center; gap: 0; padding: 0 40px; }
        }

        .about-image-side { position: relative; width: 100%; flex-shrink: 0; }
        @media (min-width: 992px) { .about-image-side { width: 48%; } }

        
    .about-artwork {
    position: relative;
    border-radius: 4px;
    border: 1px solid rgba(245, 130, 32, 0.2);
    padding: 8px;
    background: rgba(245, 130, 32, 0.03);
    transition: border-color 0.5s ease;
   }

        .about-artwork:hover { border-color: rgba(245, 130, 32, 0.4); }

        .about-artwork img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
            filter: grayscale(100%) contrast(1.1) brightness(0.85);
            transition: filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 2px;
        }

        .about-artwork:hover img { filter: grayscale(30%) contrast(1.15) brightness(0.9); }

        .artwork-overlay {
            position: absolute; inset: 8px;
            border-radius: 2px;
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.25) 100%);
            pointer-events: none; mix-blend-mode: multiply; z-index: 1;
        }

       .about-text-side { width: 100%; padding: 20px 0; position: relative; overflow: hidden; }
        @media (min-width: 992px) { .about-text-side { width: 52%; padding: 40px 0 40px 60px; } }

        .about-logo { margin-bottom: 24px; }
        .about-logo img { height: 50px; width: auto; object-fit: contain; opacity: 0.7; transition: opacity 0.4s ease; }
        .about-logo:hover img { opacity: 1; }

        .about-label {
            display: inline-block;
            font-size: 11px; font-weight: 600;
            letter-spacing: 5px; text-transform: uppercase;
            color: var(--orange); margin-bottom: 28px;
            position: relative; padding-left: 40px;
        }

        .about-label::before { content: ''; position: absolute; left: 0; top: 50%; width: 28px; height: 1px; background: var(--orange); }
        .about-label::after { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

        .about-heading {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700; color: var(--white);
            line-height: 1.3; margin-bottom: 32px;
            letter-spacing: -0.3px;
        }

        .about-desc { font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,0.45); margin-bottom: 20px; font-weight: 300; }
        .about-desc-highlight { color: rgba(255,255,255,0.65); font-style: italic; font-weight: 400; margin-bottom: 36px; }
        .about-cta { padding-top: 8px; }

       .reveal-about { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-about.visible { opacity: 1; transform: translateY(0); }
.about-text-side > .reveal-about:nth-child(2) { transition-delay: 0.1s; }
.about-text-side > .reveal-about:nth-child(3) { transition-delay: 0.2s; }
.about-text-side > .reveal-about:nth-child(4) { transition-delay: 0.35s; }
.about-text-side > .reveal-about:nth-child(5) { transition-delay: 0.5s; }
.about-text-side > .reveal-about:nth-child(6) { transition-delay: 0.6s; }
.about-text-side > .reveal-about:nth-child(7) { transition-delay: 0.7s; }

.about-text-side > .reveal-about { position: relative; z-index: 1; }






        /* ============================================================
           RESPONSIVE
           ============================================================ */
        @media (max-width: 991px) {
            .carousel-caption h1 { font-size: 36px; }
            .carousel-caption p { font-size: 13px; letter-spacing: 1.5px; }
            .carousel-caption p.text-warning { font-size: 11px; letter-spacing: 3px; }
            .btn-orange { padding: 10px 24px; font-size: 12px; }
            .carousel-control-prev, .carousel-control-next { width: 40px; opacity: 0.6; }
            .carousel-control-prev-icon, .carousel-control-next-icon { width: 40px; height: 40px; }
            .carousel-control-prev-icon::after, .carousel-control-next-icon::after { font-size: 14px; }
            .about-section { padding: 80px 0 70px; }
            .about-artwork { aspect-ratio: 4 / 3; }
        }

        @media (max-width: 576px) {
            .carousel-caption h1 { font-size: 28px; }
            .carousel-caption { padding-bottom: 80px; }
            .brand-logo-img { height: 36px; }
            .way-navbar.scrolled .brand-logo-img { height: 28px; }
            .about-section { padding: 65px 0 55px; }
            .about-wrapper { padding: 0 16px; }
            .about-artwork { aspect-ratio: 1 / 1; border-radius: 2px; }
            .about-logo img { height: 40px; }
            .about-heading { font-size: 1.6rem; margin-bottom: 24px; }
            .about-label { font-size: 10px; letter-spacing: 4px; margin-bottom: 20px; padding-left: 32px; }
            .about-label::before { width: 20px; }
            .about-desc { font-size: 13.5px; line-height: 1.8; margin-bottom: 16px; }
        }


        

        

        
/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,130,32,0.2), transparent);
}

.pkg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.pkg-header {
    text-align: center;
    margin-bottom: 70px;
}

.pkg-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.pkg-label::before,
.pkg-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(245,130,32,0.3);
}

.pkg-label::before { left: -20px; }
.pkg-label::after { right: -20px; }

.pkg-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.pkg-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* --- Tabs --- */
.pkg-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    position: relative;
}

.pkg-tab {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.pkg-tab:first-child {
    border-radius: 50px 0 0 50px;
    border-right: none;
}

.pkg-tab:last-child {
    border-radius: 0 50px 50px 0;
}

.pkg-tab:hover {
    color: rgba(255,255,255,0.7);
}

.pkg-tab.active {
    color: #fff;
    border-color: var(--orange);
    background: rgba(245,130,32,0.1);
}

.pkg-tab.active + .pkg-tab {
    border-left-color: var(--orange);
}

.tab-indicator {
    display: none;
}

/* --- Grid --- */
.pkg-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    animation: fadeGrid 0.6s ease-out;
}

.pkg-grid.active {
    display: grid;
}

@keyframes fadeGrid {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Card --- */
.pkg-card {
    background: rgba(27, 46, 93, 0.25);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.pkg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(245,130,32,0) 0%, rgba(245,130,32,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.5s ease;
    pointer-events: none;
    z-index: 3;
}

.pkg-card:hover::before {
    background: linear-gradient(180deg, rgba(245,130,32,0.4) 0%, rgba(245,130,32,0) 60%);
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 50px rgba(245,130,32,0.04);
    border-color: rgba(245,130,32,0.1);
}

/* --- Card Image --- */
.pkg-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.1);
}

.pkg-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

/* --- Badges --- */
.pkg-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
}

.pkg-badge.hot {
    background: #e74c3c;
}

.pkg-badge.sacred {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    color: #1a1a2e;
}

.pkg-badge.beach {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: #fff;
}

.pkg-badge.adventure {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: #fff;
}

/* --- Duration --- */
.pkg-duration {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-duration i {
    color: var(--orange);
    font-size: 12px;
}

/* --- Card Info --- */
.pkg-info {
    padding: 22px 22px 20px;
}

.pkg-dest {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.pkg-card:hover .pkg-dest {
    color: var(--orange);
}

.pkg-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
}

.pkg-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
}

.pkg-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

.pkg-meta i {
    color: var(--orange);
    font-size: 12px;
    opacity: 0.7;
}

.pkg-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-from {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.price-amount {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}

.pkg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: rgba(245,130,32,0.1);
    border: 1px solid rgba(245,130,32,0.2);
    color: var(--orange);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pkg-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    gap: 10px;
    box-shadow: 0 6px 20px rgba(245,130,32,0.3);
}

.pkg-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.pkg-btn:hover i {
    transform: translateX(3px);
}

/* --- View All --- */
.pkg-viewall {
    text-align: center;
    margin-top: 50px;
}

.btn-orange-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid rgba(245,130,32,0.3);
    color: var(--orange);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-orange-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-orange-outline:hover::before {
    transform: scaleX(1);
}

.btn-orange-outline:hover {
    color: #fff;
    border-color: var(--orange);
}

.btn-orange-outline:hover i {
    transform: translateX(4px);
}

.btn-orange-outline i {
    transition: transform 0.3s ease;
}

/* --- Reveal Animation (9 cards stagger) --- */
.reveal-pkg {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-pkg.visible {
    opacity: 1;
    transform: translateY(0);
}



.pkg-grid .reveal-pkg:nth-child(1) { transition-delay: 0.05s; }
.pkg-grid .reveal-pkg:nth-child(2) { transition-delay: 0.15s; }
.pkg-grid .reveal-pkg:nth-child(3) { transition-delay: 0.25s; }
.pkg-grid .reveal-pkg:nth-child(4) { transition-delay: 0.35s; }
.pkg-grid .reveal-pkg:nth-child(5) { transition-delay: 0.45s; }
.pkg-grid .reveal-pkg:nth-child(6) { transition-delay: 0.55s; }
.pkg-grid .reveal-pkg:nth-child(7) { transition-delay: 0.65s; }
.pkg-grid .reveal-pkg:nth-child(8) { transition-delay: 0.75s; }
.pkg-grid .reveal-pkg:nth-child(9) { transition-delay: 0.85s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .pkg-grid .reveal-pkg:nth-child(1) { transition-delay: 0.05s; }
    .pkg-grid .reveal-pkg:nth-child(2) { transition-delay: 0.1s; }
    .pkg-grid .reveal-pkg:nth-child(3) { transition-delay: 0.15s; }
    .pkg-grid .reveal-pkg:nth-child(4) { transition-delay: 0.2s; }
    .pkg-grid .reveal-pkg:nth-child(5) { transition-delay: 0.25s; }
    .pkg-grid .reveal-pkg:nth-child(6) { transition-delay: 0.3s; }
    .pkg-grid .reveal-pkg:nth-child(7) { transition-delay: 0.35s; }
    .pkg-grid .reveal-pkg:nth-child(8) { transition-delay: 0.4s; }
    .pkg-grid .reveal-pkg:nth-child(9) { transition-delay: 0.45s; }
}

@media (max-width: 640px) {
    .packages-section { padding: 80px 0; }
    .pkg-container { padding: 0 16px; }
    .pkg-header { margin-bottom: 36px; }
    .pkg-tabs { margin-bottom: 32px; }
    .pkg-tab { padding: 12px 26px; font-size: 11px; letter-spacing: 1.5px; }
    .pkg-grid { grid-template-columns: 1fr; gap: 20px; }
    .pkg-img { height: 200px; }
    .pkg-dest { font-size: 20px; }
    .price-amount { font-size: 18px; }

    .pkg-grid .reveal-pkg:nth-child(1) { transition-delay: 0.03s; }
    .pkg-grid .reveal-pkg:nth-child(2) { transition-delay: 0.06s; }
    .pkg-grid .reveal-pkg:nth-child(3) { transition-delay: 0.09s; }
    .pkg-grid .reveal-pkg:nth-child(4) { transition-delay: 0.12s; }
    .pkg-grid .reveal-pkg:nth-child(5) { transition-delay: 0.15s; }
    .pkg-grid .reveal-pkg:nth-child(6) { transition-delay: 0.18s; }
    .pkg-grid .reveal-pkg:nth-child(7) { transition-delay: 0.21s; }
    .pkg-grid .reveal-pkg:nth-child(8) { transition-delay: 0.24s; }
    .pkg-grid .reveal-pkg:nth-child(9) { transition-delay: 0.27s; }
}

/* ============================================================
   BOOKING MODAL — 4-STEP FLOW
   ============================================================ */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.booking-modal.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.booking-modal-content {
    position: relative;
    width: 95%;
    max-width: 720px;
    max-height: 94vh;
    background: linear-gradient(180deg, #0a1020 0%, #060a14 100%);
    border: 1px solid rgba(245, 130, 32, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.booking-modal.open .booking-modal-content {
    transform: translateY(0) scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}

/* --- Steps Bar --- */
.booking-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 32px 20px;
    background: rgba(27, 46, 93, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
    gap: 0;
    position: relative;
}

.booking-steps-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 130, 32, 0.15), transparent);
}

.b-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.b-step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.b-step-circle span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.4s ease;
}

.b-step-circle i {
    position: absolute;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.b-step > span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.4s ease;
}

/* Active step */
.b-step.active .b-step-circle {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(245, 130, 32, 0.3);
}

.b-step.active .b-step-circle span {
    opacity: 0;
    transform: scale(0);
}

.b-step.active .b-step-circle i {
    opacity: 1;
    transform: scale(1);
}

.b-step.active > span {
    color: var(--orange);
}

/* Completed step */
.b-step.completed .b-step-circle {
    background: rgba(39, 174, 96, 0.15);
    border-color: rgba(39, 174, 96, 0.4);
}

.b-step.completed .b-step-circle span {
    opacity: 0;
    transform: scale(0);
}

.b-step.completed .b-step-circle i {
    opacity: 1;
    transform: scale(1);
    color: #27ae60;
}

.b-step.completed > span {
    color: rgba(39, 174, 96, 0.6);
}

/* Step Lines */
.b-step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 6px;
    margin-bottom: 22px;
    border-radius: 2px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.b-step-line.active {
    background: linear-gradient(90deg, #27ae60, var(--orange));
    box-shadow: 0 0 8px rgba(245, 130, 32, 0.2);
}

/* --- Body --- */
.booking-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px 36px 36px;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 130, 32, 0.15) transparent;
}

.booking-body::-webkit-scrollbar { width: 5px; }
.booking-body::-webkit-scrollbar-track { background: transparent; }
.booking-body::-webkit-scrollbar-thumb { background: rgba(245, 130, 32, 0.15); border-radius: 10px; }

/* --- Step Panels --- */
.booking-step-panel {
    display: none;
    animation: bookingFadeIn 0.4s ease;
}

.booking-step-panel.active {
    display: block;
}

@keyframes bookingFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Panel Title --- */
.b-panel-title {
    margin-bottom: 28px;
}

.b-panel-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b-panel-title h2 i {
    color: var(--orange);
    font-size: 20px;
}

.b-panel-title p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

/* --- Fields --- */
.b-field {
    margin-bottom: 20px;
}

.b-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
}

.b-optional {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0;
    text-transform: none;
}

.b-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- Input Wrap --- */
.b-input-wrap,
.b-select-wrap,
.b-date-wrap,
.b-textarea-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.b-input-wrap > i,
.b-select-wrap > i,
.b-date-wrap > i,
.b-textarea-wrap > i {
    position: absolute;
    left: 16px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 15px;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.b-textarea-wrap > i {
    top: 16px;
}

.b-input-wrap input,
.b-select-wrap select,
.b-date-wrap input,
.b-textarea-wrap textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 18px 14px 44px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.b-input-wrap input::placeholder,
.b-textarea-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

.b-input-wrap input:focus,
.b-select-wrap select:focus,
.b-date-wrap input:focus,
.b-textarea-wrap textarea:focus {
    border-color: rgba(245, 130, 32, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.06);
}

.b-input-wrap input:focus ~ i,
.b-select-wrap select:focus ~ i,
.b-date-wrap input:focus ~ i,
.b-textarea-wrap textarea:focus ~ i {
    color: var(--orange);
}

/* Select Styling */
.b-select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.25)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.b-select-wrap select option {
    background: #0a0f1a;
    color: var(--white);
    padding: 8px;
}

.b-select-wrap select optgroup {
    color: var(--orange);
    font-weight: 600;
    font-style: normal;
}

/* Date Input */
.b-date-wrap input::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

/* Textarea */
.b-textarea-wrap textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

/* --- Toggle Group --- */
.b-toggle-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.b-toggle-group-3 .b-toggle {
    flex: 1;
    min-width: 0;
}

.b-toggle {
    position: relative;
    cursor: pointer;
}

.b-toggle input { display: none; }

.b-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.b-toggle-label i {
    font-size: 15px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.b-toggle-sm .b-toggle-label {
    padding: 10px 14px;
    font-size: 12px;
}

.b-toggle-sm .b-toggle-label i {
    font-size: 14px;
}

.b-toggle input:checked + .b-toggle-label {
    background: rgba(245, 130, 32, 0.1);
    border-color: rgba(245, 130, 32, 0.3);
    color: var(--orange);
    box-shadow: 0 0 15px rgba(245, 130, 32, 0.08);
}

.b-toggle input:checked + .b-toggle-label i {
    opacity: 1;
    color: var(--orange);
}

.b-toggle:hover .b-toggle-label {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
}

/* --- One Way Badge --- */
.b-oneway-badge {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 16px;
    background: rgba(245, 130, 32, 0.06);
    border: 1px solid rgba(245, 130, 32, 0.12);
    border-radius: 10px;
    font-size: 12px;
    color: var(--orange);
    animation: bookingFadeIn 0.3s ease;
}

.b-oneway-badge i {
    font-size: 14px;
    opacity: 0.7;
}

/* --- Trip Duration --- */
.b-trip-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -8px;
    margin-bottom: 16px;
    padding: 10px 16px;
    background: rgba(27, 46, 93, 0.15);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.b-trip-duration i {
    color: var(--orange);
    font-size: 16px;
    opacity: 0.7;
}

.b-trip-duration strong {
    color: var(--orange);
    font-weight: 600;
}

/* --- Travelers Counter --- */
.b-travelers-row {
    display: flex;
    gap: 24px;
}

.b-counter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.b-counter-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.b-counter-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
}

.b-counter-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.b-counter-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.b-counter-btn:hover {
    background: rgba(245, 130, 32, 0.1);
    color: var(--orange);
}

.b-counter-btn:active {
    transform: scale(0.9);
}

.b-counter-controls input {
    width: 48px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    padding: 10px 0;
    outline: none;
    -moz-appearance: textfield;
}

.b-counter-controls input::-webkit-outer-spin-button,
.b-counter-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- Return Details --- */
.b-return-details {
    display: none;
    animation: bookingFadeIn 0.4s ease;
}

.b-return-details.active {
    display: block;
}

/* --- Checkbox --- */
.b-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 12.5px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    line-height: 1.6;
    font-weight: 400 !important;
}

.b-checkbox-label input { display: none; }

.b-checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.b-checkbox-label input:checked + .b-checkbox-custom {
    background: var(--orange);
    border-color: var(--orange);
}

.b-checkbox-label input:checked + .b-checkbox-custom::after {
    content: '\F272';
    font-family: 'bootstrap-icons';
    font-size: 11px;
    color: #fff;
}

.b-checkbox-label a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.b-checkbox-label a:hover { opacity: 0.7; }

/* --- Step Actions --- */
.b-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.b-next-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--orange), #e07020);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(245, 130, 32, 0.25);
    white-space: nowrap;
}

.b-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(245, 130, 32, 0.4);
    gap: 14px;
}

.b-next-btn i { font-size: 14px; transition: transform 0.3s ease; }
.b-next-btn:hover i { transform: translateX(3px); }

.b-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.b-back-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.b-back-btn i { font-size: 14px; }

.b-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.25);
    white-space: nowrap;
}

.b-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(39, 174, 96, 0.4);
}

.b-submit-btn i { font-size: 15px; }

/* --- Summary Cards --- */
.b-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b-sum-card {
    background: rgba(27, 46, 93, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
}

.b-sum-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(245, 130, 32, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
}

.b-sum-card-header i {
    font-size: 15px;
    opacity: 0.8;
}

.b-sum-card-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.b-sum-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.b-sum-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    white-space: nowrap;
}

.b-sum-item strong {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-align: right;
}

/* --- Edit Row --- */
.b-edit-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.b-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b-edit-btn:hover {
    border-color: rgba(245, 130, 32, 0.2);
    color: var(--orange);
    background: rgba(245, 130, 32, 0.04);
}

.b-edit-btn i { font-size: 13px; }

/* --- Success Message --- */
.b-success {
    display: none;
    text-align: center;
    padding: 20px 0;
    animation: bookingFadeIn 0.5s ease;
}

.b-success.show { display: block; }

.b-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid rgba(39, 174, 96, 0.25);
    border-radius: 50%;
    font-size: 36px;
    color: #27ae60;
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.b-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.b-success p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
    max-width: 400px;
    margin: 0 auto 24px;
}

.b-success p strong {
    color: var(--orange);
}

.b-success-contact {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.b-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.25);
}

.b-success-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.35);
}

.b-success-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.b-success-btn.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.b-success-btn i { font-size: 16px; }

.b-success-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b-success-close:hover {
    border-color: rgba(245, 130, 32, 0.2);
    color: var(--orange);
}

/* --- Shake Animation --- */
@keyframes shakeForm {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

/* ============================================================
   BOOKING MODAL — RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .booking-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .booking-body {
        padding: 24px 20px 28px;
    }

    .booking-steps-bar {
        padding: 20px 16px 16px;
    }

    .b-step-circle {
        width: 32px;
        height: 32px;
    }

    .b-step-circle span { font-size: 11px; }
    .b-step-circle i { font-size: 13px; }
    .b-step > span { font-size: 8px; letter-spacing: 0.3px; }
    .b-step-line { width: 30px; margin-bottom: 18px; }

    .b-field-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .b-travelers-row {
        flex-direction: column;
        gap: 16px;
    }

    .b-toggle-group-3 {
        flex-direction: column;
    }

    .b-toggle-label {
        padding: 11px 16px;
        font-size: 12px;
        justify-content: flex-start;
    }

    .b-panel-title h2 {
        font-size: 18px;
    }

    .b-step-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .b-next-btn,
    .b-back-btn,
    .b-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }

    .b-edit-row {
        flex-direction: column;
    }

    .b-edit-btn {
        justify-content: center;
    }

    .b-success-contact {
        flex-direction: column;
        align-items: center;
    }

    .b-success-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================================
   PACKAGE DETAIL MODAL — FIXED
   ============================================================ */

/* ★ NEW — Body scroll lock */
body.modal-open {
    overflow: hidden !important;
    -webkit-overflow-scrolling: none;
}

.pkg-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.pkg-modal.open {
    opacity: 1;
    visibility: visible;
}

/* ★ FIX — cursor add kiya */
.pkg-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.pkg-modal-content {
    position: relative;
    width: 95%;
    max-width: 860px;
    max-height: 92vh;
    background: #0a0f1a;
    border: 1px solid rgba(245, 130, 32, 0.12);
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.pkg-modal.open .pkg-modal-content {
    transform: translateY(0) scale(1);
}

.pkg-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 10;
    width: 42px; height: 42px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pkg-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}

/* --- Modal Hero --- */
.modal-hero {
    position: relative;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
}

.modal-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.3) 50%, #0a0f1a 100%);
}

.modal-hero-text {
    position: absolute;
    bottom: 24px; left: 28px; right: 28px;
    z-index: 2;
}

.modal-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.modal-dest {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.modal-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    margin-bottom: 14px;
}

.modal-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.modal-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.modal-hero-meta i {
    color: var(--orange);
    font-size: 13px;
}

/* --- Modal Body --- */
.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
    scrollbar-width: thin;
    scrollbar-color: rgba(245,130,32,0.2) transparent;
}

.modal-body::-webkit-scrollbar { width: 5px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: rgba(245,130,32,0.2); border-radius: 10px; }

/* --- Price Bar --- */
.modal-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(27, 46, 93, 0.3);
    border: 1px solid rgba(245, 130, 32, 0.1);
    border-radius: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.modal-price-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.modal-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.modal-price-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 4px;
}

/* --- Modal Tabs --- */
.modal-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

/* ★ NEW — hide tab scrollbar */
.modal-tabs::-webkit-scrollbar { display: none; }

.modal-tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.35);
    padding: 12px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.modal-tab:hover { color: rgba(255, 255, 255, 0.6); }

.modal-tab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.modal-tab-content {
    display: none;
    animation: fadeGrid 0.4s ease-out;
}

.modal-tab-content.active { display: block; }

/* --- Sections --- */
.modal-section {
    margin-bottom: 30px;
}

.modal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h3 i {
    color: var(--orange);
    font-size: 18px;
}

.modal-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    font-weight: 300;
}

/* --- Highlights --- */
.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.highlight-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 7px;
}

/* --- Itinerary Timeline --- */
.itinerary-timeline {
    position: relative;
    padding-left: 32px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 6px; bottom: 6px;
    width: 1px;
    background: linear-gradient(180deg, var(--orange), rgba(245,130,32,0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #0a0f1a;
    border: 2px solid var(--orange);
    z-index: 1;
}

.timeline-day {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.timeline-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-weight: 300;
}

/* --- Inclusions --- */
.include-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.include-box {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.include-box.included {
    background: rgba(39, 174, 96, 0.05);
    border-color: rgba(39, 174, 96, 0.12);
}

.include-box.excluded {
    background: rgba(231, 76, 60, 0.04);
    border-color: rgba(231, 76, 60, 0.1);
}

.include-box h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.include-box.included h4 { color: #27ae60; }
.include-box.excluded h4 { color: #e74c3c; }
.include-box h4 i { font-size: 16px; }

.include-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.include-box ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.include-box.included ul li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    color: #27ae60;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.include-box.excluded ul li::before {
    content: '\F273';
    font-family: 'bootstrap-icons';
    color: #e74c3c;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- Bottom CTA --- */
.modal-bottom-cta {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.modal-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.modal-trust i {
    color: var(--orange);
    font-size: 14px;
}

.modal-bottom-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i { font-size: 16px; }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* ★ FIX — var(--orange-hover) */
.btn-call:hover {
    background: #d97a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.3);
}

.btn-call i { font-size: 14px; }


/* --- Modal Responsive --- */
@media (max-width: 640px) {
    .pkg-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    /* ★ FIX — fixed 200px */
    .modal-hero {
        height: clamp(160px, 35vw, 200px);
    }

    .modal-dest { font-size: 26px; }
    .modal-body { padding: 20px 18px; }
    .modal-price-bar { padding: 16px 18px; }
    .modal-price-value { font-size: 22px; }
    .highlight-list { grid-template-columns: 1fr; }
    .include-grid { grid-template-columns: 1fr; }
    .modal-tabs { gap: 0; }
    .modal-tab { padding: 10px 14px; font-size: 12px; }
    .modal-bottom-actions { flex-direction: column; }
    .btn-whatsapp, .btn-call { justify-content: center; }
    .modal-trust { gap: 12px; }

    /* ★ NEW — hero text chhota screen pe adjust */
    .modal-hero-text {
        bottom: 16px;
        left: 18px;
        right: 18px;
    }

    .modal-hero-meta {
        gap: 12px;
    }
}

/* ============================================================
   WHY CHOOSE US — SERVICES
   ============================================================ */
.services-section {
    padding: 80px 0 120px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,130,32,0.2), transparent);
}

.svc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.svc-header {
    text-align: center;
    margin-bottom: 60px;
}

.svc-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.svc-label::before,
.svc-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(245,130,32,0.3);
}

.svc-label::before { left: -20px; }
.svc-label::after { right: -20px; }

.svc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.svc-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Stats Row --- */
.svc-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 36px 20px;
    background: rgba(27, 46, 93, 0.2);
    border: 1px solid rgba(245, 130, 32, 0.08);
    border-radius: 20px;
    margin-bottom: 60px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--orange);
    opacity: 0.6;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(245,130,32,0.2), transparent);
    flex-shrink: 0;
}

/* --- Services Grid --- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- Service Card --- */
.svc-card {
    background: rgba(27, 46, 93, 0.12);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(245,130,32,0) 0%, rgba(245,130,32,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.svc-card:hover::before {
    background: linear-gradient(180deg, rgba(245,130,32,0.35) 0%, rgba(245,130,32,0) 50%);
}

.svc-card:hover {
    transform: translateY(-6px);
    background: rgba(27, 46, 93, 0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 40px rgba(245,130,32,0.03);
}

/* --- Icon --- */
.svc-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.svc-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.08);
    border: 1px solid rgba(245, 130, 32, 0.12);
    border-radius: 16px;
    color: var(--orange);
    font-size: 24px;
    transition: all 0.4s ease;
}

.svc-card:hover .svc-icon {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.3);
}

.svc-icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    border: 1px solid rgba(245, 130, 32, 0.06);
    transition: all 0.5s ease;
    pointer-events: none;
}

.svc-card:hover .svc-icon-ring {
    inset: -10px;
    border-color: rgba(245, 130, 32, 0.15);
}

.svc-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.svc-card:hover .svc-name {
    color: var(--orange);
}

.svc-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.svc-card:hover .svc-desc {
    color: rgba(255,255,255,0.55);
}

/* --- Reveal --- */
.reveal-svc {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-svc.visible {
    opacity: 1;
    transform: translateY(0);
}

.svc-grid .reveal-svc:nth-child(1) { transition-delay: 0.05s; }
.svc-grid .reveal-svc:nth-child(2) { transition-delay: 0.12s; }
.svc-grid .reveal-svc:nth-child(3) { transition-delay: 0.19s; }
.svc-grid .reveal-svc:nth-child(4) { transition-delay: 0.26s; }
.svc-grid .reveal-svc:nth-child(5) { transition-delay: 0.33s; }
.svc-grid .reveal-svc:nth-child(6) { transition-delay: 0.40s; }
.svc-grid .reveal-svc:nth-child(7) { transition-delay: 0.47s; }
.svc-grid .reveal-svc:nth-child(8) { transition-delay: 0.54s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-section { padding: 60px 0 80px; }
    .svc-container { padding: 0 16px; }
    .svc-header { margin-bottom: 40px; }
    .svc-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 28px 16px;
        margin-bottom: 40px;
    }
    .stat-item { flex: 0 0 calc(50% - 10px); }
    .stat-divider { display: none; }
    .svc-grid { grid-template-columns: 1fr; gap: 16px; }
    .svc-card { padding: 24px 20px 22px; }
    .svc-icon-wrap { width: 56px; height: 56px; margin-bottom: 16px; }
    .svc-icon { width: 56px; height: 56px; font-size: 22px; border-radius: 14px; }
}

/* ============================================================
   CONTACT US
   ============================================================ */
.contact-section {
    padding: 80px 0 120px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,130,32,0.2), transparent);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.ct-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.ct-label::before,
.ct-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(245,130,32,0.3);
}

.ct-label::before { left: -20px; }
.ct-label::after { right: -20px; }

.ct-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.ct-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* --- Info Side --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-info-card {
    background: rgba(27, 46, 93, 0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ct-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.ct-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.08);
    border: 1px solid rgba(245, 130, 32, 0.12);
    border-radius: 14px;
    color: var(--orange);
    font-size: 20px;
    transition: all 0.3s ease;
}

.ct-info-item:hover .ct-info-icon {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,130,32,0.25);
}

.ct-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ct-info-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.ct-info-value {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.ct-info-value:hover {
    color: var(--orange);
}

.ct-info-value.no-link {
    cursor: default;
}

.ct-info-note {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
}

/* --- Social Block --- */
.ct-social-block {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ct-social-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.ct-social-links {
    display: flex;
    gap: 10px;
}

.ct-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ct-social-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(245,130,32,0.08);
    transform: translateY(-2px);
}

.ct-social-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37,211,102,0.08);
}

.ct-social-btn i {
    font-size: 16px;
}

/* --- Map --- */
.ct-map {
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.ct-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.04);
}

.ct-map iframe {
    display: block;
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
    transition: filter 0.5s ease;
}

.ct-map:hover iframe {
    filter: grayscale(40%) brightness(0.75) contrast(1.05);
}

/* --- Form Side --- */
.contact-form-wrap {
    background: rgba(27, 46, 93, 0.15);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), rgba(245,130,32,0.2), transparent);
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: rgba(245,130,32,0.4);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(245,130,32,0.06);
}

.ct-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.3)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.ct-field select option {
    background: #0a0f1a;
    color: var(--white);
    padding: 10px;
}

.ct-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- Submit Button --- */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.ct-submit-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,130,32,0.35);
    gap: 14px;
}

.ct-submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ct-submit-btn:hover i {
    transform: translateX(3px);
}

/* --- Success Message --- */
.ct-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.15);
    border-radius: 12px;
    color: #27ae60;
    font-size: 13px;
    font-weight: 500;
    animation: fadeGrid 0.4s ease-out;
}

.ct-success.show {
    display: flex;
}

.ct-success i {
    font-size: 18px;
    flex-shrink: 0;
}

/* --- Reveal --- */
.reveal-ct {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-ct.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-grid .reveal-ct:nth-child(1) { transition-delay: 0.1s; }
.contact-grid .reveal-ct:nth-child(2) { transition-delay: 0.25s; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .contact-section { padding: 60px 0 80px; }
    .contact-container { padding: 0 16px; }
    .contact-header { margin-bottom: 40px; }
    .ct-info-card { padding: 24px 20px; gap: 22px; }
    .ct-info-icon { width: 42px; height: 42px; font-size: 18px; border-radius: 12px; }
    .contact-form-wrap { padding: 28px 20px; }
    .ct-form-row { grid-template-columns: 1fr; gap: 16px; }
    .ct-submit-btn { width: 100%; }
    .ct-social-block { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   FOOTER — FULL WIDTH
   ============================================================ */
.way-footer {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);    
    background: #060a14;
    overflow: hidden;
    display: block;                    
    margin-bottom: 0;   
    margin-top: 80px;                
}

/* --- Wave --- */
.footer-wave {
    position: relative;
    top: -1px;
    margin-bottom: -2px;
    width: 100%;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* --- Container — FULL WIDTH with inner padding --- */
.footer-container {
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
}

/* --- Grid --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* --- Brand Column --- */
.footer-logo {
    display: inline-flex;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.3); 
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: 13.5px;
    color: rgba(255,255,255,0.35);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(245,130,32,0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(245,130,32,0.15);
}

/* --- Headings --- */
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.3px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* --- Links --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
    margin-right: 0;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-links a:hover::before {
    width: 12px;
    margin-right: 8px;
}

/* --- Contact List --- */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact > li > i {
    color: var(--orange);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-contact > li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact span {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
}

/* --- Bottom Bar --- */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-credit {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 20px 0;
    }

    .footer-heading::after {
        left: 0;
    }
}



/* ============================================================
   LOGIN MODAL
   ============================================================ */
.nav-login-btn {
    display: none;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

@media (min-width: 992px) { .nav-login-btn { display: inline-flex; } }

.nav-login-btn i { font-size: 17px; color: var(--orange); }

.nav-login-btn:hover {
    border-color: var(--orange);
    color: #fff;
    background: rgba(245, 130, 32, 0.08);
}

.nav-login-btn.logged-in {
    border-color: rgba(39, 174, 96, 0.4);
    background: rgba(39, 174, 96, 0.08);
}

.nav-login-btn.logged-in i {
    color: #27ae60;
}

.nav-login-btn.logged-in span::after {
    content: ' •';
    color: #27ae60;
}

/* --- Modal Base --- */
.login-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.login-modal.open {
    opacity: 1;
    visibility: visible;
}

.login-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-modal-content {
    position: relative;
    width: 95%;
    max-width: 820px;
    min-height: 520px;
    background: #080d18;
    border: 1px solid rgba(245, 130, 32, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.login-modal.open .login-modal-content {
    transform: translateY(0) scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}

/* --- Visual Side --- */
.login-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--deep-blue), rgba(245, 130, 32, 0.2));
}

.login-visual-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F58220' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l4 3.25-4 3.25zM0 20h2v20H0V20zm4 0h2v16H4V20zm4 0h2v12H8V20zm4 0h2v8h-2V20zm4 0h2v4h-2V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.login-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.login-visual-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 130, 32, 0.12);
    border: 1px solid rgba(245, 130, 32, 0.2);
    border-radius: 20px;
    color: var(--orange);
    font-size: 32px;
}

.login-visual-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.login-visual-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
    margin: 0 auto 28px;
}

.login-visual-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.login-visual-stats div {
    text-align: center;
}

.login-visual-stats span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
}

.login-visual-stats small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Form Side --- */
.login-form-side {
    padding: 40px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-panel {
    display: none;
    animation: fadeGrid 0.4s ease-out;
}

.login-form-panel.active {
    display: block;
}

.login-form-header {
    margin-bottom: 28px;
}

.login-form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.login-form-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.login-field {
    margin-bottom: 18px;
}

.login-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
}

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-wrap > i {
    position: absolute;
    left: 16px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 15px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.login-input-wrap input {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 13px 46px 13px 44px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.login-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.18);
    font-weight: 300;
}

.login-input-wrap input:focus {
    border-color: rgba(245, 130, 32, 0.4);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.06);
}

.login-input-wrap input:focus + i,
.login-input-wrap input:focus ~ i {
    color: var(--orange);
}

.login-toggle-pass {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 15px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.login-toggle-pass:hover {
    color: var(--orange);
}

.login-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.login-remember input {
    display: none;
}

.login-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.login-remember input:checked ~ .login-checkmark {
    background: var(--orange);
    border-color: var(--orange);
}

.login-remember input:checked ~ .login-checkmark::after {
    content: '\F272';
    font-family: 'bootstrap-icons';
    font-size: 11px;
    color: #fff;
    position: absolute;
}

.login-forgot {
    font-size: 12px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.login-forgot:hover {
    opacity: 0.7;
}

.login-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--orange);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-submit-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.3);
    gap: 14px;
}

.login-msg {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    animation: fadeGrid 0.3s ease-out;
}

.login-msg.show {
    display: block;
}

.login-msg.success {
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.15);
    color: #27ae60;
}

.login-msg.error {
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.login-switch {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.login-switch button {
    background: none;
    border: none;
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 4px;
    transition: opacity 0.3s ease;
}

.login-switch button:hover {
    opacity: 0.7;
}

/* --- Dashboard --- */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(27, 46, 93, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
}

.dash-stat i {
    color: var(--orange);
    font-size: 20px;
    opacity: 0.7;
}

.dash-stat span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.dash-stat small {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.dash-journeys {
    margin-bottom: 20px;
}

.dash-empty {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.dash-empty i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    display: block;
}

.dash-empty p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.dash-book-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: var(--orange);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.dash-book-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.3);
}

.dash-logout-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dash-logout-btn:hover {
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .login-modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        border-radius: 20px;
    }

    .login-visual {
        display: none;
    }

    .login-form-side {
        padding: 32px 24px;
    }

    .login-field-row {
        grid-template-columns: 1fr;
    }

    .dash-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .login-form-side {
        padding: 28px 20px;
    }

    .login-form-header h2 {
        font-size: 20px;
    }
}


/* ============================================================
   TESTIMONIALS — FIXED VERSION
   ============================================================ */
.testimonials-section {
    padding: 120px 0;
    background: #060a14;
    position: relative;
    overflow: hidden;
    
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 130, 32, 0.2), transparent);
}

.testi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testi-header {
    text-align: center;
    margin-bottom: 60px;
}

.testi-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.testi-label::before,
.testi-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(245, 130, 32, 0.3);
}

.testi-label::before { left: -20px; }
.testi-label::after { right: -20px; }

.testi-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.testi-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Slider Wrapper --- */
.testi-slider-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -12px 40px;
    padding: 10px 12px;
}

/* --- Track --- */
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* --- Card — FIXED WIDTHS --- */
.testi-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: rgba(27, 46, 93, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 32px 26px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.testi-card::after {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(245, 130, 32, 0.06);
    line-height: 1;
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-6px);
    background: rgba(27, 46, 93, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testi-stars i {
    font-size: 14px;
    color: var(--orange);
}

.testi-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 22px;
    font-style: italic;
    overflow: hidden;
    line-clamp: 4;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(245, 130, 32, 0.2);
    flex-shrink: 0;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-info {
    min-width: 0; 
    overflow: hidden; 
}

.testi-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
    /* ✅ FIX: Ellipsis if too long */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testi-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* --- Navigation --- */
.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testi-prev,
.testi-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testi-prev:hover,
.testi-next:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(245, 130, 32, 0.08);
}

.testi-dots {
    display: flex;
    gap: 6px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.testi-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--orange);
}

.testi-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Trust Bar --- */
.testi-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 46, 93, 0.15);
    border: 1px solid rgba(245, 130, 32, 0.06);
    border-radius: 16px;
    padding: 24px 20px;
}

.testi-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
}

.testi-trust-item i {
    color: var(--orange);
    font-size: 16px;
    opacity: 0.7;
    flex-shrink: 0;
}

.testi-trust-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    white-space: nowrap;
}

.testi-trust-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(245, 130, 32, 0.15), transparent);
    flex-shrink: 0;
}

/* --- Reveal --- */
.reveal-testi {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-testi.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — FIXED
   ============================================================ */
@media (max-width: 1024px) {
    .testi-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .testimonials-section { padding: 80px 0; }
    .testi-container { padding: 0 16px; }
    .testi-header { margin-bottom: 40px; }
    .testi-slider-wrap { margin: 0 -8px 32px; padding: 10px 8px; }
    .testi-card {
        flex: 0 0 100%;
        padding: 24px 20px;
    }
    .testi-card::after { font-size: 60px; }
    .testi-trust {
        flex-wrap: wrap;
        gap: 16px;
    }
    .testi-trust-divider { display: none; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.carousel-item { position: relative; }

.slider-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slider-bg::after {
    content: "";
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.img-1 { background-image: url('../images/bg1..jpg'); }
.img-2 { background-image: url('../images/bg2..jpg');  }
.img-3 { background-image: url('../images/bg3..jpg');}

.carousel-item.active .slider-bg { animation: kenburns 12s ease-in-out infinite alternate; }

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.carousel-caption { z-index: 2; padding-bottom: 100px; }

.carousel-caption h1 {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.carousel-caption p.text-warning {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
}

.carousel-item [class*="anim-up-"] { opacity: 0; transform: translateY(25px); }
.carousel-item.active [class*="anim-up-"] { animation: fadeSlideUp 0.9s ease-out forwards; }

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.anim-up-1 { animation-delay: 0.3s; }
.anim-up-2 { animation-delay: 0.6s; }
.anim-up-3 { animation-delay: 0.9s; }
.anim-up-4 { animation-delay: 1.2s; }

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next { opacity: 1; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-image: none !important;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #fff;
}

.carousel-control-next-icon::after {
    content: '\F285';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #fff;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--orange);
    border-color: var(--orange);
}

.carousel-indicators { bottom: 40px; gap: 6px; }

.carousel-indicators [data-bs-target] {
    width: 28px;
    height: 3px;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
}

.carousel-indicators .active {
    width: 50px;
    background: var(--orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover { opacity: 0.9; }

.scroll-indicator span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator .mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 11px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: #6eaaff;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(110, 170, 255, 0.6);
    animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; top: 7px; }
    100% { opacity: 0; top: 20px; }
}

/* Hero slider buttons — */
.hero-explore-btn,
.hero-book-btn,
.hero-contact-btn {
    display: inline-block;
    text-decoration: none;
}

/* ============================================================
   HERO SLIDER — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .carousel-caption h1 { font-size: 36px; }
    .carousel-caption p { font-size: 13px; letter-spacing: 1.5px; }
    .carousel-caption p.text-warning { font-size: 11px; letter-spacing: 3px; }
    .btn-orange { padding: 10px 24px; font-size: 12px; }
    .carousel-control-prev,
    .carousel-control-next { width: 40px; opacity: 0.6; }
    .carousel-control-prev-icon,
    .carousel-control-next-icon { width: 40px; height: 40px; }
    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after { font-size: 14px; }
}

@media (max-width: 576px) {
    .carousel-caption h1 { font-size: 28px; }
    .carousel-caption { padding-bottom: 80px; }
    .scroll-indicator { bottom: 65px; }
}


/* ==========================================
   STICKY WHATSAPP ENQUIRE BUTTON
   ========================================== */
.sticky-enquire-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #223367;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 8px;
    border-radius: 10px 0 0 10px; 
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9999; 
    transition: all 0.3s ease-in-out;
}

.sticky-enquire-btn i {
    font-size: 28px;
    animation: wa-bounce 2s infinite;
}

.sticky-enquire-btn span {
    writing-mode: vertical-rl; 
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hover Effect - Slide out a bit */
.sticky-enquire-btn:hover {
    background-color: #F8B219;
    padding-right: 14px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.3);
}

/* Small Bounce Animation for Icon */
@keyframes wa-bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}


@media (max-width: 768px) {
    .sticky-enquire-btn {
        padding: 12px 6px;
        gap: 8px;
    }
    .sticky-enquire-btn i {
        font-size: 24px;
    }
    .sticky-enquire-btn span {
        font-size: 12px;
    }
}

/* ==========================================
   SCROLL TO TOP BUTTON (LEFT SIDE)
   ========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 80px;
    right: 10px; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--orange); 
    color: #ffffff;
    border: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.scroll-top-btn:hover {
    background-color: #e65100; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 70px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
