/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1B2B5E;
    --primary-dark: #0D1A3A;
    --secondary-color: #C4A35A;
    --accent-gold: #C4A35A;
    --accent-gold-light: #D4B87A;
    --text-dark: #1a1f2e;
    --text-light: #6b7280;
    --bg-light: #F7F6F2;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.10), 0 8px 16px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #1B2B5E 0%, #2D4A8E 100%);
    --gradient-overlay: linear-gradient(160deg, rgba(10, 18, 45, 0.75) 0%, rgba(27, 43, 94, 0.60) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 120px;
    /* Dégradé vertical blanc → transparent par défaut (carrousel visible sous le bas du header) ; surchargé par JS au scroll */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 1) 18%, 
        rgba(255, 255, 255, 0.98) 20%, 
        rgba(255, 255, 255, 0.95) 23%, 
        rgba(255, 255, 255, 0.90) 27%, 
        rgba(255, 255, 255, 0.83) 32%, 
        rgba(255, 255, 255, 0.75) 38%, 
        rgba(255, 255, 255, 0.65) 45%, 
        rgba(255, 255, 255, 0.54) 52%, 
        rgba(255, 255, 255, 0.43) 60%, 
        rgba(255, 255, 255, 0.32) 68%, 
        rgba(255, 255, 255, 0.22) 76%, 
        rgba(255, 255, 255, 0.14) 84%, 
        rgba(255, 255, 255, 0.08) 91%, 
        rgba(255, 255, 255, 0.04) 96%, 
        rgba(255, 255, 255, 0.01) 99%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 1000;
    transition: background 0.3s ease;
    overflow: visible;
}

/* Classe pour header opaque (appliquée via JavaScript) */
body .header.opaque,
.header.header.opaque {
    background: #ffffff !important;
    background-image: none !important;
}

/* Header opaque dès le premier rendu quand on charge avec #services, #contact ou #apropos */
html.header-opaque-on-load .header {
    background: #ffffff !important;
    background-image: none !important;
}

/* Styles spécifiques pour les pages avec header opaque blanc */
.achats-sensibles-page .header,
.aviation-affaire-page .header,
.accompagnement-global-page .header {
    background: #ffffff !important;
}

@media (max-width: 768px) {
    .achats-sensibles-page .header,
    .aviation-affaire-page .header,
    .accompagnement-global-page .header {
        background: #ffffff !important;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    min-height: 100%;
}

@media (max-width: 768px) {
    .nav {
        padding: 0.5rem 15px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.5rem 10px;
    }
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 2rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .logo {
        margin-left: 0;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    /* Centrer verticalement le texte dans le header */
    align-self: center;
    z-index: 1001;
}

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

.logo-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(13, 26, 58, 0.12));
    transition: all 0.3s ease;
    /* Ajustement proportionnel basé sur les dimensions du logo (200x115) - agrandi */
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    position: relative;
    /* Centrer verticalement le texte dans le header en compensant le dépassement de l'icône */
    transform: translateY(15px);
    z-index: 1001;
}

@media (max-width: 768px) {
    .logo-icon {
        height: 60px;
        transform: translateY(8px);
    }
}

@media (max-width: 480px) {
    .logo-icon {
        height: 50px;
        transform: translateY(5px);
    }
}

.logo-link:hover .logo-icon {
    filter: drop-shadow(0 4px 10px rgba(13, 26, 58, 0.2));
    transform: translateY(15px) rotate(-5deg);
}

@media (max-width: 768px) {
    .logo-link:hover .logo-icon {
        transform: translateY(8px) rotate(-5deg);
    }
}

@media (max-width: 480px) {
    .logo-link:hover .logo-icon {
        transform: translateY(5px) rotate(-5deg);
    }
}

@media (max-width: 360px) {
    .logo-link:hover .logo-icon {
        transform: translateY(3px) rotate(-5deg);
    }
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(50vh + 120px);
    min-height: calc(350px + 120px);
    max-height: calc(450px + 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 120px;
    overflow: hidden;
    background: transparent;
}

.hero-carousel {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    z-index: 0;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-vehicle-img {
    object-position: center 60%;
}

.hero-hotel-img {
    /* Légèrement abaissée pour mieux voir les personnages au fond
       tout en gardant la tête de l’homme à droite hors cadre */
    object-position: center 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    z-index: 2;
    cursor: pointer;
}

.hero-nav-left {
    left: 0;
}

.hero-nav-right {
    right: 0;
}

.hero-content {
    position: relative;
    z-index: 1001;
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: rgba(255, 255, 255, 0);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    box-shadow: none;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Bouton Envoyer du formulaire de contact */
.contact-form button[type="submit"] {
    width: auto;
    padding: 0.75rem 2rem;
    border: 1px solid var(--accent-gold);
    background: var(--primary-dark);
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    align-self: center;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 26, 58, 0.3);
    background: var(--primary-color);
    border-color: var(--accent-gold);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0.75rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    font-weight: 400;
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196, 163, 90, 0.3), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 360px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(196, 163, 90, 0.35);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aviation-affaire-img {
    object-position: center 85%;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.achats-sensibles-img {
    object-position: center 45%;
}

.service-card:hover .achats-sensibles-img {
    transform: scale(1.15);
}

.accompagnement-plus-global-img {
    object-position: center center;
    object-fit: cover;
}

.service-card:hover .accompagnement-plus-global-img {
    transform: scale(1.15);
}

.service-icon {
    display: none;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(26, 86, 219, 0.4);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.65rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding: 0 2.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    padding: 0 2.5rem 1.5rem;
    font-size: 1rem;
    flex: 1;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.load-more-btn {
    display: block;
    margin: 0 auto 2.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--accent-gold);
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: none;
    margin-top: auto;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 26, 58, 0.25);
}

/* About Section */
.about,
#apropos {
    scroll-margin-top: 80px; /* Alignement avec l'offset JS (80px) pour la navigation par ancre native */
    background: var(--bg-light);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.about-text .section-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

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

.about-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: calc((2.75rem * 1.2) + 1.5rem);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-text-content {
    position: relative;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text-visible {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease, margin-bottom 0.6s ease;
    margin-bottom: 0;
}

.about-text-hidden.expanded {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.about-text-hidden p {
    margin-bottom: 1.5rem;
}

.about-text-hidden p:last-child {
    margin-bottom: 0;
}

.show-more-btn,
.show-less-btn {
    display: inline-block;
    padding: 0;
    background: transparent;
    color: var(--accent-gold);
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 0.15rem;
    text-decoration: underline;
    text-decoration-color: rgba(196, 163, 90, 0.4);
    box-shadow: none;
    line-height: 1.5;
    vertical-align: baseline;
}

.show-less-btn {
    display: inline-block;
}

.show-more-btn:hover,
.show-less-btn:hover {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: none;
}

.show-more-btn:active,
.show-less-btn:active {
    transform: scale(1.05);
    box-shadow: none;
}

.show-more-btn.hidden,
.show-less-btn.hidden {
    display: none;
}

.inline-btn {
    display: inline-block;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Zones Section – intégrée comme bloc contenu, alignée sur l’identité visuelle */
.zones {
    background: var(--bg-light);
    padding: 5rem 0;
}

.zones-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.zones-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(196, 163, 90, 0.25);
}

/* Le bloc image est dans le flux : la carte prend sa taille, le cadre épouse l’image */
.zones-card-bg {
    position: relative;
    z-index: 0;
    display: block;
    line-height: 0;
}

.zones-card-bg img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    opacity: 0.32;
    pointer-events: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

/* Overlay texte positionné sur l’image, sans imposer de hauteur au cadre */
.zones-card-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
}

.zones-card-content .section-title {
    margin-top: -5.5rem;
    margin-bottom: 5rem;
    color: var(--text-dark);
}

.zones-text {
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
    margin-top: 4rem;
    font-weight: 500;
}

/* Zone d'intervention : même visuel sur téléphone (image entière + textes bien placés) */
@media (max-width: 768px) {
    .zones {
        padding: 3rem 0;
    }

    /* Conteneur avec hauteur suffisante pour l'image ET le texte overlay */
    .zones-card-bg {
        height: 72vh;
        min-height: 440px;
        max-height: 90vh;
    }

    .zones-card-bg img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .zones-card-content {
        padding: 2rem 1.5rem;
    }

    .zones-card-content .section-title {
        margin-top: -3.5rem;
        margin-bottom: 4rem;
    }

    .zones-text {
        font-size: 1rem;
        margin-top: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 360px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Section */
.contact,
#contact {
    scroll-margin-top: 120px; /* Titre "Contact" juste sous le header, visible en entier (aviation-affaire, achats-sensibles, accompagnement-global) */
    background: var(--white);
    padding: 3rem 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-dark);
    border: 1px solid rgba(196, 163, 90, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 26, 58, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.08);
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(196, 163, 90, 0.35);
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-gold);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item p a {
    color: inherit;
    text-decoration: none;
}

/* Images téléphone / email : même taille visuelle que le texte de l'adresse */
.contact-item .contact-info-img {
    height: 2em;
    width: auto;
    display: block;
    vertical-align: middle;
}

/* Aligner le C de "contact" avec le E de "Email" + légèrement plus grande */
.contact-item .contact-info-img-email {
    margin-left: -0.45em;
    height: 2.15em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

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

.form-group input,
.form-group textarea {
    padding: 1.125rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.12);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-group textarea {
    min-height: 100px;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .required,
.form-legal .required {
    color: #ef4444;
}

.form-group select {
    padding: 1.125rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.12);
    transform: translateY(-1px);
}

.form-group select:hover {
    border-color: #cbd5e1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
}

/* Groupe reCAPTCHA */
.recaptcha-group {
    margin-bottom: 1rem;
}
.recaptcha-group .recaptcha-legal {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted, #666);
}

/* Surbrillance discrète clignotante quand le consentement n'est pas coché */
.checkbox-group.consent-error,
.recaptcha-group.consent-error {
    width: fit-content;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    border-radius: 6px;
    animation: consent-blink 1.5s ease-in-out 1;
}

@keyframes consent-blink {
    0% {
        box-shadow: 0 0 12px 2px rgba(200, 80, 90, 0.35);
    }
    16.67% {
        box-shadow: none;
    }
    33.33% {
        box-shadow: 0 0 12px 2px rgba(200, 80, 90, 0.35);
    }
    50% {
        box-shadow: none;
    }
    66.67% {
        box-shadow: 0 0 12px 2px rgba(200, 80, 90, 0.35);
    }
    83.33% {
        box-shadow: none;
    }
    100% {
        box-shadow: none;
    }
}

.contact-form-wrapper {
    width: 100%;
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1rem;
}

.form-legal {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.form-legal:has(+ .form-legal) {
    margin-bottom: 0.05rem;
}

.form-legal + .form-legal {
    margin-top: 0.05rem;
}

.form-legal-security {
    margin-top: 0.5rem;
}

.link-inherit,
.link-inherit:hover,
.link-inherit:visited,
.link-inherit:focus {
    color: inherit;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

/* Legal Page (Mentions légales) */
.legal-page {
    padding-top: 120px;
    min-height: 100vh;
}

.legal-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content .legal-contact-img {
    max-width: 18em;
    height: auto;
    display: block;
    margin: 0.5rem 0;
    margin-left: -0.6em;
}

/* Image contact politique de confidentialité : rendu type texte (taille, interligne) */
.legal-content .legal-contact-img-inline {
    height: 3.2em;
    width: auto;
    max-width: 22em;
    display: block;
    margin: -0.55em 0 0.75em -0.15em;
    vertical-align: baseline;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 0 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.footer-logo .logo-icon {
    /* Mêmes dimensions que le logo du header */
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    /* Convertir le logo en blanc : d'abord en noir puis inversion en blanc */
    filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-section h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.25rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

/* Lien footer sans changement d'apparence (mentions légales, etc.) */
.footer-section ul li a.footer-link-plain,
.footer-section ul li a.footer-link-plain:hover,
.footer-section ul li a.footer-link-plain:visited {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Responsive Design – mêmes règles d’opacité du header (overlay) sur mobile que sur ordinateur */
@media (max-width: 768px) {
    body .header.opaque,
    .header.header.opaque {
        background: #ffffff !important;
        background-image: none !important;
    }

    html.header-opaque-on-load .header {
        background: #ffffff !important;
        background-image: none !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 5rem 0 2rem;
        height: 100vh;
        overflow-y: auto;
        z-index: 999;
        list-style: none;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        margin-right: 0;
        position: relative;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Masquer le titre et le bouton du hero (carrousel) quand le menu mobile est ouvert */
    body.menu-open .hero-content {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: visibility 0.2s ease, opacity 0.2s ease;
    }

    .hero {
        height: calc(45vh + 120px);
        min-height: calc(300px + 120px);
        max-height: calc(400px + 120px);
        margin-top: 0;
        padding-top: 120px;
    }
    
    .hero-carousel {
        top: -120px;
        height: calc(100% + 120px);
    }

    .hero-title {
        font-size: 2.2rem;
        padding: 0 1rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .service-image {
        height: 160px;
    }

    .service-card {
        padding: 0;
    }

    .service-card h3 {
        font-size: 1.3rem;
        padding: 0 1.5rem;
        margin-top: 1.5rem;
    }

    .service-card p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2.1rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }

    .contact-content {
        gap: 2rem;
    }
    
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        min-height: 280px;
        max-height: 400px;
        order: -1;
    }

    .footer-logo .logo-icon {
        height: 60px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    #contact {
        padding: 2.5rem 0;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: calc(40vh + 120px);
        min-height: calc(280px + 120px);
        max-height: calc(350px + 120px);
        margin-top: 0;
        padding-top: 120px;
    }
    
    .hero-carousel {
        top: -120px;
        height: calc(100% + 120px);
    }

    .hero-title {
        font-size: 1.75rem;
        padding: 0 0.75rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 0.75rem;
        word-wrap: break-word;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 0.75rem;
        margin-bottom: 2rem;
    }

    .service-image {
        height: 140px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        padding: 0 1rem;
        margin-top: 1.25rem;
        word-wrap: break-word;
    }

    .service-card p {
        padding: 0 1rem 1.25rem;
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    .load-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        margin: 0 auto 2rem;
        white-space: nowrap;
    }

    .about-image {
        min-height: 250px;
        max-height: 300px;
    }

    .about-text p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .stat h3 {
        font-size: 2.5rem;
    }

    .stat p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 2.5rem 0;
    }

    #contact {
        padding: 2rem 0;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        word-wrap: break-word;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group select {
        padding-right: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo .logo-icon {
        height: 50px;
    }
}

@media (max-width: 360px) {
    .logo-icon {
        height: 45px;
        transform: translateY(3px);
    }

    .nav {
        padding: 0.5rem 8px;
    }

    .container {
        padding: 0 8px;
    }

    .hero-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        padding: 0 0.75rem;
    }

    .service-card p {
        padding: 0 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .load-more-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 1.25rem 0.75rem;
    }

    .contact-item h4 {
        font-size: 0.95rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .form-group select {
        padding-right: 2.25rem;
    }
}

/* Service Detail Pages Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
    background: var(--text-dark);
}

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

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

/* Ajustement spécifique pour la page accompagnement-global */
.accompagnement-global-page .service-hero-image img {
    object-position: center 55%;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

/* Style spécifique pour la page achats-sensibles - même overlay que aviation-affaire */
.achats-sensibles-page .service-hero-overlay {
    background: var(--gradient-overlay);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.service-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease;
}

.service-hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 0.03em;
}

.service-details {
    background: var(--white);
    padding: 5rem 0;
}

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

.service-details-main h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.01em;
}

.service-details-main > p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: center;
}

.service-details-main h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-feature {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 163, 90, 0.3);
}

.service-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.service-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.service-benefits li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-benefits li:last-child {
    border-bottom: none;
}

.service-benefits li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 400;
    font-size: 1rem;
}

.service-benefits li strong {
    color: var(--text-dark);
}

.service-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.process-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-category {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

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

.service-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-category p {
    color: var(--text-light);
    line-height: 1.7;
}

.interventions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intervention-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.intervention-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.intervention-item:hover h4 {
    color: var(--accent-gold);
}

.intervention-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.intervention-item p .nowrap {
    white-space: nowrap;
}

.service-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 163, 90, 0.3);
}

.solution-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.solution-item ul {
    list-style: none;
    padding: 0;
}

.solution-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.solution-item ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 400;
    font-size: 1rem;
}

.service-cta {
    background: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.service-cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.service-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-cta .btn-primary {
    border-color: rgba(255, 255, 255, 0.6);
}

.service-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 1);
}

/* Responsive for service pages */
@media (max-width: 768px) {
    .service-hero {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-subtitle {
        font-size: 1.2rem;
    }

    .service-details-main h2 {
        font-size: 2rem;
    }

    .service-details-main h3 {
        font-size: 1.75rem;
    }

    .service-features,
    .service-categories,
    .service-solutions {
        grid-template-columns: 1fr;
    }

    .interventions-list {
        max-width: 100%;
    }

    .intervention-item {
        padding: 1rem 0;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

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

    .service-cta h2 {
        font-size: 2rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 16px 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 2px solid var(--accent-gold);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--accent-gold-light);
}

.btn-cookie-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cookie-accept:hover {
    background: var(--accent-gold-light);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-cookie-accept {
        width: 100%;
        text-align: center;
    }
}

