:root {
    /* Colors - Premium Palette */
    --color-beige: #F9F5F0;
    /* Softer, creamier beige */
    --color-terracotta: #B35A38;
    /* Deeper, richer terracotta */
    --color-terracotta-light: #E8D5CE;
    /* Light accent */
    --color-sky-blue: #A8DADC;
    /* Kept as requested, but used sparingly */
    --color-sage: #8DAA91;
    /* Muted natural green */
    --color-gold: #C5A028;
    /* Less yellow, more antique gold */
    --color-dark: #1F1F1F;
    /* Softer black */
    --color-charcoal: #333333;
    --color-white: #FFFFFF;
    --color-off-white: #FAF9F6;

    /* Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 5px 20px rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-brand: 'Cinzel', serif;
    /* Strong, visible, classy */

    /* Spacing */
    --container-width: 1280px;
    /* Slightly wider for modern feel */
    --section-padding: 120px 0;
    /* More breathing room */

    /* Transitions */
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
    /* Fix for sticky header */
    overflow-x: hidden;
    /* Better mobile compatibility */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FAF9F6;
}

::-webkit-scrollbar-thumb {
    background: var(--color-terracotta);
    border-radius: 5px;
    border: 2px solid #FAF9F6;
    /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Selection */
::selection {
    background: var(--color-terracotta);
    color: var(--color-white);
}

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    /* Slightly larger base size */
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 25px;
}

.section {
    padding: var(--section-padding);
}

.grid {
    display: grid;
    gap: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(179, 90, 56, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-gold));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(179, 90, 56, 0.35);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 108, 76, 0.2);
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

#header nav {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    /* Vertical stack */
    align-items: center;
    gap: 0;
    /* Tight spacing */
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    /* Cormorant Garamond */
    font-size: 1.15rem;
    /* Readable small size */
    font-weight: 600;
    /* Bold for clarity */
    color: var(--color-terracotta);
    letter-spacing: 0;
    /* Tight letters */
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 5px;
    height: auto;
    display: block;
    text-align: center;
}

.logo img {
    height: 50px;
    /* Reduced to fit navbar */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
    /* Reduced gap from 50px */
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/hero_background.png') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect */
    color: var(--color-white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: brightness(0.9);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-brand-name {
    font-family: var(--font-brand);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-terracotta-light);
    /* Soft elegance */
    margin-bottom: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 30px;
    line-height: 1.05;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span {
    color: var(--color-white);
    font-style: italic;
    font-weight: 300;
    font-family: var(--font-heading);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
#about .grid {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 100px;
}

.section-title {
    font-size: 3.8rem;
    margin-bottom: 40px;
    color: var(--color-terracotta);
    line-height: 1.1;
}

.about-text p {
    margin-bottom: 28px;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 300;
}

.about-image {
    position: relative;
}

.image-stack {
    position: relative;
    height: 600px;
}

.image-stack img:first-child {
    width: 85%;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    height: 85%;
    transition: var(--transition);
}

.image-stack img:first-child:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    z-index: 2;
}

.image-stack img:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border: 12px solid var(--color-off-white);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    transition: var(--transition);
}

.image-stack img:last-child:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    z-index: 3;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* Utility */
.bg-light {
    background-color: var(--color-beige);
}

.center {
    text-align: center;
}

.divider {
    width: 80px;
    height: 2px;
    background: var(--color-gold);
    margin: 25px 0 35px;
}

.center .divider {
    margin: 25px auto 40px;
}

.w-100 {
    width: 100%;
}

.about-cta {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--color-terracotta);
    margin-top: 40px;
    font-family: var(--font-heading);
    font-style: italic;
}

.about-cta-container {
    margin-top: 25px;
}

/* Services Section */
.services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
    gap: 50px;
}

.service-card {
    background: var(--color-white);
    padding: 60px 45px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 90, 56, 0.03), rgba(197, 160, 40, 0.03));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(179, 90, 56, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--color-terracotta);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    background: var(--color-off-white);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    color: var(--color-charcoal);
}

.service-card p {
    transition: var(--transition);
    position: relative;
    z-index: 1;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-details {
    max-height: 350px;
    opacity: 1;
    margin-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.service-details ul {
    text-align: left;
    padding: 0;
}

.service-details li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
}

.service-details li i {
    color: var(--color-gold);
    font-size: 0.9rem;
    background: rgba(197, 160, 40, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.service-card:hover .service-icon {
    transform: scale(0.95);
    background: var(--color-terracotta);
    color: var(--color-white);
}

.service-card:hover h3 {
    color: var(--color-terracotta);
}

/* Testimonials */
/* Infinite Marquee */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 80px;
    padding: 30px 0 60px;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: scroll 60s linear infinite;
    will-change: transform;
    /* Hardware acceleration */
}

.marquee-content:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    height: 420px;
    background: #FFFEFC;
    /* Very subtle warm white */
    padding: 50px 40px 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    white-space: normal;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(197, 160, 40, 0.15);
    /* Elegant gold border */
    position: relative;
    margin: 10px 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 40, 0.08);
    border-color: rgba(197, 160, 40, 0.4);
    background: var(--color-white);
}

.testimonial-card .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* Reduced to balance with top padding */
    margin-top: 10px;
}

.testimonial-card .quote::before {
    content: '“';
    font-family: var(--font-brand);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.15;
    position: absolute;
    top: -55px;
    /* Adjusted to not overlap */
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.client-info {
    margin-top: auto;
    /* Force to bottom */
    border-top: 1px solid rgba(197, 160, 40, 0.15);
    padding-top: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.client-name {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-dark);
    letter-spacing: 0.05em;
    display: block;
    text-transform: uppercase;
}

.client-destination {
    color: var(--color-terracotta);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-body);
    display: block;
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-100% - 20px), 0, 0);
        /* GPU-accelerated for better mobile performance */
    }
}

/* Hide dots as we don't need them anymore */
.slider-dots {
    display: none;
}



/* Contact */
#contact .grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
    gap: 80px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.25rem;
    /* Larger font size */
    line-height: 1.8;
    color: var(--color-charcoal);
    /* Darker color for readability */
    margin-bottom: 35px;
    font-weight: 500;
    /* Slightly bolder */
}

.contact-list {
    margin-top: 50px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    font-size: 1.15rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--color-dark);
}

.contact-list li:hover {
    transform: translateX(5px);
}

.contact-list i {
    font-size: 1.6rem;
    color: var(--color-terracotta);
}

.contact-list a:hover {
    color: var(--color-terracotta);
}

.contact-form-container {
    background: var(--color-white);
    padding: 55px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(192, 108, 76, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    /* Bolder labels */
    font-size: 1rem;
    color: var(--color-dark);
    /* Darker labels */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #DDD;
    /* Higher contrast border */
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-dark);
    transition: var(--transition);
    background: #FAFAFA;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    /* Darker placeholder */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 5px rgba(192, 108, 76, 0.1);
    background: var(--color-white);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #1A1A1A;
    color: var(--color-white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: var(--font-brand);
    font-size: 1.6rem;
    font-weight: 600;
    /* Bolder */
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-social a {
    font-size: 1.5rem;
    color: var(--color-white);
    opacity: 0.8;
}

.footer-social a:hover {
    color: var(--color-gold);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Sticky WhatsApp */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

.whatsapp-sticky i {
    font-size: 1.4rem;
}

.whatsapp-sticky span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Method Section */
.method-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    gap: 50px;
}

.method-step {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.method-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-terracotta);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-beige);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.4;
    transition: var(--transition);
}

.method-step:hover .step-number {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.1);
}

.step-icon {
    font-size: 3rem;
    color: var(--color-terracotta);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.method-step:hover .step-icon {
    transform: scale(1.1);
}

.method-step h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--color-dark);
    position: relative;
    z-index: 1;
}

.method-step p {
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* Destinations Section */
.destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    gap: 30px;
    /* Tighter gap for immersive feel */
}

.destination-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 500px;
    /* Taller cards */
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.destination-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.destination-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Gradient overlay - always visible at bottom but subtle */
.destination-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
    transition: var(--transition);
}

.destination-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 2;
    color: var(--color-white);
    transform: translateY(0);
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.destination-overlay p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* FAQ Section */
.faq-container {
    max-width: 850px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 20px;
    border-radius: 18px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    /* Ensure the item is always visible */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.faq-item:hover {
    border-color: var(--color-terracotta);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 28px 35px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-white);
    border-radius: 18px;
    position: relative;
    z-index: 2;
    /* Ensure question is always visible */
    opacity: 1 !important;
    visibility: visible !important;
}

.faq-question:hover {
    background: rgba(192, 108, 76, 0.03);
}

.faq-question h3 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    /* Ensure h3 is always visible */
    opacity: 1 !important;
    visibility: visible !important;
}

.faq-question i {
    color: var(--color-terracotta);
    transition: var(--transition);
    font-size: 1.1rem;
    flex-shrink: 0;
    /* Ensure icon is always visible */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Answer is HIDDEN by default */
.faq-answer {
    max-height: 0;
    padding: 0 35px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out,
        opacity 0.4s ease-in-out,
        padding 0.4s ease-in-out;
    background: var(--color-white);
}

.faq-answer p {
    padding-bottom: 28px;
    padding-top: 0;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* When active, answer becomes VISIBLE */
.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 10px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }

    .grid {
        gap: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    #contact .grid {
        grid-template-columns: 1fr;
    }

    .method-grid,
    .destinations-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    #about .grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .image-stack {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .header-cta {
        display: none;
    }

    .testimonial-card .quote {
        font-size: 1.4rem;
    }

    .contact-form-container {
        padding: 30px;
    }

    .whatsapp-sticky span {
        display: none;
    }

    .whatsapp-sticky {
        padding: 15px;
        bottom: 20px;
        right: 20px;
    }

    /* Fix hero background on mobile */
    #hero {
        background-attachment: scroll;
        background-position: center;
        min-height: 100vh;
        /* Ensure proper mobile coverage */
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    /* Mobile Typography & Layout Fixes */
    .hero-content h1 {
        font-size: 2.5rem;
        /* Smaller for mobile */
    }

    .about-cta-container {
        text-align: center;
        /* Center button on mobile */
        margin-top: 30px;
    }

    /* Testimonials Mobile Fix */
    .testimonial-card {
        min-width: 85vw;
        /* Responsive width */
        max-width: 85vw;
        height: auto;
        /* Allow height to adapt */
        min-height: 420px;
        padding: 40px 20px;
        /* Reduced padding */
    }

    /* Faster testimonial animation on mobile */
    .marquee-content {
        animation-duration: 30s;
        /* 2x faster for mobile */
    }

    /* Contact Mobile Fix */
    .contact-info {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }
}