/* Base & Reset */
:root {
    --primary-color: #0B2046;
    /* Deep Corporate Blue */
    --primary-light: #1A3668;
    --gold: #D4AF37;
    /* Premium Gold */
    --gold-light: #ebd076;
    --gold-dark: #b59223;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-gray: #F5F7FA;
    --bg-dark: #06142E;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: white;
}

/* Layout Helpers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.title-underline {
    position: relative;
    width: 0;
    max-width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    animation:
        expandUnderline 1s cubic-bezier(0.25, 1, 0.5, 1) forwards,
        shimmerGold 3s linear infinite;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 10%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    animation: expandSecondaryLine 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
    opacity: 0;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 10px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 2px;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    opacity: 0;
    animation: fadeRevealDot 0.8s ease 0.8s forwards;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.text-center .title-underline {
    margin: 0 auto 2.5rem;
}

.text-center .title-underline::before {
    right: 50%;
    margin-right: -5px;
    background: var(--gold);
}

@keyframes expandUnderline {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 120px;
        opacity: 1;
    }
}

@keyframes expandSecondaryLine {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 80%;
        opacity: 0.6;
    }
}

@keyframes shimmerGold {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: 0% center;
    }
}

@keyframes fadeRevealDot {
    0% {
        opacity: 0;
        transform: translateY(-50%) rotate(0deg) scale(0);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) rotate(45deg) scale(1);
    }
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

/* WhatsApp Float */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #0f2c5c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: transform var(--transition);
    display: flex;
    align-items: center;
}

.top-bar.scrolled {
    transform: translateY(-100%);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.top-socials {
    display: flex;
    gap: 12px;
}

.top-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
}

.top-socials a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary-color);
    transform: scale(1.1);
}

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-contact span i {
    color: var(--gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 999;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    top: 0;
    padding: 16px 0;
    background-color: rgba(11, 32, 70, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo h1 {
    font-size: 1.5rem;
    color: white;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
}

.logo h1 span {
    font-weight: 700;
    color: var(--gold);
}

.nav-wrapper {
    display: contents;
}

.nav-links-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.nav-links-list a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links-list a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex: 1;
}

.nav-btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: white !important;
    /* Ensure visibility */
}

.nav-btn-secondary:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-btn-primary {
    padding: 8px 20px;
    background-color: var(--gold);
    color: var(--bg-dark) !important;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-btn-primary:hover {
    background-color: var(--gold-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 1. Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--bg-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 20, 46, 0.9) 0%, rgba(6, 20, 46, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 120px;
    /* Keep above the overlapping highlights section */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* 2. Highlights Section */
.highlights-section {
    position: relative;
    margin-top: -80px;
    z-index: 20;
    /* Ensure this is strictly above the slider */
    padding: 0 24px;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0;
}

.highlight-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid var(--gold);
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    background-color: var(--gold);
    color: white;
}

.highlight-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 3. About Us */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    height: 600px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    transform: translate(40px, -40px);
}

.experience-badge .numbers {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

/* Animations */
.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal-fade.active {
    opacity: 1;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* 4. Services Grid */
.bg-gray {
    background-color: var(--bg-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-item:hover i {
    color: var(--gold);
    transform: scale(1.1);
}

.service-item h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 5. Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
}

.destination-overlay h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-overlay ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.destination-overlay li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.destination-overlay li i {
    color: var(--gold);
}

/* 6. Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-img {
    position: relative;
    height: 240px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.package-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.package-details span i {
    width: 20px;
    color: var(--gold);
}

.package-inclusions {
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-inclusions li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* 7. Booking Form */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.method-item i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.method-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.method-item p {
    color: var(--text-muted);
}

.booking-form-wrapper {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.partner-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
}

/* 8. Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 285px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-banner {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    font-size: 0.95rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* 9. Why Choose Us */
.why-choose-section {
    background: linear-gradient(rgba(11, 32, 70, 0.95), rgba(11, 32, 70, 0.95)), url('https://images.unsplash.com/photo-1541336032412-2048a678540d?q=80&w=2500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    /* Ensure text is visible globally in this section */
}

.why-choose-section .section-title {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 15px;
    border-radius: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-box:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-box h3 {
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background-color: white;
}

/* ==== NEW V2 SECTIONS ==== */

/* Explore Experiences */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.experience-item {
    background: white;
    padding: 30px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.experience-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    transition: var(--transition);
}

.experience-item:hover i {
    color: var(--gold);
}

.experience-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
}

/* Partner Benefits */
.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefits-list i {
    margin-top: 4px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex: 1;
}

.benefit-content strong {
    min-width: 250px;
    font-weight: 700;
    color: var(--text-heading);
    margin-right: 15px;
}

.benefit-content span {
    flex: 1;
    font-weight: 400;
    line-height: var(--line-height);
}

.benefits-image img {
    width: 100%;
    object-fit: cover;
}

/* Corporate Travel */
.corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.corporate-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.corporate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.corporate-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

/* Process Workflow */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.workflow-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed 2px var(--gold);
    z-index: 1;
}

.workflow-step {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    color: var(--gold);
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.workflow-step:hover .step-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.workflow-step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.stars {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--gold);
}

.faq-item.active .faq-question {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--text-muted);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-dark);
    background-image: linear-gradient(rgba(6, 20, 46, 0.9), rgba(6, 20, 46, 0.9)), url('https://images.unsplash.com/photo-1542898966-512c019d443e?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.newsletter-title {
    color: white;
    margin-bottom: 10px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid var(--gold);
}

/* 10. Final CTA */
.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 11 & 12. Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.brand-col p {
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-links a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: white;
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-details li i {
    margin-top: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    font-size: 0.9rem;
}

/* Responsive basics */
@media (max-width: 992px) {
    .highlights-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .experience-badge {
        transform: translate(20px, -20px);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .destination-card {
        height: 400px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* V2 Additions */
    .experiences-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .corporate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-grid::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-socials {
        display: none;
    }

    .top-contact {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
    }

    .nav-wrapper {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(11, 32, 70, 0.98);
        padding: 20px;
        gap: 20px;
    }

    .nav-wrapper.active {
        display: flex;
    }

    .nav-links-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-cta {
        flex-direction: column;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .partner-form .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    /* V2 Additions */
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}