/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs bois et tons doux */
    --primary-brown: #8B4513;
    --light-brown: #D2B48C;
    --dark-brown: #654321;
    --warm-beige: #F5F5DC;
    --soft-cream: #FFF8DC;
    --accent-orange: #CD853F;
    --text-dark: #3E2723;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-light: #E8E8E8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-brown);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon path:first-child {
    fill: var(--primary-brown);
}

.logo-icon path:last-child {
    fill: var(--dark-brown);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-brown);
}

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

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

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
    border-radius: 4px;
    margin: 4px;
}

.dropdown-menu a:hover {
    background: var(--warm-beige);
    color: var(--primary-brown);
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
}

.phone-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.feature svg {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
}

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

/* Hero form styles */
.hero-form {
    position: relative;
}

.form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border: 1px solid var(--border-light);
}

.form-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.quick-form .form-group {
    margin-bottom: 1rem;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.quick-form input::placeholder,
.quick-form textarea::placeholder {
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    margin-bottom: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-brown);
}

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

.btn-outline:hover {
    background: var(--primary-brown);
    color: var(--white);
}

/* Services section */
.services-overview {
    padding: 80px 0;
    background: var(--warm-beige);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-brown);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-brown);
}

/* About preview section */
.about-preview {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
}

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

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

/* Zone intervention */
.zone-intervention {
    padding: 80px 0;
    background: var(--warm-beige);
}

.zone-intervention h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.zone-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.zone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
}

.zone-card h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.zone-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.zone-card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.btn-zone {
    margin-top: 1rem;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* CTA section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-brown);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.footer-bottom {
    border-top: 1px solid var(--text-medium);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-form {
        order: -1;
    }
    
    .form-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
    }
    
    .zone-card:last-child {
        grid-column: 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.service-card:hover .service-icon {
    background: var(--primary-brown);
    color: var(--white);
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.phone-btn:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-section {
        display: none;
    }
    
    .hero {
        background: var(--white);
        color: var(--text-dark);
    }
}
/* Page hero styles */
/* ==============================================
   STYLES POUR LES PAGES DE SERVICES
   ============================================== */

/* Service hero section */
.service-hero {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    color: var(--white);
    padding: 120px 0 80px;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Service highlights */
.urgency-features,
.renovation-highlights,
.cleaning-highlights,
.zinguerie-highlights,
.charpente-highlights,
.ravalement-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.urgency-item,
.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.urgency-icon,
.highlight-icon {
    font-size: 1.5rem;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

/* Services overview section */
.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.service-detailed-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.service-detailed-card:nth-child(even) .service-image {
    order: 2;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Emergency types section */
.emergency-types,
.renovation-types,
.cleaning-services,
.zinguerie-services,
.charpente-services,
.ravalement-services {
    padding: 80px 0;
    background: var(--warm-beige);
}

.emergency-grid,
.renovation-grid,
.services-cleaning-grid,
.zinguerie-grid,
.charpente-grid,
.ravalement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.emergency-card,
.renovation-card,
.cleaning-service-card,
.zinguerie-card,
.charpente-card,
.ravalement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.emergency-card:hover,
.renovation-card:hover,
.cleaning-service-card:hover,
.zinguerie-card:hover,
.charpente-card:hover,
.ravalement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.emergency-icon,
.renovation-icon,
.zinguerie-icon,
.charpente-icon,
.ravalement-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-brown);
}

.emergency-icon svg,
.renovation-icon svg,
.zinguerie-icon svg,
.charpente-icon svg,
.ravalement-icon svg {
    width: 30px;
    height: 30px;
}

.emergency-card h3,
.renovation-card h3,
.cleaning-service-card h3,
.zinguerie-card h3,
.charpente-card h3,
.ravalement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.emergency-features,
.renovation-features,
.zinguerie-features,
.charpente-features,
.ravalement-features {
    list-style: none;
    margin-top: 1rem;
}

.emergency-features li,
.renovation-features li,
.zinguerie-features li,
.charpente-features li,
.ravalement-features li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.emergency-features li::before,
.renovation-features li::before,
.zinguerie-features li::before,
.charpente-features li::before,
.ravalement-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Process sections */
.intervention-process,
.renovation-process,
.cleaning-process,
.installation-process,
.charpente-process,
.ravalement-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps,
.process-timeline,
.installation-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step,
.timeline-item,
.installation-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number,
.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content,
.timeline-content {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 12px;
}

.step-content h3,
.timeline-content h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p,
.timeline-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul,
.timeline-content ul {
    list-style: none;
    margin: 0;
}

.step-content li,
.timeline-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.step-content li::before,
.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Pricing sections */
.pricing-emergency,
.cleaning-pricing {
    padding: 80px 0;
    background: var(--warm-beige);
}

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

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent-orange);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* Materials sections */
.materials-section,
.materials-zinguerie,
.wood-types,
.paint-types {
    padding: 80px 0;
    background: var(--white);
}

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

.material-card,
.wood-card,
.paint-card {
    background: var(--warm-beige);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.material-card:hover,
.wood-card:hover,
.paint-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.material-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-brown);
    color: var(--white);
}

.material-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.material-badge.premium {
    background: var(--accent-orange);
}

.material-badge.quality {
    background: var(--light-brown);
    color: var(--text-dark);
}

.material-badge.economique {
    background: var(--dark-brown);
}

.material-image,
.wood-image {
    height: 200px;
    overflow: hidden;
}

.material-image img,
.wood-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-content,
.wood-content,
.paint-card {
    padding: 1.5rem;
}

.material-content h3,
.wood-content h3,
.paint-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.material-pros h4 {
    color: var(--dark-brown);
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
}

.material-pros ul {
    list-style: none;
    margin: 0;
}

.material-pros li {
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.material-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.material-price,
.paint-price {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}

.wood-properties,
.paint-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.property,
.benefit {
    background: var(--soft-cream);
    color: var(--primary-brown);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Benefits sections */
.renovation-benefits,
.cleaning-benefits,
.ravalement-benefits {
    padding: 80px 0;
    background: var(--warm-beige);
}

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

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-brown);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-item h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Comparison sections */
.benefits-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
}

.comparison-column h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.comparison-list {
    list-style: none;
    margin: 0;
}

.comparison-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.comparison-list.negative li {
    color: #dc2626;
}

.comparison-list.positive li {
    color: #16a34a;
}

.comparison-list.negative li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-list.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Frequency sections */
.cleaning-frequency,
.ravalement-frequency {
    padding: 80px 0;
    background: var(--white);
}

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

.frequency-card {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.frequency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

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

.frequency-card h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.frequency-time {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.frequency-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.frequency-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.frequency-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
}

.frequency-period {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.frequency-content {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 12px;
}

.frequency-content h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.frequency-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.frequency-content ul {
    list-style: none;
    margin: 0;
}

.frequency-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.frequency-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Maintenance sections */
.maintenance-zinguerie,
.charpente-maintenance {
    padding: 80px 0;
    background: var(--warm-beige);
}

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

.maintenance-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

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

.maintenance-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.maintenance-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.maintenance-frequency {
    background: var(--soft-cream);
    color: var(--primary-brown);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
}

.maintenance-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
}

.maintenance-period {
    background: var(--primary-brown);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.maintenance-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
}

.maintenance-content h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.maintenance-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.maintenance-content ul {
    list-style: none;
    margin: 0;
}

.maintenance-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.maintenance-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Problems sections */
.zinguerie-problems,
.charpente-problems {
    padding: 80px 0;
    background: var(--white);
}

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

.problem-card {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.problem-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.problem-causes,
.problem-solution,
.problem-description {
    margin-bottom: 1.5rem;
}

.problem-causes h4,
.problem-solution h4 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.problem-description p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.problem-causes ul,
.problem-solution ul {
    list-style: none;
    margin: 0;
}

.problem-causes li,
.problem-solution li {
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.problem-causes li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #dc2626;
}

.problem-solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Gallery sections */
.renovation-gallery,
.cleaning-gallery,
.zinguerie-gallery,
.charpente-gallery,
.ravalement-gallery {
    padding: 80px 0;
    background: var(--warm-beige);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 69, 19, 0.9));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* Testimonials for service pages */
.testimonials-emergency,
.cleaning-testimonials,
.zinguerie-testimonials,
.charpente-testimonials,
.ravalement-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-service {
    display: block;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0.3rem;
}

/* CTA sections for services */
.cta-renovation,
.cta-cleaning,
.cta-zinguerie,
.cta-charpente,
.cta-ravalement {
    padding: 80px 0;
    background: var(--primary-brown);
    color: var(--white);
    text-align: center;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.guarantee-icon {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Why choose us section */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

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

.advantage-item {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-brown);
}

.advantage-icon svg {
    width: 30px;
    height: 30px;
}

.advantage-item h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Why cleaning section */
.why-cleaning {
    padding: 80px 0;
    background: var(--white);
}

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

.reason-card {
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-brown);
}

.reason-icon svg {
    width: 30px;
    height: 30px;
}

.reason-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Facade types section */
.facade-types {
    padding: 80px 0;
    background: var(--warm-beige);
}

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

.facade-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.facade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.facade-image {
    height: 200px;
    overflow: hidden;
}

.facade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facade-content {
    padding: 1.5rem;
}

.facade-content h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.facade-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.facade-treatments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.treatment {
    background: var(--soft-cream);
    color: var(--primary-brown);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Emergency contact section */
.emergency-contact {
    padding: 80px 0;
    background: #fee2e2;
    text-align: center;
}

.emergency-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 3px solid #dc2626;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.emergency-box h2 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.emergency-box p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.emergency-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

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

.emergency-info p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    font-size: 1rem;
}

.emergency-info strong {
    color: var(--primary-brown);
}

/* Responsive design for service pages */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .service-detailed-card {
        grid-template-columns: 1fr;
    }
    
    .service-detailed-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-detailed-card:nth-child(even) .service-image {
        order: 0;
    }
    
    .benefits-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .materials-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .urgency-features,
    .renovation-highlights,
    .cleaning-highlights,
    .zinguerie-highlights,
    .charpente-highlights,
    .ravalement-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .process-step,
    .timeline-item,
    .installation-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-number,
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .frequency-item,
    .maintenance-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .frequency-period,
    .maintenance-period {
        text-align: center;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .emergency-actions {
        gap: 1rem;
    }
    
    .pricing-grid,
    .materials-grid,
    .wood-grid,
    .paint-grid,
    .facade-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .emergency-box {
        padding: 2rem 1.5rem;
    }
    
    .emergency-box h2 {
        font-size: 1.5rem;
    }
    
    .service-content,
    .step-content,
    .timeline-content,
    .frequency-content,
    .maintenance-content {
        padding: 1.5rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
.page-hero {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About story section */
.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.story-text h3 {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin: 2rem 0 1rem;
}

.story-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

/* Expertise section */
.expertise {
    padding: 80px 0;
    background: var(--warm-beige);
}

.expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 3rem;
}

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

.expertise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--soft-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-brown);
}

.expertise-icon svg {
    width: 30px;
    height: 30px;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.expertise-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Team section */
.team {
    padding: 80px 0;
    background: var(--white);
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: var(--warm-beige);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-orange);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Certifications section */
.certifications {
    padding: 80px 0;
    background: var(--warm-beige);
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 3rem;
}

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

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
}

.cert-item h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Testimonials section */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 3rem;
}

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

.testimonial {
    background: var(--soft-cream);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.1);
}

.testimonial-content p {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: var(--primary-brown);
    font-weight: 600;
    text-align: right;
}

.seo-content {
    padding: 80px 0;
    background: var(--white);
}

.seo-content h2 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    text-align: center;
}

.seo-content h3 {
    font-size: 1.6rem;
    color: var(--dark-brown);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.seo-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.seo-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.seo-content ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.cta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.cta-inline .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}


/* Responsive design for qui-sommes-nous page */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-text h3 {
        font-size: 1.5rem;
    }
    
    .expertise-grid,
    .team-grid,
    .certifications-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
}