/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (AQUA LUXE / AÏGUY PISCINE PREMIUM)
   ========================================================================== */
:root {
    --primary: #f5f2eb;         /* Warm sandy beach/stone background */
    --secondary: #ffffff;       /* Pure white for cards */
    --navy-dark: #0f2d4a;       /* Elegant deep navy for typography and headers */
    --text-main: #2f3e4e;       /* Slate charcoal for body readability */
    --text-muted: #5e6f82;      /* Muted slate for subtext */
    
    --accent: #178396;          /* Turquoise/teal from the reference image */
    --accent-hover: #0e5e6c;
    --accent-light: rgba(23, 131, 150, 0.08);
    --accent-glow: #00d2ff;     /* Bright cyan for overlays and glowing elements */
    
    --border-color: rgba(15, 45, 74, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    --gradient-hero: linear-gradient(to right, rgba(15, 45, 74, 0.95) 0%, rgba(15, 45, 74, 0.7) 40%, rgba(15, 45, 74, 0.2) 75%, transparent 100%);
    --shadow-sm: 0 4px 10px rgba(15, 45, 74, 0.03);
    --shadow-md: 0 16px 36px rgba(15, 45, 74, 0.06);
    --shadow-lg: 0 24px 48px rgba(15, 45, 74, 0.12);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* ==========================================================================
   CLEAN RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-dark);
}

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

ul {
    list-style: none;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: #d4cfc3;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #edeae1; /* Slightly darker sand for contrast */
}

.text-center {
    text-align: center;
}

/* Sleek Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px; /* Fully rounded pill buttons like in the image */
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 131, 150, 0.25);
}

.btn-white {
    background: #ffffff;
    color: var(--navy-dark);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full-width {
    width: 100%;
}

/* Section Header Style */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy-dark);
}

.header-line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; /* Transparent header on page load for the full resort aesthetic */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

#main-header.scrolled,
#main-header.menu-open {
    padding: 10px 0;
    background: rgba(245, 242, 235, 0.98); /* Sandy glassmorphism on scroll, matches body bg */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 45, 74, 0.08);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130px; /* Sizable header height */
    transition: var(--transition-smooth);
}

#main-header.scrolled .header-container {
    height: 130px; /* Stays the same height on scroll for logo consistency */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px; /* Large, readable logo image */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* On transparent header (dark background): Invert colors to make dark text light grey/white, but rotate hue 180deg to restore the blue droplet to original blue */
#main-header:not(.scrolled):not(.menu-open) .logo-img {
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
}

/* On scrolled header (light sand background): show original dark grey + blue drop colors */
#main-header.scrolled .logo-img {
    height: 120px; /* Keeps exactly the same logo height on scroll */
    filter: none;
}

.footer-logo {
    height: 90px; /* Sizable logo image in footer (increased from 75px) */
    width: auto;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg) brightness(1.2); /* White text, blue droplet in dark footer */
    margin-bottom: 15px;
}

/* Navigation Links */
#main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

#main-nav a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85); /* White text in hero */
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

#main-header.scrolled #main-nav a {
    color: var(--text-main); /* Scrolled state: dark slate grey */
}

#main-nav a:hover,
#main-nav a.active {
    color: #ffffff;
}

#main-header.scrolled #main-nav a:hover,
#main-header.scrolled #main-nav a.active {
    color: var(--navy-dark); /* Scrolled state hover: dark navy */
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff; /* White line hover in hero */
    transition: var(--transition-fast);
}

#main-header.scrolled #main-nav a::after {
    background: var(--accent); /* Teal line hover on scrolled state */
}

#main-nav a:hover::after,
#main-nav a.active::after {
    width: 100%;
}

#main-nav .nav-cta {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 22px;
    font-size: 0.9rem;
}

#main-header.scrolled #main-nav .nav-cta {
    background: var(--accent);
    border: none;
    color: #ffffff;
}

#main-nav .nav-cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(23, 131, 150, 0.2);
}

#main-header.scrolled #main-nav .nav-cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(23, 131, 150, 0.2);
}

#main-nav .nav-cta::after {
    display: none;
}

/* Phone CTA in header */
.header-phone-cta {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

#main-header.scrolled .phone-link {
    color: var(--navy-dark);
    background: rgba(15, 45, 74, 0.04);
    border-color: rgba(15, 45, 74, 0.08);
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

#main-header.scrolled .phone-link:hover {
    background: rgba(15, 45, 74, 0.08);
    border-color: var(--accent);
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    transition: var(--transition-fast);
}

#main-header.scrolled .phone-icon {
    color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
    box-shadow: none;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-fast);
}

#main-header.scrolled .mobile-menu-toggle .bar,
#main-header.menu-open .mobile-menu-toggle .bar {
    background-color: var(--navy-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-image: url('assets/luxury_pool_canigou.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 720px;
}

.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-glow);
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 24px;
    display: inline-block;
    background: rgba(23, 131, 150, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(23, 131, 150, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

/* ==========================================================================
   PROMO FLOATING BANNER
   ========================================================================== */
#promo-banner-section {
    position: relative;
    z-index: 20;
    margin-top: -60px; /* Overlaps into hero like reference */
}

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 28px 44px;
    border-radius: 50px; /* Rounded pill container */
    box-shadow: var(--shadow-md);
    gap: 20px;
}

.promo-badge {
    background: var(--navy-dark);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.promo-text {
    font-size: 1.1rem;
    color: var(--navy-dark);
    flex-grow: 1;
}

.promo-text strong {
    color: var(--accent);
    font-size: 1.25rem;
}

.promo-date {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-left: 1px solid rgba(15, 45, 74, 0.1);
    padding-left: 24px;
    flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--secondary);
    border: 1px solid var(--border-color);
    border-radius: 30px; /* Match rounded cards from image */
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 131, 150, 0.2);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--navy-dark);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-light);
    color: var(--accent);
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
    text-transform: uppercase; /* Match uppercase style in screenshot */
    font-weight: 700;
}

.service-card p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Small tags in parenthesis */
.service-tags {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    display: block;
}

/* Card Button (En savoir +) */
.service-card .btn-card {
    margin-top: auto;
    background-color: var(--accent);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap; /* Prevents button text from wrapping */
}

.service-card:hover .btn-card {
    background-color: var(--accent-hover);
}

/* Wide card layout for service 7 */
.service-card-wide {
    grid-column: span 2;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 30px;
}

.service-card-wide .service-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card-wide h3 {
    margin-bottom: 8px;
}

.service-card-wide .card-content {
    flex-grow: 1;
}

/* Specific button rules for the wide card layout */
.service-card-wide .btn-card {
    margin-top: 0; /* Centered vertically in flex row */
    flex-shrink: 0; /* Prevents button from squishing */
}

/* ==========================================================================
   WHY CHOOSE US / TRUST SECTION (EXPERTISE REDESIGN)
   ========================================================================== */
.about-dark-theme {
    background: linear-gradient(180deg, #091b2c 0%, #0c263d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-dark-theme::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23, 131, 150, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-dark-theme .section-title {
    color: #ffffff;
}

.about-dark-theme .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.about-image-column {
    display: flex;
    flex-direction: column;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    background-color: #091b2c;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 27, 44, 0.85) 0%, rgba(9, 27, 44, 0.2) 50%, transparent 100%);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(12, 38, 61, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-badge .badge-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.about-image-badge .badge-text-wrapper {
    display: flex;
    flex-direction: column;
}

.about-image-badge .badge-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.2;
}

.about-image-badge .badge-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.about-cards-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.about-card-item {
    position: relative;
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.about-card-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    box-shadow: 0 16px 36px rgba(23, 131, 150, 0.18), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    opacity: 0.9;
    transition: var(--transition-smooth);
    user-select: none;
    pointer-events: none;
}

.about-card-item:hover .card-number {
    -webkit-text-stroke-color: var(--accent);
    opacity: 0.18;
    transform: translateY(-2px) scale(1.03);
}

.about-card-item .about-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-card-item .about-icon-box svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.about-card-item:hover .about-icon-box {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(23, 131, 150, 0.35);
    transform: scale(1.08);
}

.about-card-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.about-card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffffff;
    transition: var(--transition-fast);
}

.about-card-item:hover h4 {
    color: var(--accent-glow);
}

.about-card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   BOUTIQUE & MAPS SECTION
   ========================================================================== */
.boutique-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.boutique-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: var(--secondary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--navy-dark);
}

.info-card p {
    color: var(--text-main);
    font-size: 0.95rem;
}

.horaires-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
}

.horaire-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(15, 45, 74, 0.05);
    padding-bottom: 6px;
}

.horaire-row .jour {
    color: var(--navy-dark);
    font-weight: 600;
}

.horaire-row .heures {
    color: var(--text-main);
}

.horaire-row .saison-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-left: 4px;
}

.horaire-row .heures.ferme {
    color: #ef4444;
    font-weight: 700;
}

/* Maps Card Styling */
.boutique-visual-card {
    background-image: linear-gradient(135deg, rgba(15, 45, 74, 0.3) 0%, rgba(15, 45, 74, 0.6) 100%), url('assets/flyer.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.map-placeholder {
    text-align: center;
    padding: 30px;
    max-width: 330px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.map-placeholder h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
    color: var(--navy-dark);
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

.map-icon-pulse {
    width: 56px;
    height: 56px;
    background: rgba(23, 131, 150, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-icon-pulse::before {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

.map-icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.map-badge {
    display: inline-block;
    background: var(--primary);
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    color: var(--navy-dark);
    font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS / GOOGLE REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background-color: var(--secondary);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.15rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-main);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(23, 131, 150, 0.15);
}

.review-author h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--navy-dark);
}

.author-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-footer {
    display: flex;
    justify-content: center;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.rating-note {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy-dark);
}

.rating-stars {
    color: #fbbf24;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-left: 1px solid var(--border-color);
    padding-left: 12px;
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: var(--secondary);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--navy-dark);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8fa0b3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(23, 131, 150, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%230f2d4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

.form-status {
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

.btn-submit {
    width: 100%;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
#main-footer {
    background-color: var(--navy-dark);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0 0;
    color: rgba(255, 255, 255, 0.75);
}

#main-footer h4 {
    color: #ffffff;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 44px;
    width: auto;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 340px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact p {
    display: flex;
    gap: 8px;
}

.footer-contact a {
    color: #ffffff;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-container p {
    color: rgba(255, 255, 255, 0.5);
}

.legal-text {
    font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card-wide {
        grid-column: span 2;
    }
    .boutique-container {
        gap: 30px;
    }
}

/* Tablet Screens (768px - 991px) */
@media (max-width: 768px) {
    .header-container {
        height: 105px;
    }
    
    .logo-img,
    #main-header.scrolled .logo-img {
        height: 95px;
    }

    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation Menu on Mobile */
    #menu-toggle {
        display: flex;
    }
    
    #main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary);
        border-bottom: 1px solid var(--border-color);
        padding: 30px;
        display: none;
        box-shadow: var(--shadow-md);
    }
    
    #main-nav.active {
        display: block;
    }
    
    #main-nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    #main-nav a {
        display: block;
        text-align: center;
        font-size: 1.15rem;
        color: var(--navy-dark);
    }
    

    
    .header-phone-cta {
        display: none;
    }
    
    /* Hero */
    #hero {
        min-height: 85vh;
        padding-top: 130px;
        padding-bottom: 60px;
        text-align: left;
    }
    
    #promo-banner-section {
        margin-top: 0;
    }
    
    .hero-content {
        margin: 0;
    }
    
    .hero-tagline {
        font-size: 0.76rem;
        letter-spacing: 0.08em;
        padding: 5px 12px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 2.15rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    /* Promo Banner */
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        border-radius: 30px;
    }
    
    .promo-date {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(15, 45, 74, 0.1);
        padding-top: 15px;
        width: 100%;
    }
    
    /* Services & About grids */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-wide {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    
    .service-card-wide .service-icon-wrapper {
        margin: 0 auto 24px auto;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-wrapper {
        min-height: 360px;
    }
    
    .about-card-content {
        padding-right: 0;
    }
    
    /* Boutique */
    .boutique-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .boutique-visual-card {
        min-height: 320px;
    }
    
    .info-card {
        padding: 22px 18px;
        gap: 16px;
    }

    .horaire-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        padding-bottom: 8px;
    }

    .horaire-row .heures {
        padding-left: 12px;
        font-size: 0.95rem;
    }

    .horaire-row .saison-note {
        display: block;
        margin-left: 0;
        margin-top: 2px;
        font-size: 0.8rem;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Small Mobile Screens (below 480px) */
@media (max-width: 480px) {
    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   LEGAL MODAL STYLING (MENTIONS LÉGALES)
   ========================================================================== */
.legal-text a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.legal-text a:hover {
    color: #ffffff;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 27, 44, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--secondary);
    color: var(--navy-dark);
    max-width: 650px;
    width: 90%;
    max-height: 80vh;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-light);
    padding-bottom: 15px;
    color: var(--navy-dark);
}

.modal-body {
    overflow-y: auto;
    padding-right: 15px;
    text-align: left;
}

.modal-body h4 {
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    color: var(--navy-dark);
}

.modal-body h4:first-of-type {
    margin-top: 0;
}

.modal-body p {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 12px;
}

.modal-body strong {
    color: var(--navy-dark);
}

/* Custom Scrollbar for Modal Body */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: rgba(15, 45, 74, 0.05);
    border-radius: 3px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #d4cfc3;
    border-radius: 3px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
