/* ===== BASE STYLES ===== */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --gold: #BFA76F;
    --dark-gold: #9A8759;
    --light-gold: #D4C29D;
    --light-sand: #F8F6F0;
    --cream: #FAF7F2;
    --dark-charcoal: #1A1A1A;
    --medium-gray: #888888;
    --light-gray: #E0E0E0;
    --transition: all 0.4s ease;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Montserrat', sans-serif;
}

@media screen and (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    header {
        padding: 0.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .container {
        width: 92%;
    }
    
    .hero-content {
        padding: 0;
        width: 92%;
    }
    
    .scroll-hint {
        bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .testimonial-controls {
        gap: 0.8rem;
    }
    
    .booking-highlight-item {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .calendly-inline-widget {
        height: 500px;
    }
    
    .club-image {
        max-width: 90%;
    }
    
    .club-image:before {
        display: none;
    }
    
    .club-highlight {
        padding: 1.5rem;
    }
    
    .club-note {
        padding: 0.8rem;
    }
    
    .main-nav {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .footer-col .social-links a {
        font-size: 0.85rem;
    }
    
    .logo-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cta-content {
        padding: 2rem 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .overlay {
        background: linear-gradient(45deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    }
}

/* Fix for very small screens */
@media screen and (max-width: 375px) {
    .hero {
        min-height: 100vh;
        padding-top: 50px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .gallery-main img {
        height: 180px;
    }
    
    .gallery-side img {
        height: 160px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .calendly-inline-widget {
        height: 450px;
    }
    
    .footer-col .social-links a {
        font-size: 0.8rem;
    }
    
    .footer-col .social-links a i {
        width: 20px;
    }
    
    .btn-outline, .btn-gold, .btn-primary {
        padding: 0.7rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--white);
    overflow-x: hidden; /* Empêche le défilement horizontal */
}

body {
    font-family: var(--font-body);
    color: var(--dark-charcoal);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
    overflow-x: hidden; /* Empêche le défilement horizontal */
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 7rem 0;
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--light-gold);
    opacity: 0.3;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background-color: var(--gold);
    width: 0;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ===== TYPOGRAPHY ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.overline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 200;
    margin-bottom: 2rem;
    max-width: 800px;
}

.tag-line {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gold);
}

.section-header.light {
    color: var(--white);
}

.section-header.light .overline {
    color: var(--gold);
}

.image-caption {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 0.75rem;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn-outline {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--white);
    color: var(--black);
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline.light {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.btn-outline.light:hover {
    background-color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline.dark {
    background-color: transparent;
    border: 2px solid var(--dark-charcoal);
    color: var(--dark-charcoal);
}

.btn-outline.dark:hover {
    background-color: var(--dark-charcoal);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-primary {
    display: inline-block;
    background-color: var(--black);
    border: 2px solid var(--black);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: var(--black);
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--black);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-gold:hover {
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover:before {
    height: 100%;
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-charcoal);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.text-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.text-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

/* ===== SKIP TO CONTENT ACCESSIBILITY ===== */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
}

.skip-to-content:focus {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    padding: 1rem;
    background-color: var(--white);
    color: var(--black);
    outline: 3px solid var(--gold);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
    display: block;
    width: auto; /* Assure que la largeur s'adapte à la hauteur fixe */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--black);
    letter-spacing: 0.05em;
}

.menu-toggle {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* ===== MAIN NAV (SIDEBAR) ===== */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    padding: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.nav-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.nav-close {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.nav-close span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--black);
}

.nav-close span:first-child {
    transform: rotate(45deg);
}

.nav-close span:last-child {
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: auto;
}

.nav-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
    color: var(--black);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

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

.nav-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    padding-top: 80px; /* Ajustement pour le header fixe */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 8rem;
}

.left-side, .right-side {
    flex: 1;
}

.center-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
}

.center-divider:before, 
.center-divider:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
    transform: translateX(-50%);
}

.center-divider:before {
    top: 0;
}

.center-divider:after {
    bottom: 0;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.scroll-hint span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 20px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { top: 7px; opacity: 1; }
    70% { top: 20px; opacity: 0.7; }
    100% { top: 7px; opacity: 1; }
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--white);
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-bottom: 1px solid rgba(191, 167, 111, 0.1);
}

.about-main {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.about-image-gallery {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.gallery-main {
    flex: 3;
}

.gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-side {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-side img {
    width: 100%;
    height: calc(450px / 2 - 0.5rem);
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.about-text-content {
    flex: 1;
}

.process-steps {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.7;
    line-height: 1;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-wrapper {
    margin-top: 3rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--cream);
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-top: 1px solid rgba(191, 167, 111, 0.1);
    border-bottom: 1px solid rgba(191, 167, 111, 0.1);
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(191, 167, 111, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    border-radius: 4px;
}

.service-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(191, 167, 111, 0.05);
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--gold);
}

.service-card:hover:before {
    height: 100%;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.5;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== DUBAI SECTION ===== */
.dubai {
    background-color: var(--dark-charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-top: 1px solid rgba(191, 167, 111, 0.3);
    border-bottom: 1px solid rgba(191, 167, 111, 0.3);
}

.dubai:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 30px solid rgba(191, 167, 111, 0.1);
    border-radius: 50%;
}

.dubai-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dubai-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dubai-info .feature-text {
    color: var(--white);
}

.dubai-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ===== CLUB SECTION ===== */
.club {
    background: linear-gradient(to right, var(--light-sand) 0%, var(--cream) 100%);
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-top: 1px solid rgba(191, 167, 111, 0.1);
    border-bottom: 1px solid rgba(191, 167, 111, 0.1);
}

.club-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.club-highlight {
    background-color: var(--white);
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.club-highlight:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(191, 167, 111, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

.club-highlight p {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.club-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.club-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 4px;
}

.club-feature:hover {
    transform: translateX(5px);
    background-color: rgba(191, 167, 111, 0.05);
}

.club-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

.club-feature span {
    font-size: 0.9rem;
    font-weight: 400;
}

.club-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    padding: 1rem;
    border-left: 2px solid var(--light-gold);
    background-color: rgba(191, 167, 111, 0.05);
}

.club-cta {
    margin-top: 1.5rem;
}

.club-image {
    position: relative;
    max-width: 70%;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.club-image:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.club-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 85%, rgba(0,0,0,0.1));
}

.club-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.club-image:hover img {
    transform: scale(1.02) translate(-5px, -5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-top: 1px solid rgba(191, 167, 111, 0.1);
    border-bottom: 1px solid rgba(191, 167, 111, 0.1);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slides {
    position: relative;
    margin-bottom: 3rem;
}

.testimonial-slide {
    padding: 2rem;
    text-align: center;
    display: none;
    animation: fadeIn 0.8s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-quote:before,
.testimonial-quote:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: var(--gold);
}

.testimonial-quote:before {
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-quote:after {
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.control-prev,
.control-next {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--medium-gray);
    transition: var(--transition);
}

.control-prev:hover,
.control-next:hover {
    color: var(--gold);
}

.control-indicators {
    display: flex;
    gap: 0.8rem;
}

.indicator {
    width: 30px;
    height: 2px;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active,
.indicator:hover {
    background-color: var(--gold);
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-sand) 100%);
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-top: 1px solid rgba(191, 167, 111, 0.2);
}

.booking:before {
    content: '';
    position: absolute;
    top: 100px;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(191, 167, 111, 0.1);
    border-radius: 50%;
    transform: translateX(50%);
    z-index: 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-highlights {
    margin: 2rem 0;
}

.booking-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(191, 167, 111, 0.2);
    transition: all 0.3s ease;
}

.booking-highlight-item:hover {
    transform: translateX(5px);
}

.booking-highlight-item:last-child {
    border-bottom: none;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(191, 167, 111, 0.1);
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.booking-highlight-item:hover .highlight-icon {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.highlight-text h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.highlight-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.club-inquiry {
    background-color: rgba(191, 167, 111, 0.1);
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
    margin-top: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.club-inquiry p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
}

.club-inquiry p:before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -5px;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.5;
}

.calendly-wrapper {
    background-color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.calendly-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold), var(--light-gold));
}

.calendly-inline-widget {
    height: 650px;
    width: 100%;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    position: relative;
    padding: 0;
    height: 500px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.cta-content {
    text-align: center;
    color: var(--white);
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.dual-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-charcoal);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-footer img {
    height: 40px;
    width: auto;
}

.logo-footer .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.footer-cta {
    margin-bottom: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col .social-links a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: none;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--black);
    color: var(--gold);
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .about-main {
        flex-direction: column;
        gap: 3rem;
    }
    
    .club-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .club-image {
        max-width: 60%;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-text {
        font-size: 1.3rem;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
    }
    
    .gallery-main img {
        height: 350px;
    }
    
    .gallery-side img {
        height: calc(350px / 2 - 0.5rem);
    }
    
    .club-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .final-cta {
        height: auto;
        padding: 5rem 0;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    header {
        padding: 0.8rem 1rem;
    }
    
    .header-container {
        padding: 0;
    }
    
    .logo img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 500px;
        padding-top: 60px;
    }
    
    .split-layout {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }
    
    .center-divider {
        display: none;
    }
    
    .services-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-main img {
        height: 220px;
    }
    
    .gallery-side img {
        height: calc(220px / 2 - 0.5rem);
    }
    
    .process-step {
        align-items: flex-start;
    }
    
    .testimonial-controls {
        gap: 1.5rem;
    }
    
    .btn-outline, .btn-gold, .btn-primary {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .dual-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-text {
        font-size: 1.1rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .club-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .club-feature {
        padding: 0.5rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .calendly-inline-widget {
        height: 600px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-cta .btn-outline {
        width: 100%;
    }
    
    .about-image-gallery {
        flex-direction: column;
    }
    
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 35px;
        height: 35px;
    }
}