@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
    --primary: #ea580c;
    --primary-light: #ff7e33;
    --bg: #ffffff;
    --bg-alt: #fff7ed;
    --section-padding: 120px 0;
    /* Espacement standard pour toutes les sections */
    --text: #171717;
    --text-muted: #525252;
    --text-dim: #737373;
    --border: rgba(0, 0, 0, 0.1);
    --glass: rgba(0, 0, 0, 0.05);

    --font-geist: 'Geist', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-geist);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header.scrolled .logo-text-only {
    color: var(--text);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text-only {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 8px;
    transition: all 0.3s ease;
}

.logo-text-only span {
    color: var(--primary);
}

.logo-text-only:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    /* Blanc translucide pour le hero */
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

header.scrolled .nav-links a {
    color: var(--text);
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
}

/* Fix Header Button Color specificity */
.nav-links .btn-reserve {
    color: #0a0a0a !important;
    background-color: #ffffff;
    font-size: 14px;
    padding: 8px 20px;
}

.nav-links .btn-reserve:hover {
    background-color: #f0f0f0;
    color: #000 !important;
}

.btn-reserve {
    background-color: #fafafa;
    color: #0a0a0a;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    /* Changement ici pour éviter l'étirement */
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    width: fit-content;
}

.btn-reserve:hover {
    transform: translateY(-2px);
}

.btn-reserve .icon-circle {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    transition: all 0.3s ease;
}

header.scrolled .menu-toggle svg {
    stroke: var(--text);
}

@media (max-width: 992px) {
    .logo-text-only {
        font-size: 16px;
        /* Taille réduite pour mobile */
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.6, 1, 0.29, 1);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 28px;
        font-weight: 600;
        color: #fff;
    }

    .nav-links .btn-reserve {
        font-size: 20px;
        padding: 15px 32px;
    }
}

/* ==========================================================================
   HERO SECTION (FINAL FIX)
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Légèrement plus clair pour voir l'image */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 560px;
    min-width: 0;
}

.hero-right {
    flex-shrink: 0;
    width: 340px;
    align-self: flex-end;
    margin-bottom: 64px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 50px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #ffffff !important;
    /* BLANC PUR */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9) !important;
    /* BLANC ECLATANT */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-badge span {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Events Section (Carrousel Horizontal) */
.events {
    padding: var(--section-padding);
    background-color: var(--bg-alt);
    overflow: hidden;
}

.events .section-header h2 {
    color: var(--text);
}

.events .section-header p {
    color: var(--text-muted);
}

.events .hero-badge {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--primary);
    /* L'orange par défaut pour la suite du texte */
    box-shadow: none;
}

.container-full {
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3);
}

.carousel-nav:hover {
    background-color: var(--primary-light);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
        /* Cache sur mobile, le swipe suffit */
    }
}

.events-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 40px 60px 40px;
    /* Padding latéral aligné sur le container */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Cache la barre sur Firefox */
}

.events-carousel::-webkit-scrollbar {
    display: none;
    /* Cache la barre sur Chrome/Safari */
}

.event-card-horizontal {
    position: relative;
    flex: 0 0 850px;
    /* Très large */
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.event-card-horizontal:hover {
    transform: scale(0.99);
}

.event-card-horizontal .card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.event-card-horizontal .card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card-horizontal:hover .card-bg img {
    transform: scale(1.05);
}

.event-card-horizontal .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-action-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 3;
    transition: transform 0.3s ease;
}

.event-card-horizontal:hover .card-action-btn {
    transform: rotate(45deg);
}

.event-card-horizontal .card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.event-card-horizontal .card-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.event-card-horizontal .card-content p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

@media (max-width: 992px) {
    .event-card-horizontal {
        flex: 0 0 85vw;
        height: 400px;
        padding: 32px;
    }

    .events-carousel {
        padding: 20px 20px 40px 20px;
    }
}

@media (max-width: 992px) {
    .events-grid-premium {
        grid-template-columns: 1fr;
    }

    .event-card-premium {
        height: 450px;
    }
}

/* CTA Section (Full Width) */
.cta-full {
    position: relative;
    padding: var(--section-padding);
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-badge {
    background: #fff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.cta-full h2 {
    font-size: clamp(30px, 4vw, 42px);
    /* Taille alignée sur les autres sections */
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-full p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

/* Premium Buttons - Plus Compacts */
.btn-white-premium {
    background: #fff;
    color: #171717;
    padding: 6px 6px 6px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.btn-white-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-icon-circle {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-premium {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 6px 6px 6px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-icon-circle-outline {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(30px, 4vw, 42px);
    /* Taille alignée sur les autres sections */
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.item-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.item-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 48px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-group label span {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

.btn-primary-full {
    background-color: var(--primary);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-full:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.2);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Stack inputs on mobile */
    }

    .contact-form-wrapper {
        padding: 32px;
    }
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 24px;
}

.brand-col p {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col p {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #737373;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #737373;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        width: 100%;
    }
}

/* Final Global Responsive Fixes */
img {
    max-width: 100%;
    height: auto;
}

.animate-up {
    opacity: 1;
    /* Ensure visibility if JS fails or on some mobile browsers */
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .animate-up {
        opacity: 0;
        transform: translateY(60px); /* Plus d'amplitude pour plus de fluidité */
        transition: opacity 1.4s cubic-bezier(0.2, 1, 0.2, 1),
                    transform 1.4s cubic-bezier(0.2, 1, 0.2, 1);
    }

    .animate-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-mini cite {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    font-style: normal;
}

.animate-delay {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* animate-up is driven by IntersectionObserver — see JS */

/* About Section */
.about {
    padding: 120px 0 160px 0;
    /* Plus de padding en bas pour éviter la coupure brute */
    background-color: var(--bg-alt);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.img-large {
    height: 580px;
}

.img-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 580px;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 45px);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 48px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .img-large,
    .img-stack {
        height: 400px;
    }
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-premium {
    position: relative;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.service-card-premium:hover {
    transform: scale(0.98);
}

.card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .card-bg img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.card-content p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 260px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-premium {
        height: 400px;
    }
}

/* ==========================================================================
   HERO SECTION (LIVOHAUS STYLE)
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=90') no-repeat center center/cover;
    color: #fff;
    padding: 0 5%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 750px;
    text-align: left;
}

.hero-content .hero-badge {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    font-size: 14px !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary) !important;
    border: none !important;
}

.hero-content h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff !important;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(17px, 1.2vw, 19px);
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 550px;
    text-align: left !important;
    margin-left: 0 !important;
}

/* Testimonial Card Refined */
.hero-testimonial {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 20px;
    max-width: 340px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    align-self: flex-end;
    transition: transform 0.3s ease;
}

.hero-testimonial .stars {
    color: #FF9500;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.hero-testimonial blockquote {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
    border: none;
    padding: 0;
    font-style: italic;
}

.hero-testimonial cite {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

@media (max-width: 992px) {
    .hero {
        padding: 0 20px;
        text-align: center;
    }

    .hero-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-content p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-testimonial {
        display: none;
    }
}
/* ============================================================
   MOBILE — 768px
   ============================================================ */
@media (max-width: 768px) {

    /* Hero */
    .hero { min-height: 560px; }
    .hero-content h1 { font-size: clamp(28px, 8vw, 40px); }
    .hero-content p { font-size: 16px !important; }

    /* About */
    .about-grid { gap: 40px; }
    .about-images { grid-template-columns: 1fr; }
    .img-large { height: 280px; }
    .img-stack { display: none; }
    .about-content h2 { font-size: clamp(24px, 6vw, 32px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Section headers */
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: clamp(24px, 6vw, 34px); }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card-premium { height: 300px; padding: 24px; }
    .card-content h3 { font-size: 20px; }

    /* Events carousel */
    .event-card-horizontal { flex: 0 0 88vw; height: 340px; padding: 28px 24px; }
    .event-card-horizontal .card-content h3 { font-size: 20px; }
    .events-carousel { padding: 16px 20px 40px; }

    /* CTA */
    .cta-full h2 { font-size: clamp(24px, 6vw, 32px); }
    .cta-full p { font-size: 15px; max-width: 100%; }
    .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
    .btn-white-premium, .btn-outline-premium { width: 100%; justify-content: center; }

    /* Contact */
    .contact-wrapper { gap: 40px; }
    .contact-info h2 { font-size: clamp(24px, 6vw, 32px); }
    .contact-info p { font-size: 16px; }
    .contact-form-wrapper { padding: 28px 20px; border-radius: 20px; }

    /* Footer */
    .footer { padding: 60px 0 32px; }
    .footer-legal { gap: 12px; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   SMALL PHONES — 480px
   ============================================================ */
@media (max-width: 480px) {
    .hero { min-height: 480px; }
    .hero-content h1 { font-size: clamp(26px, 9vw, 36px); }
    .stats-grid { grid-template-columns: 1fr; }
    .service-card-premium { height: 260px; }
    .event-card-horizontal { flex: 0 0 92vw; height: 300px; padding: 20px; }
    .cta-full { padding: 60px 0; }
    .contact-form-wrapper { padding: 20px 16px; }
    .contact-form { gap: 16px; }
    .footer-bottom { font-size: 12px; }
    .footer-legal { gap: 10px; }
}
