:root {
    --gold: #c5a059;
    --gold-dim: #94763e;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --white: #ffffff;
    --gray: #888888;

    --font-head: 'Oswald', sans-serif;
    --font-body: 'Raleway', sans-serif;

    --easing: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    font-family: var(--font-body);
    color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

p {
    font-weight: 300;
    color: #ccc;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.gold-text {
    color: var(--gold);
}

.gold-stroke {
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
}

.outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-5 {
    margin-top: 50px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    /* Adjusted for 70px height */
    z-index: 1000;
    background-color: #000;
    /* Opaque Black */
    /* mix-blend-mode: difference; REMOVED */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Adjusted for 70px menu height */
    /* Increased for better visibility */
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--easing);
}

.nav-link:hover::after {
    width: 100%;
}

.close-menu-item {
    display: none;
    /* Hidden on desktop */
}

.btn-outlined {
    padding: 8px 25px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-outlined:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Social Icons in Menu */
.social-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--gold);
    color: var(--darker-bg);
    transform: translateY(-2px);
    border-color: var(--gold);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
}

/* Hero Section - Parallax & Full Bleed */
.hero-section {
    position: relative;
    height: 100vh;
    /* Full height */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    background: url('../assets/images/hero.png') no-repeat center center/cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Improved Overlay for Left-Aligned Text */
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 35%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    width: 100%;
    max-width: 800px;
    /* Wider to allow big text to breathe */
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.hero-title {
    font-size: 5.5rem;
    /* Large but balanced */
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Creative typographic variation */
.hero-title span.gold-stroke {
    display: block;
    /* Force new line */
    font-size: 1em;
    /* Same size as TRANSFORME */
    color: var(--gold);
    /* Solid Gold for better visibility */
    -webkit-text-stroke: 0;
    /* Removing outline for solid fill */
    margin-top: 5px;
    letter-spacing: 0px;
    /* Reset strange spacing */
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 480px;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
    color: #e0e0e0;
    line-height: 1.5;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent);
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Hero Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--darker-bg);
    text-decoration: none;
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-gold.big-btn {
    font-size: 1.2rem;
    padding: 20px 50px;
}

/* Glitch/Creative Hover Effect (Simple CSS version) */
.glitch-hover:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.5s;
}

.glitch-hover:hover:before {
    left: 150%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* Intro Section - Asymmetric */
.intro-section {
    padding: 150px 0;
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-heading {
    font-size: 4rem;
    line-height: 0.9;
    margin-bottom: 30px;
}

.light-text {
    font-weight: 200;
    font-size: 1.1rem;
    color: #aaa;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.intro-visual {
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 500px;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.image-wrapper.angled-mask {
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 0 100%);
}

.placeholder-visual {
    width: 100%;
    height: 100%;
    background: url('../assets/images/result1.png') center/cover;
    filter: grayscale(1) contrast(1.2);
    transition: transform 1s;
}

.intro-visual:hover .placeholder-visual {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card h3 {
    color: var(--gold);
}

/* Diagonal Services Split */
.services-section {
    position: relative;
    padding: 150px 0;
    background: var(--darker-bg);
}

.services-section.diagonal-split::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--darker-bg);
    transform: skewY(-2deg);
    z-index: 1;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--easing);
    position: relative;
}

.glass-card:hover {
    background: var(--gold);
    transform: translateY(-10px);
}

.glass-card:hover * {
    color: var(--darker-bg);
}

.glass-card:hover .card-number {
    color: rgba(0, 0, 0, 0.2);
}

.glass-card:hover p {
    color: rgba(0, 0, 0, 0.7);
}

.card-number {
    font-family: var(--font-head);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: 0.4s;
}

/* Results Square Grid */
.results-section {
    padding: 100px 0;
}

.results-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    aspect-ratio: 1/1;
    /* Ensure square */
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing);
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* Responsive Grid */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Creative Why Us - Bento Grid */
.why-bento-section {
    position: relative;
    background: var(--darker-bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-item {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--easing);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.3);
}

/* Specific Areas */
.title-block {
    grid-column: span 2;
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-block {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-block {
    grid-column: span 1;
    grid-row: span 2;
    background: #000;
    padding: 0;
    border: none;
    overflow: hidden;
}

.dark-glass {
    background: rgba(10, 10, 10, 0.6);
}

.bento-num {
    font-family: var(--font-head);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

/* Video in Bento */
.phone-frame-small {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-placeholder-small {
    width: 100%;
    height: 100%;
    background: url('../assets/images/result1.png') center/cover;
    /* Fallback */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.5s;
}

.video-block:hover .video-placeholder-small {
    transform: scale(1.05);
}

.video-placeholder-small::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.video-placeholder-small>* {
    position: relative;
    z-index: 2;
}

.play-icon-small {
    font-size: 2rem;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.video-block:hover .play-icon-small {
    transform: scale(1.1);
    background: var(--gold);
    color: #000;
}

.video-text {
    margin-top: 10px;
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-size: 0.8rem;
}



/* Responsive */
@media (max-width: 900px) {
    .logo-img {
        height: 40px;
        /* Smaller logic on mobile if needed */
        /* Keep it smaller on mobile */
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--white);
        margin: 6px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--darker-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.5s var(--easing);
        z-index: 1001;
        /* Above navbar */
    }

    .close-menu-item {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--white);
        cursor: pointer;
        padding: 10px;
    }

    .close-menu-item svg {
        transition: color 0.3s;
    }

    .close-menu-item:hover svg {
        color: var(--gold);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-title span.gold-stroke {
        font-size: 0.9em;
        letter-spacing: 2px;
        margin-left: 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .section-heading {
        font-size: 2.5rem;
        /* Standardized heading size on mobile */
    }

    .cta-title-large {
        font-size: 2.5rem;
        /* Reduced CTA title */
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        /* Reduced gap since they stack */
    }

    .services-container,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-open body {
        overflow: hidden;
    }

    .image-wrapper {
        height: 300px;
        margin-top: 50px;
    }

    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        /* Changed from -20px to 20px to fix overlap */
        margin-left: 0;
        /* Centered or aligned with normal flow */
        width: 100%;
        /* Ensure it fits */
    }

    .film-strip-track {
        padding: 0 20px 20px 20px;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .title-block,
    .video-block {
        grid-column: span 1;
    }

    .video-block {
        height: auto;
        /* Removed fixed height */
        aspect-ratio: 9 / 16;
        /* Standardized Aspect Ratio for Mobile Videos */
        width: 100%;
    }

    .map-info-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 20px;
        /* Changed from -50px to 20px to fix overlap */
        z-index: 10;
        border-left: none;
        border-top: 3px solid var(--gold);
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo-big {
        font-size: 15vw;
    }
}

/* ---------------------------------------------------- */
/* Testimonials Section (New) */
/* ---------------------------------------------------- */
.testimonials-section {
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s var(--easing);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.3);
}

.testimonial-info {
    padding: 20px;
    text-align: center;
}

.testimonial-info h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

/* ---------------------------------------------------- */
/* Generic Video Controls (Overlay & Button) */
/* ---------------------------------------------------- */
.video-wrapper {
    position: relative;
    width: 100%;
    /* Aspect ratio fallback if needed, but video usually handles it */
    aspect-ratio: 9/16;
    background: #000;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Slight dim initially */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    margin-left: 4px;
    /* Optical adjustment for play icon */
}

.video-wrapper:hover .video-btn {
    transform: scale(1.1);
    background: var(--gold);
    color: var(--darker-bg);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------------------------------------------------- */
/* Creative Footer (Restored) */
/* ---------------------------------------------------- */
.creative-footer {
    background: #050505;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-brand {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo-big {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.3), transparent);
    margin-bottom: 50px;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}

.f-col h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.f-col p,
.f-col a {
    display: block;
    color: #888;
    /* var(--gray) is #888 */
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s;
}

.f-col a.f-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

.f-small {
    font-size: 0.8rem !important;
    opacity: 0.6;
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    font-size: 0.8rem;
    color: #666;
}

/* ---------------------------------------------------- */
/* Map Section (Restored) */
/* ---------------------------------------------------- */
.map-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-container {
    height: 100%;
    width: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    /* Removed dark filter */
    pointer-events: none;
}

.map-info-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-left: 3px solid var(--gold);
    max-width: 400px;
    z-index: 5;
}

.map-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.map-info-card p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-info-card .small {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-weight: 700;
}

/* ---------------------------------------------------- */
/* Contact Section (Restored) */
/* ---------------------------------------------------- */
.contact-section {
    position: relative;
    padding: 60px 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.cta-title-large {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 50px;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item[open] {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Remove default marker */
    user-select: none;
}

/* Remove default marker for Safari/Webkit */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom Accordion Icon */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    /* Turns + into x */
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--gray-text);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -10px;
    padding-top: 15px;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: #666;
}

/* ---------------------------------------------------- */
/* Map Section (Restored) */
/* ---------------------------------------------------- */
.map-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-container {
    height: 100%;
    width: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    /* Removed dark filter */
    pointer-events: none;
}

.map-info-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-left: 3px solid var(--gold);
    max-width: 400px;
    z-index: 5;
}

.map-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.map-info-card p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-info-card .small {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-weight: 700;
}

/* ---------------------------------------------------- */
/* Contact Section (Restored) */
/* ---------------------------------------------------- */
.contact-section {
    position: relative;
    padding: 60px 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.cta-title-large {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 50px;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* FAQ Section */
.faq-section {
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item[open] {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Remove default marker */
    user-select: none;
}

/* Remove default marker for Safari/Webkit */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom Accordion Icon */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    /* Turns + into x */
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--gray-text);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -10px;
    /* Slight pull up */
    padding-top: 15px;
}

/* ---------------------------------------------------- */
/* Final Polish Features */
/* ---------------------------------------------------- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 150px;
    height: auto;
    animation: logoPulse 2s infinite ease-in-out;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--gold);
    animation: lineLoad 1.5s ease-out forwards;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes lineLoad {
    0% {
        width: 0;
    }

    100% {
        width: 100px;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    align-items: center;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.whatsapp-float {
    background: #25D366;
    width: 60px;
    /* Slightly bigger */
    height: 60px;
}

.whatsapp-float:hover {
    background: #20BA5A;
}

.back-to-top {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Mobile Fixes for Testimonials */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}