
        :root {
            --ink: #0d0d0d;
            --cream: #f5f0e8;
            --gold: #c9a84c;
            --gold-light: #e8d5a3;
            --gold-dark: #9a7a30;
            --white: #ffffff;
            --muted: #7a7265;
            --border: rgba(201, 168, 76, 0.25);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--ink);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ===== HEADER ===== */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            transition: background 0.4s ease, backdrop-filter 0.4s ease;
        }

        #header.scrolled {
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .header-top {
            background: rgba(201, 168, 76, 0.12);
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .header-top-left h4 {
           font-family: 'Oswald', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 0 2px;
        }

        .header-top-left h6 {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
            margin: 0;
        }

        .header-top-right {
            text-align: right;
        }

        .header-top-right h5 {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 0 3px;
        }

        .header-top-right h1 {
            margin: 0;
        }

        .header-top-right h1 a {
           font-family: 'Oswald', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .header-top-right h1 a:hover {
            color: var(--gold);
        }

        .header-top-right h1 a i {
            color: var(--gold);
            margin-right: 6px;
            font-size: 16px;
        }

        .main-menu {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 68px;
        }

        #logo a img {
            display: block;
        }

        #nav-menu-container ul {
            list-style: none;
            display: flex;
            gap: 40px;
            margin: 0;
            padding: 0;
        }

        #nav-menu-container ul li a {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 4px;
        }

        #nav-menu-container ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        #nav-menu-container ul li a:hover,
        #nav-menu-container ul li a.active {
            color: var(--gold);
        }

        #nav-menu-container ul li a:hover::after,
        #nav-menu-container ul li a.active::after {
            width: 100%;
        }

        /* ===== HERO BANNER ===== */
        .banner-area {
            min-height: 100vh;
            background: var(--ink);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 120px;
        }

        .banner-bg-layer {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
        }

        .banner-grid-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
        }

        .banner-area .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 30px;
            width: 100%;
        }

        .banner-headline {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeUp 0.8s ease both;
        }

        .banner-headline .eyebrow {
            display: inline-block;
            font-size: 11px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid var(--border);
            padding: 6px 20px;
            border-radius: 50px;
            margin-bottom: 24px;
        }

        .banner-headline h1 {
           font-family: 'Oswald', sans-serif;
            font-size: clamp(52px, 8vw, 96px);
            font-weight: 300;
            line-height: 1.0;
            letter-spacing: -1px;
            color: var(--white);
            margin-bottom: 16px;
        }

        .banner-headline h1 em {
            font-style: italic;
            color: var(--gold);
        }

        .banner-headline p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== QUOTE FORM ===== */
        .quote-form-wrapper {
            max-width: 820px;
            margin: 0 auto;
            animation: fadeUp 0.8s 0.2s ease both;
        }

        .floating-quote-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 40px 44px;
            backdrop-filter: blur(30px);
            position: relative;
            overflow: hidden;
        }

        .floating-quote-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .form-section-title {
           font-family: 'Oswald', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .form-section-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        /* Trip Type */
        .trip-type-wrapper {
            display: flex;
            gap: 8px;
            margin-bottom: 28px;
        }

        .trip-type-btn {
            padding: 8px 22px;
            border: 1px solid var(--border);
            background: transparent;
            color: rgba(255, 255, 255, 0.5);
            border-radius: 2px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'DM Sans', sans-serif;
        }

        .trip-type-btn.active,
        .trip-type-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--ink);
        }

        /* Hidden radio buttons - keep functionality */
        .form-check {
            display: none;
        }

        /* Field Groups */
        .field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 14px;
        }

        .field-row.three-col {
            grid-template-columns: 1fr 1fr 1fr;
        }

        .field-row.full {
            grid-template-columns: 1fr;
        }

        .field-group {
            position: relative;
        }

        .field-label {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
            font-weight: 500;
        }

        .field-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            padding: 12px 16px 12px 40px;
            font-size: 13px;
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            transition: border-color 0.3s, background 0.3s;
            outline: none;
            appearance: none;
        }

        .field-input:focus {
            border-color: var(--gold);
            background: rgba(201, 168, 76, 0.05);
        }

        .field-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .field-input option {
            background: #1a1a1a;
            color: var(--white);
        }

        .field-icon {
            position: absolute;
            bottom: 13px;
            left: 14px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 13px;
            pointer-events: none;
            transition: color 0.3s;
        }

        .field-group:focus-within .field-icon {
            color: var(--gold);
        }

        /* Suggestions */
        .suggestions-box {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            max-height: 220px;
            overflow-y: auto;
            background: #1a1710;
            border: 1px solid var(--border);
            border-top: none;
            border-radius: 0 0 4px 4px;
            z-index: 1000;
        }

        .suggestions-box.show {
            display: block;
        }

        .suggestion-item {
            padding: 10px 16px;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.2s;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover {
            background: rgba(201, 168, 76, 0.1);
            color: var(--gold);
        }

        /* Traveler Box */
        .traveler-box {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #1a1710;
            border: 1px solid var(--border);
            border-top: none;
            border-radius: 0 0 4px 4px;
            padding: 16px;
            z-index: 1000;
            margin-top: 0;
        }

        .traveler-box.show {
            display: block;
        }

        .traveler-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .traveler-row:last-child {
            border-bottom: none;
        }

        .traveler-row strong {
            font-size: 13px;
            color: var(--white);
            display: block;
        }

        .traveler-row small {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.35);
        }

        .counter {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .counter button {
            width: 30px;
            height: 30px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--gold);
            border-radius: 2px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 400;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .counter button:hover {
            background: var(--gold);
            color: var(--ink);
            border-color: var(--gold);
        }

        .counter span {
            min-width: 24px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--white);
        }

        /* Submit Button */
        .btn-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border: none;
            border-radius: 3px;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ink);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 24px;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
        }

        .form-trust {
            text-align: center;
            margin-top: 12px;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 1px;
        }

        .form-trust i {
            color: var(--gold);
            margin-right: 4px;
        }

        /* Alerts */
        .alert {
            border-radius: 3px;
            padding: 12px 16px;
            margin-bottom: 20px;
            font-size: 13px;
            border: 1px solid;
        }

        .alert-success {
            background: rgba(39, 174, 96, 0.1);
            border-color: rgba(39, 174, 96, 0.3);
            color: #7dcea0;
        }

        .alert-danger {
            background: rgba(231, 76, 60, 0.1);
            border-color: rgba(231, 76, 60, 0.3);
            color: #f1948a;
        }

        .d-none {
            display: none !important;
        }

        /* ===== AIRLINE MARQUEE ===== */
        .logo-marquee {
            background: rgba(201, 168, 76, 0.04);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 28px 0;
            overflow: hidden;
        }

        .marquee {
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            animation: marqueeScroll 30s linear infinite;
            width: max-content;
        }

        .marquee-track img {
            height: 32px;
            width: auto;
            margin: 0 32px;
            opacity: 0.5;
            filter: grayscale(100%) brightness(2);
            transition: opacity 0.3s;
        }

        .marquee-track img:hover {
            opacity: 0.9;
            filter: grayscale(0%) brightness(1.2);
        }

        @keyframes marqueeScroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* ===== WHY CHOOSE US ===== */
        .why-choose-us {
            padding: 100px 0;
            background: var(--ink);
        }

        .section-eyebrow {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
           font-family: 'Oswald', sans-serif;
            font-size: clamp(38px, 5vw, 60px);
            font-weight: 400;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.7;
            max-width: 420px;
        }

        .why-choose-img {
            width: 100%;
            max-width: 460px;
            border-radius: 4px;
            margin-top: 40px;
            opacity: 0.85;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.02);
            padding: 36px 30px;
            transition: background 0.3s;
            position: relative;
        }

        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.4s ease;
        }

        .feature-box:hover {
            background: rgba(201, 168, 76, 0.05);
        }

        .feature-box:hover::before {
            width: 100%;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            font-size: 16px;
            color: var(--gold);
            transition: all 0.3s;
        }

        .feature-box:hover .feature-icon {
            background: var(--gold);
            color: var(--ink);
            border-color: var(--gold);
        }

        .feature-box h3 {
           font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 10px;
        }

        .feature-box p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.65;
            margin: 0;
        }

        /* ===== DESTINATIONS ===== */
        .popular-destination-area {
            padding: 100px 0;
            background: #080808;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .dest-card {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            aspect-ratio: 3/4;
            cursor: pointer;
        }

        .dest-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .dest-card:hover img {
            transform: scale(1.08);
        }

        .dest-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
            transition: background 0.4s;
        }

        .dest-card:hover .dest-card-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
        }

        .dest-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            transform: translateY(0);
            transition: all 0.4s ease;
        }

        .dest-card h5 {
           font-family: 'Oswald', sans-serif;
            font-size: 26px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 6px;
        }

        .dest-card p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.55;
            margin-bottom: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .dest-card:hover p {
            max-height: 80px;
        }

        .dest-card-link {
            display: inline-block;
            margin-top: 14px;
            padding: 8px 20px;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 2px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(10px);
            font-family: 'DM Sans', sans-serif;
        }

        .dest-card:hover .dest-card-link {
            opacity: 1;
            transform: translateY(0);
        }

        .dest-card-link:hover {
            background: var(--gold);
            color: var(--ink);
        }

        /* ===== PACKAGES ===== */
        .packages-section {
            padding: 100px 0;
            background: var(--ink);
        }

        .packages-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .packages-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }

        .pack-category-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            margin-top: 60px;
            display: block;
        }

        .pack-category-label:first-child {
            margin-top: 0;
        }

        .pack-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 8px;
        }

        .pack-card {
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.02);
        }

        .pack-card:hover {
            border-color: var(--border);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .pack-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .pack-card:hover img {
            transform: scale(1.05);
        }

        .pack-card-body {
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pack-card h5 {
           font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--white);
            margin: 0;
        }

        .pack-price {
            font-size: 18px;
            font-weight: 600;
            color: var(--gold);
        }

        .pack-price.luxury {
            color: #a8d8a8;
        }

        .pack-price.camping {
            color: #f0c080;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonial-area {
            padding: 100px 0;
            background: #080808;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 30px;
            position: relative;
            transition: all 0.3s;
        }

        .testimonial-card::before {
            content: '\201C';
           font-family: 'Oswald', sans-serif;
            font-size: 80px;
            color: var(--gold);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-card:hover {
            border-color: rgba(201, 168, 76, 0.5);
            background: rgba(201, 168, 76, 0.04);
        }

        .testimonial-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 16px;
        }

        .testimonial-stars .fa-star {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.15);
        }

        .testimonial-stars .fa-star.checked {
            color: var(--gold);
        }

        .testimonial-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-card h4 {
           font-family: 'Oswald', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            margin: 0;
        }

        /* ===== FOOTER ===== */
        .footer-area {
            background: #050505;
            border-top: 1px solid var(--border);
            padding: 70px 0 0;
        }

        .footer-area .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .single-footer-widget h6 {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .single-footer-widget p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.75;
        }

        .single-footer-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .single-footer-widget ul li {
            margin-bottom: 10px;
        }

        .single-footer-widget ul li a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s;
            letter-spacing: 0.5px;
        }

        .single-footer-widget ul li a:hover {
            color: var(--gold);
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            color: var(--white);
            font-size: 13px;
            font-family: 'DM Sans', sans-serif;
            outline: none;
        }

        .newsletter-form input:focus {
            border-color: var(--gold);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .newsletter-form button {
            padding: 10px 20px;
            background: var(--gold);
            border: none;
            border-radius: 2px;
            color: var(--ink);
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: var(--gold-dark);
        }

        .footer-bottom {
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-text {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.25);
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* ===== CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .banner-headline h1 {
                font-size: 52px;
            }

            .floating-quote-box {
                padding: 28px 24px;
            }

            .field-row {
                grid-template-columns: 1fr;
            }

            .field-row.three-col {
                grid-template-columns: 1fr 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .destinations-grid {
                grid-template-columns: 1fr 1fr;
            }

            .pack-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .packages-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
        }

        @media (max-width: 767px) {
            .header-top .container {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .header-top-right {
                text-align: center;
            }

            .main-menu {
                height: auto;
                padding: 16px 20px;
                flex-direction: column;
                gap: 16px;
            }

            #nav-menu-container ul {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .banner-area {
                padding-top: 180px;
                padding-bottom: 60px;
            }

            .destinations-grid {
                grid-template-columns: 1fr;
            }

            .pack-grid {
                grid-template-columns: 1fr;
            }

            .field-row.three-col {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .why-choose-us .row {
                flex-direction: column;
            }
        }
        
	/* ===== BANNER ===== */
	.about-banner {
		min-height: 340px;
		display: flex;
		align-items: center;
		background: var(--ink);
		position: relative;
		overflow: hidden;
	}

	.about-banner::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,168,76,0.10) 0%, transparent 70%);
	}

	.about-banner-grid {
		position: absolute;
		inset: 0;
		background-image:
			linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
			linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
		background-size: 80px 80px;
		mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black, transparent);
	}

	.about-banner .container { position: relative; z-index: 2; }

	.about-content {
		text-align: center;
		padding: 120px 0 70px;
	}

	.about-content h1 {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(44px, 6vw, 72px);
		font-weight: 400;
		color: #fff;
		margin-bottom: 16px;
	}

	.about-content .link-nav {
		font-size: 12px;
		letter-spacing: 2px;
		color: var(--muted);
		margin: 0;
	}

	.about-content .link-nav a {
		color: var(--gold);
		text-decoration: none;
		transition: color 0.3s;
	}

	.about-content .link-nav a:hover { color: #fff; }
	.about-content .link-nav span { margin: 0 8px; color: var(--muted); font-size: 10px; }

	/* ===== ABOUT INFO ===== */
	.about-info-area {
		padding: 100px 0;
		background: #080808;
	}

	.about-info-area .row {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: 70px;
		align-items: center;
	}

	.info-left img {
		width: 100%;
		border-radius: 4px;
		filter: brightness(0.9);
		transition: filter 0.4s;
	}

	.info-left img:hover { filter: brightness(1); }

	.info-right h6 {
		font-size: 11px;
		letter-spacing: 4px;
		text-transform: uppercase;
		color: var(--gold);
		margin-bottom: 12px;
	}

	.info-right h1 {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(36px, 4vw, 54px);
		font-weight: 400;
		color: #fff;
		margin-bottom: 20px;
		line-height: 1.1;
	}

	.info-right p {
		font-size: 15px;
		color: var(--muted);
		line-height: 1.8;
	}

	/* ===== SECTION HEADER ===== */
	.section-header {
		text-align: center;
		margin-bottom: 50px;
	}

	.section-eyebrow {
		display: block;
		font-size: 11px;
		letter-spacing: 4px;
		text-transform: uppercase;
		color: var(--gold);
		margin-bottom: 12px;
	}

	.section-title {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(34px, 4vw, 52px);
		font-weight: 400;
		color: #fff;
		line-height: 1.1;
		margin-bottom: 12px;
	}

	.section-header p {
		font-size: 15px;
		color: var(--muted);
		max-width: 520px;
		margin: 0 auto;
	}

	/* ===== PRICES ===== */
	.price-area {
		padding: 100px 0;
		background: var(--ink);
	}

	.price-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.single-price {
		border: 1px solid var(--border);
		border-radius: 4px;
		overflow: hidden;
		background: rgba(255,255,255,0.02);
		position: relative;
		transition: border-color 0.3s;
	}

	.single-price::before {
		content: '';
		position: absolute;
		top: 0; left: 0; right: 0;
		height: 2px;
		background: linear-gradient(90deg, transparent, var(--gold), transparent);
	}

	.single-price:hover { border-color: rgba(201,168,76,0.5); }

	.single-price h4 {
		font-family: 'Cormorant Garamond', serif;
		font-size: 20px;
		font-weight: 600;
		color: #fff;
		padding: 22px 24px 16px;
		border-bottom: 1px solid var(--border);
		margin: 0;
	}

	.price-list {
		list-style: none;
		margin: 0;
		padding: 8px 0;
	}

	.price-list li {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px 24px;
		border-bottom: 1px solid rgba(255,255,255,0.04);
		transition: background 0.2s;
	}

	.price-list li:last-child { border-bottom: none; }
	.price-list li:hover { background: rgba(201,168,76,0.05); }

	.price-list li span {
		font-size: 13px;
		color: rgba(255,255,255,0.65);
	}

	.price-btn {
		font-size: 12px;
		font-weight: 600;
		color: var(--gold);
		text-decoration: none;
		padding: 5px 14px;
		border: 1px solid var(--border);
		border-radius: 2px;
		letter-spacing: 0.5px;
		transition: all 0.3s;
	}

	.price-btn:hover {
		background: var(--gold);
		color: var(--ink);
		border-color: var(--gold);
	}

	/* ===== OTHER ISSUES ===== */
	.other-issue-area {
		padding: 100px 0;
		background: #080808;
	}

	.other-issues-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	.single-other-issue {
		border: 1px solid var(--border);
		border-radius: 4px;
		overflow: hidden;
		background: rgba(255,255,255,0.02);
		transition: all 0.3s;
	}

	.single-other-issue:hover {
		border-color: rgba(201,168,76,0.5);
		transform: translateY(-4px);
		box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	}

	.single-other-issue .thumb {
		height: 180px;
		overflow: hidden;
	}

	.single-other-issue .thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.5s ease;
	}

	.single-other-issue:hover .thumb img { transform: scale(1.08); }

	.single-other-issue a { text-decoration: none; }

	.single-other-issue h4 {
		font-family: 'Cormorant Garamond', serif;
		font-size: 20px;
		font-weight: 600;
		color: #fff;
		margin: 18px 20px 10px;
		transition: color 0.3s;
	}

	.single-other-issue a:hover h4 { color: var(--gold); }

	.single-other-issue p {
		font-size: 13px;
		color: var(--muted);
		line-height: 1.65;
		padding: 0 20px 20px;
		margin: 0;
	}

	/* ===== TESTIMONIALS ===== */
	.testimonial-area {
		padding: 100px 0;
		background: var(--ink);
	}

	.single-testimonial {
		background: rgba(255,255,255,0.03);
		border: 1px solid var(--border);
		border-radius: 4px;
		padding: 28px;
		display: flex !important;
		gap: 20px;
		align-items: flex-start;
		position: relative;
		margin: 0 10px;
	}

	.single-testimonial::before {
		content: '\201C';
		font-family: 'Cormorant Garamond', serif;
		font-size: 80px;
		color: var(--gold);
		opacity: 0.15;
		position: absolute;
		top: 8px; right: 20px;
		line-height: 1;
		pointer-events: none;
	}

	.single-testimonial .thumb {
		flex-shrink: 0;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		overflow: hidden;
		border: 2px solid var(--border);
	}

	.single-testimonial .thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.single-testimonial .desc p {
		font-size: 14px;
		color: var(--muted);
		line-height: 1.7;
		font-style: italic;
		margin-bottom: 12px;
	}

	.single-testimonial .desc h4 {
		font-family: 'Cormorant Garamond', serif;
		font-size: 17px;
		font-weight: 600;
		color: #fff;
		margin-bottom: 8px;
	}

	.single-testimonial .star .fa-star { font-size: 11px; color: rgba(255,255,255,0.15); }
	.single-testimonial .star .fa-star.checked { color: var(--gold); }

	/* ===== RESPONSIVE ===== */
	@media (max-width: 991px) {
		.about-info-area .row { grid-template-columns: 1fr !important; gap: 40px; }
		.price-grid { grid-template-columns: 1fr; }
		.other-issues-grid { grid-template-columns: 1fr 1fr; }
	}

	@media (max-width: 767px) {
		.about-content { padding: 130px 0 60px; }
		.other-issues-grid { grid-template-columns: 1fr; }
	}
