/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ===== VARIABLES CSS ===== */
:root {
    /* Couleurs principales */
    --primary-blue: #1F2D87;
    --primary-yellow: #FFF9DB;
    --light-gray: #DADADA;
    --dark-gray: #7A7A7A;
    
    /* Couleurs secondaires */
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    
    /* Espacements */
    --container-padding: 1rem;
    --section-padding: 4rem 0;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.header .container {
    max-width: none;
    width: 100%;
    padding: 20px 20px;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-yellow);
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #e6c725;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: #f4d52e;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #e6c725;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HEADER ===== */
.header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.header--scrolled {
    background-color: var(--primary-blue) !important;
    box-shadow: 0 2px 8px rgba(31,45,135,0.08) !important;
}

.header--solid {
    background-color: var(--primary-blue) !important;
    box-shadow: 0 2px 8px rgba(31,45,135,0.08) !important;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0 24px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
    padding-left: 0;
    margin-left: 0;
}

.logo-img {
    max-height: 65px;
    width: auto;
    height: auto;
    display: block;
    transition: max-height 0.3s ease;
}

.logo--scrolled .logo-img {
    max-height: 45px;
}

.logo-text {
    font-size: 1.625rem;
    font-weight: 700;
    color: #F4DC2B;
    line-height: 1.2;
    margin: 0;
    font-weight: 900 !important;
    text-shadow: 2px 2px 4px #000, 0 0 2px #000 !important;
    transition: font-size 0.3s ease;
}

.logo--scrolled .logo-text {
    font-size: 1.1375rem;
}

.nav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    padding-right: 0;
    margin-right: 0;
}

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

.nav-link {
    font-weight: 500;
    color: #fff;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
    font-weight: 900 !important;
    text-shadow: 2px 2px 4px #000, 0 0 2px #000 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #F4DC2B;
    font-weight: 900 !important;
    text-shadow: 2px 2px 4px #000, 0 0 2px #000 !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('../../images/hero.png') center center/cover no-repeat;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(31,45,135,0.35);
    z-index: 2;
}

.hero .container, .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px #000, 0 1px 2px #000;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 50vw;
    line-height: 1.7;
    text-shadow: 0 2px 8px #000, 0 1px 2px #000;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-content {
    background: none;
    border-radius: 0;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
    display: block;
    box-shadow: none;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.page-header {
    background-color: var(--primary-yellow);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Service cards with background images */
.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.service-card .service-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.service-content h3 {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.service-content p {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.service-content .btn {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.service-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    color: #e6c725;
    text-decoration: underline;
}

.service-card-keys {
    background-image: url('../images/key.png');
}

.service-card-shoes {
    background-image: url('../images/shoes.png');
}

.service-card-tampons {
    background-image: url('../images/tampon.png');
}

.service-card-photos {
    background-image: url('../images/passeport.png');
}

.service-card-gravure {
    background-image: url('../images/gravure.png');
}

.service-card-montres {
    background-image: url('../images/montre.png');
}

.service-card h3 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.service-card .btn {
    margin-top: 0;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: var(--section-padding);
    background-color: var(--primary-yellow);
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary-blue);
    margin-top: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3a9a 100%);
    color: var(--white);
    padding: var(--section-padding);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

/* ===== SERVICES PAGE ===== */
.services-nav {
    padding: 2rem 0;
    background-color: var(--primary-yellow);
}

/* ===== SERVICES VIDEO PAGE ===== */
#seq {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: -1;
}

.hero-yellow {
    background-color: transparent;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.hero-yellow .page-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-yellow .page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-yellow .services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-nav-left {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 150px;
    margin-bottom: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    height: auto;
}

.services-nav-left .service-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    white-space: nowrap;
}

.services-nav-left .service-nav-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.services-nav-left .service-nav-item img {
    width: 30px;
    height: 30px;
    margin: 0;
}

.services-nav-left .service-nav-item span {
    font-weight: 500;
    white-space: nowrap;
}

/* Services Video top nav override */
.services-video .services-nav-left {
    justify-content: center;
    align-items: center;
}

.services-video .services-nav-left .service-nav-item {
    background: transparent;
    border: 4px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 700;
    backdrop-filter: none;
}

.services-video .services-nav-left .service-nav-item span {
    font-weight: 700;
    text-transform: uppercase;
}

/* Icon colorization (approximate) */
.services-video .services-nav-left .service-nav-item img {
    filter: none; /* restore original icon look */
}

.services-video .services-nav-left .service-nav-item:hover {
    background: var(--primary-blue);
    color: var(--primary-yellow);
}

.services-video .services-nav-left .service-nav-item:hover img {
    filter: invert(84%) sepia(38%) saturate(532%) hue-rotate(355deg) brightness(103%) contrast(95%);
}

.hero-yellow .service-nav-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-yellow .service-nav-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.hero-yellow .service-nav-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.hero-yellow .service-nav-item span {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Ensure content sections have proper background for readability */
.service-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

.service-section-alt {
    background: transparent;
}

.service-section-right {
    background: transparent;
}

.service-section-right .service-content {
    justify-content: flex-end;
    text-align: right;
}

.service-section-right .service-text {
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

/* Forcer l'alignement pour les sections normales (gauche) */
.service-section:not(.service-section-right) .service-content {
    justify-content: flex-start;
    text-align: left;
}

.service-section:not(.service-section-right) .service-text {
    text-align: left;
    max-width: 600px;
    margin-right: auto;
    margin-left: 0;
}

/* Services Video Page specific styles */
.services-video .cta-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Services Video: increase paragraph font size */
.services-video p {
	font-size: 1.3em;
}

.footer {
    position: relative;
    z-index: 1;
}

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

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-blue);
}

.service-nav-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.service-section {
    padding: var(--section-padding);
}

.service-section-alt {
    background-color: transparent;
}

.service-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    min-height: 400px;
}

.service-text {
    flex: 1;
    max-width: 50%;
}

.service-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* Services Video: larger, uppercase service titles */
.services-video .service-text h2 {
    font-size: 4rem;
    text-transform: uppercase;
    line-height: 1.0;
    font-weight: 900;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: none;
}

.service-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Services Video: align feature badges to the right on right-aligned sections */
.services-video .service-section-right .service-features {
    justify-content: flex-end;
    width: 100%;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* Services Video: feature badges style */
.services-video .feature {
    background-color: var(--black);
    color: var(--primary-yellow);
    font-weight: 700;
    opacity: 0.5;
    box-shadow: none;
    transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.services-video .feature:hover {
    opacity: 1.0;
}

.service-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===== PARTNERS PAGE ===== */
.partners-intro {
    padding: 3rem 0;
    background-color: var(--primary-yellow);
    text-align: center;
}

.partners-grid {
    padding: var(--section-padding);
}

.partners-list {
    display: grid;
    gap: 3rem;
}

.partner-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.partner-card-alt {
    grid-template-columns: 1fr 200px;
}

.partner-card-alt .partner-logo {
    order: 2;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img {
    max-width: 100%;
    height: auto;
}

.partner-tagline {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.partner-products {
    margin-top: 1.5rem;
}

.partner-products h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.partner-products ul {
    list-style: none;
}

.partner-products li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.quality-commitment {
    padding: var(--section-padding);
    background-color: var(--primary-yellow);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: none;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.commitment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===== ABOUT PAGE ===== */
.story-section {
    padding: var(--section-padding);
}

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

.story-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.values-section {
    padding: var(--section-padding);
    background-color: var(--primary-yellow);
}

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

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-section {
    padding: var(--section-padding);
}

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

.team-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.local-commitment {
    padding: var(--section-padding);
    background-color: var(--primary-yellow);
}

.commitment-content {
    display: block;
}

.commitment-list {
    list-style: none;
    margin: 1.5rem 0;
}

.commitment-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.commitment-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.experience-section {
    padding: var(--section-padding);
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.experience-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== CONTACT PAGE ===== */
.contact-info {
    padding: var(--section-padding);
}

.contact-alternatives-section {
    padding: 30px;
}

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

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-blue);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.hours-list {
    text-align: left;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.no-appointment {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.services-list {
    list-style: none;
    text-align: left;
}

.services-list li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.map-section {
    padding: var(--section-padding);
    background-color: var(--primary-yellow);
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.map-info {
    text-align: center;
    color: var(--text-light);
}

.contact-form-section {
    padding: var(--section-padding);
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-alternatives {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--primary-yellow);
    border-radius: var(--border-radius);
}

.contact-alternatives h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-alternatives ul {
    list-style: none;
}

.contact-alternatives li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.faq-section {
    padding: var(--section-padding);
    background-color: var(--primary-yellow);
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ===== UTILITAIRES ===== */
.passport-flags {
    display: inline-block;
    font-size: 2em;
    line-height: 1.2;
}
.mobile-only {
    display: none;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } 

.page-header,
.hero,
.services-overview,
.partners-intro,
.story-section,
.contact-info {
    margin-top: 0;
    padding-top: 9rem;
    padding-bottom: 5rem;
} 