/* ================================
   BOC Informatique - Style CSS
   Élégance Deauville - Côte Fleurie
   Cabines de plage, planches, Art Déco
   ================================ */

/* Variables CSS - Palette Deauville */
:root {
    /* Couleurs Deauville - Élégantes et Marines */
    --deauville-navy: #1a2f4a;
    --deauville-blue: #2c4a6e;
    --deauville-light-blue: #5a8bb8;
    --deauville-sky: #87b5d6;
    
    /* Couleurs Plage & Sable */
    --sand-light: #f8f5f0;
    --sand: #e8dfd2;
    --sand-dark: #d4c5b0;
    --cream: #fdfbf7;
    
    /* Couleurs Accent - Style Cabines */
    --cabin-red: #c94a4a;
    --cabin-blue: #2c4a6e;
    --cabin-gold: #c9a227;
    --gold: #d4a847;
    --gold-light: #e8c76a;
    
    /* Couleurs Texte */
    --text-dark: #1a2f4a;
    --text-medium: #4a5d73;
    --text-light: #7a8a9a;
    --white: #ffffff;
    
    /* Dégradés */
    --gradient-sea: linear-gradient(135deg, #1a2f4a 0%, #2c4a6e 50%, #5a8bb8 100%);
    --gradient-sky: linear-gradient(180deg, #87b5d6 0%, #c9dae8 100%);
    --gradient-sand: linear-gradient(180deg, #f8f5f0 0%, #e8dfd2 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8c76a 100%);
    
    /* Ombres douces */
    --shadow-sm: 0 2px 8px rgba(26, 47, 74, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 47, 74, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 47, 74, 0.16);
    --shadow-xl: 0 24px 64px rgba(26, 47, 74, 0.2);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typographie */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espacements */
    --section-padding: 6rem;
    --container-max: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibilité - Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deauville-navy);
    color: var(--white);
    padding: 1rem 2rem;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
}

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

/* ================================
   TYPOGRAPHIE
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deauville-navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

ul { list-style: none; }
img { max-width: 100%; height: auto; }

em {
    font-style: italic;
    color: var(--deauville-light-blue);
}

strong { font-weight: 600; }

/* ================================
   HEADER & NAVIGATION
   Style Planches de Deauville
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 47, 74, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo Style Deauville */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deauville-navy);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu li a:hover {
    color: var(--deauville-navy);
}

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

.btn-nav {
    background: var(--deauville-navy) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--deauville-blue) !important;
    transform: translateY(-2px);
}

.btn-nav::after {
    display: none !important;
}

/* Burger Menu Mobile */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--deauville-navy);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   BOUTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--deauville-navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--deauville-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--deauville-navy);
    border: 2px solid var(--deauville-navy);
}

.btn-secondary:hover {
    background: var(--deauville-navy);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ================================
   HERO SECTION
   Inspiration Côte Fleurie
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, 
        var(--cream) 0%, 
        var(--sand-light) 50%,
        var(--deauville-sky) 100%
    );
    overflow: hidden;
}

/* Cabines de plage décoratives */
.hero-decoration {
    position: absolute;
    bottom: 120px;
    right: 5%;
    z-index: 1;
    pointer-events: none;
}

.beach-cabins {
    display: flex;
    gap: 8px;
    transform: perspective(500px) rotateY(-5deg);
}

.cabin {
    width: 35px;
    height: 50px;
    border-radius: 3px 3px 0 0;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.cabin::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -3px;
    right: -3px;
    height: 15px;
    background: inherit;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.cabin-1 { background: var(--cabin-red); }
.cabin-2 { background: var(--white); }
.cabin-3 { background: var(--deauville-blue); }
.cabin-4 { background: var(--gold); }
.cabin-5 { background: var(--cabin-red); }

/* Vagues en bas */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    color: var(--white);
    z-index: 2;
}

.hero-waves svg {
    width: 100%;
    height: 100%;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--deauville-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--cabin-red);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--deauville-navy);
}

.hero-location {
    display: block;
    color: var(--deauville-light-blue);
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Carte Prix Hero - Style Cabine */
.hero-price-card {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 280px;
    margin-left: auto;
    transform: rotate(2deg);
}

.price-stripes {
    height: 16px;
    background: repeating-linear-gradient(
        90deg,
        var(--cabin-red) 0px,
        var(--cabin-red) 20px,
        var(--white) 20px,
        var(--white) 40px
    );
}

.price-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--deauville-navy);
    line-height: 1;
}

.price-amount sup {
    font-size: 2rem;
    vertical-align: super;
}

.price-note {
    display: block;
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-top: 1rem;
    line-height: 1.4;
}

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--deauville-navy);
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--deauville-navy) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ================================
   SECTIONS COMMUNES
   ================================ */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sand);
    color: var(--deauville-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-badge.pro {
    background: var(--deauville-navy);
    color: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--deauville-navy);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ================================
   ZONE D'INTERVENTION
   ================================ */
.zone-section {
    background: var(--sand-light);
    position: relative;
}

.zone-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--deauville-navy) 0px,
        var(--deauville-navy) 40px,
        var(--white) 40px,
        var(--white) 80px,
        var(--cabin-red) 80px,
        var(--cabin-red) 120px,
        var(--white) 120px,
        var(--white) 160px
    );
}

.zone-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.zone-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
}

.zone-card.zone-primary {
    border-bottom-color: var(--deauville-navy);
}

.zone-card.zone-secondary {
    border-bottom-color: var(--gold);
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.zone-icon {
    font-size: 2.5rem;
    color: var(--deauville-light-blue);
    margin-bottom: 1rem;
}

.zone-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--deauville-navy);
}

.zone-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.zone-extras {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.zone-more {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

/* ================================
   SERVICES PARTICULIERS
   ================================ */
.services-section {
    background: var(--white);
}

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

.service-card {
    position: relative;
    background: var(--cream);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid var(--sand);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--deauville-navy);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card.featured {
    background: var(--deauville-navy);
    color: var(--white);
    border-color: var(--deauville-navy);
}

.service-card.featured::before {
    background: var(--gold);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-list li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.service-card.featured .service-list i {
    color: var(--gold);
}

.service-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--deauville-navy);
    padding: 0.4rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: rotate(45deg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--deauville-navy);
    flex-shrink: 0;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--deauville-navy);
    margin: 0;
}

.service-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.service-list i {
    color: var(--deauville-light-blue);
    font-size: 0.8rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sand);
}

.service-card.featured .service-price {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.price-tag {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--deauville-navy);
}

.service-card.featured .price-tag {
    color: var(--gold);
}

.price-info {
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-card.featured .price-info {
    color: rgba(255, 255, 255, 0.7);
}

/* Carte Ateliers Seniors */
.service-card.seniors {
    background: linear-gradient(135deg, #f8f5f0 0%, #e8dfd2 100%);
    border: 2px solid var(--gold);
}

.service-card.seniors::before {
    background: var(--gold);
}

.service-card.seniors .service-icon {
    background: var(--gold);
    color: var(--white);
}

.seniors-ribbon {
    background: var(--cabin-red) !important;
    color: var(--white) !important;
}

/* ================================
   SECTION TARIF
   ================================ */
.tarif-section {
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.tarif-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.tarif-content .section-title {
    text-align: left;
}

.tarif-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tarif-benefits {
    list-style: none;
}

.tarif-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.tarif-benefits i {
    color: var(--deauville-light-blue);
    font-size: 1.1rem;
}

/* Carte Tarif Style Cabine */
.tarif-card {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.tarif-stripes {
    display: flex;
    height: 20px;
}

.tarif-stripes span {
    flex: 1;
}

.tarif-stripes span:nth-child(1) { background: var(--cabin-red); }
.tarif-stripes span:nth-child(2) { background: var(--white); }
.tarif-stripes span:nth-child(3) { background: var(--deauville-navy); }
.tarif-stripes span:nth-child(4) { background: var(--white); }
.tarif-stripes span:nth-child(5) { background: var(--gold); }

.tarif-price {
    padding: 3rem 2rem 2rem;
}

.tarif-amount {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--deauville-navy);
    line-height: 1;
}

.tarif-amount sup {
    font-size: 2.5rem;
}

.tarif-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-top: 0.5rem;
}

.tarif-desc {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.tarif-card .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

/* ================================
   SERVICES PROFESSIONNELS
   ================================ */
.services-pro-section {
    background: var(--deauville-navy);
    position: relative;
}

.services-pro-section .section-title,
.services-pro-section .section-intro {
    color: var(--white);
}

.services-pro-section .section-intro strong {
    color: var(--gold);
}

.services-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-pro-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-pro-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.service-pro-card.featured {
    background: var(--white);
    border-color: var(--white);
}

.service-pro-card.featured h3,
.service-pro-card.featured p,
.service-pro-card.featured li {
    color: var(--deauville-navy);
}

.service-pro-card.featured .service-pro-icon {
    background: var(--sand);
    color: var(--deauville-navy);
}

.service-pro-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--deauville-navy);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-pro-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-pro-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-pro-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-pro-card ul {
    margin-bottom: 2rem;
}

.service-pro-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-pro-card li i {
    color: var(--gold);
    font-size: 0.85rem;
    width: 20px;
}

.btn-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.btn-pro:hover {
    border-bottom-color: var(--gold);
}

.service-pro-card.featured .btn-pro {
    color: var(--deauville-navy);
}

.service-pro-card.featured .btn-pro:hover {
    border-bottom-color: var(--deauville-navy);
}

/* ================================
   SECTION PIÈCES
   ================================ */
.pieces-section {
    background: var(--white);
}

.pieces-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pieces-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pieces-header > i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.pieces-card {
    text-align: center;
    padding: 2rem;
    background: var(--sand-light);
    border-radius: 8px;
    transition: var(--transition);
}

.pieces-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pieces-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--deauville-navy);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.pieces-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deauville-navy);
}

.pieces-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* ================================
   SECTION AVANTAGES
   ================================ */
.avantages-section {
    background: var(--sand-light);
}

.avantages-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.avantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.avantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.avantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--deauville-navy);
    margin: 0 auto 1.25rem;
}

.avantage-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--deauville-navy);
}

.avantage-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

/* ================================
   SECTION CONTACT
   ================================ */
.contact-section {
    background: var(--cream);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card.phone:hover { border-left: 3px solid var(--deauville-blue); }
.contact-card.whatsapp:hover { border-left: 3px solid #25D366; }
.contact-card.email:hover { border-left: 3px solid var(--gold); }
.contact-card.hours { border-left: 3px solid var(--sand-dark); }

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand-light);
    border-radius: 8px;
    font-size: 1.25rem;
    color: var(--deauville-navy);
    flex-shrink: 0;
}

.contact-card.whatsapp .contact-icon {
    background: #dcf8c6;
    color: #25D366;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deauville-navy);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--sand-light);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.contact-note i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.contact-note p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

/* Visual Contact - Villes */
.contact-visual {
    background: var(--deauville-navy);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.contact-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.contact-map-badge i {
    color: var(--gold);
}

.contact-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.contact-cities span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-cities span:hover {
    background: var(--gold);
    color: var(--deauville-navy);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--deauville-navy);
    color: var(--white);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--cream);
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--deauville-navy);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links li a:hover,
.footer-contact li a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    width: 16px;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

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

.footer-seo {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ================================
   ANIMATIONS
   ================================ */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-price-card {
        margin: 2rem auto 0;
        transform: rotate(0);
    }
    
    .hero-decoration {
        display: none;
    }
    
    .zone-cities {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-pro-grid,
    .pieces-grid,
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tarif-grid {
        grid-template-columns: 1fr;
    }
    
    .tarif-content {
        text-align: center;
    }
    
    .tarif-content .section-badge {
        display: inline-flex;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li a {
        font-size: 1.1rem;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .zone-cities,
    .services-grid,
    .services-pro-grid,
    .pieces-grid,
    .avantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-name {
        font-size: 1.5rem;
    }
    
    .hero-price-card {
        max-width: 100%;
    }
    
    .price-amount,
    .tarif-amount {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-decoration,
    .hero-waves,
    .scroll-indicator,
    .footer-wave {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
