:root {
    --primary: #0066CC;
    --secondary: #003D7A;
    --accent: #FF6B35;
    --text-dark: #1A1A1A;
    --text-gray: #666;
    --bg-light: #F8F9FA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.demo-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.demo-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.plombier-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 48px;
    z-index: 999;
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text { display: flex; flex-direction: column; }
.logo-text strong { font-size: 20px; font-weight: 700; color: var(--primary); }
.logo-text small { font-size: 13px; color: var(--text-gray); }

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.contact-item svg { color: var(--primary); }
.contact-item a { color: var(--text-gray); text-decoration: none; transition: 0.3s; }
.contact-item a:hover { color: var(--primary); }

.contact-item.urgence {
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-item.urgence strong { color: var(--primary); font-size: 16px; }
.disponible { display: block; font-size: 12px; color: #999; }

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

.main-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    display: block;
    padding: 20px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
}

.main-menu li a:hover { color: var(--primary); }

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

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

.header-cta { display: flex; gap: 12px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--secondary); transform: translateY(-2px); }

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

.btn-urgence { background: var(--accent); color: white; }
.btn-urgence:hover { background: #FF5722; }

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

.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-container { max-width: 700px; padding: 0 20px; }

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-section .highlight { color: var(--accent); }

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.hero-cta { display: flex; gap: 16px; margin-bottom: 32px; }

.hero-features { display: flex; gap: 24px; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.feature-item svg { color: var(--accent); }

.services-section { padding: 80px 0; }

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p { font-size: 18px; color: var(--text-gray); }

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E0E0E0;
    transition: 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card.featured {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon { font-size: 48px; margin-bottom: 20px; }

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p { color: var(--text-gray); margin-bottom: 20px; }

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

.cta-section { padding: 80px 0; background: var(--bg-light); }

.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.cta-buttons { display: flex; justify-content: center; gap: 16px; }

.plombier-footer { background: var(--text-dark); color: white; }

.footer-main { padding: 60px 0 40px; }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo span { display: flex; flex-direction: column; }
.footer-logo strong { font-size: 20px; }
.footer-logo small { font-size: 13px; opacity: 0.7; }

.footer-about p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }

.footer-certif { display: flex; gap: 12px; }

.badge {
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.footer-column h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 12px; }

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

.footer-column ul li a:hover { color: white; }

.contact-info .info-item { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-info svg { flex-shrink: 0; opacity: 0.7; }
.contact-info strong { display: block; margin-bottom: 4px; }

.contact-info span,
.contact-info a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.urgence-text { color: var(--accent); }

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

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p { color: rgba(255,255,255,0.7); font-size: 14px; }

.legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin-top: 8px;
}

.legal-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.legal-links a:hover { color: white; }

.footer-credit { text-align: right; }
.footer-credit p { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-credit a { color: var(--accent); text-decoration: none; transition: 0.3s; }
.footer-credit a:hover { color: white; }

@media (max-width: 768px) {
    .header-top { flex-direction: column; gap: 16px; text-align: center; }
    .header-contact { flex-direction: column; }
    .main-menu { display: none; }
    .hero-section { height: 500px; }
    .hero-section h1 { font-size: 40px; }
    .hero-cta { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .footer-container { flex-direction: column; gap: 16px; text-align: center; }
    .footer-credit { text-align: center; }
}

/* ========================================
   PAGES SUPPLÉMENTAIRES
   ======================================== */

/* Page Services */
.services-page .page-header {
    background: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.services-page .page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.services-detail-section { padding: 80px 0; background: #F8F9FA; }

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 16px;
}

.service-detail.reverse { grid-template-columns: 1fr 1fr; }
.service-detail.reverse .service-detail-content { order: 2; }
.service-detail.reverse .service-detail-image { order: 1; }

.service-detail.featured {
    border: 3px solid #0066CC;
    position: relative;
}

.featured-star {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
}

.service-label {
    display: inline-block;
    padding: 6px 16px;
    background: #F8F9FA;
    color: #0066CC;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
}

.service-list li:before {
    content: "✓";
    color: #0066CC;
    font-weight: bold;
    margin-right: 12px;
}

.service-features {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.feature-badge {
    padding: 16px;
    background: #F8F9FA;
    border-radius: 8px;
    flex: 1;
}

.feature-badge strong {
    display: block;
    color: #0066CC;
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-badge span {
    font-size: 14px;
    color: #666;
}

.service-pricing {
    margin-top: 24px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 4px solid #0066CC;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #E0E0E0 0%, #F0F0F0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    min-height: 300px;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.member-initials {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin: 0 auto;
}

/* Page Réalisations */
.realisations-page .realisations-grid-section { padding: 80px 0; background: #F8F9FA; }

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.realisation-card-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.realisation-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.realisation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.realisation-image {
    position: relative;
    overflow: hidden;
}

.realisation-card .realisation-image { height: 250px; }
.realisation-card-large .realisation-image { height: 100%; min-height: 400px; }

.realisation-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    background: rgba(0,102,204,0.9);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.realisation-info { padding: 32px; }

.realisation-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.realisation-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.realisation-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.realisation-details h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.realisation-details ul {
    list-style: none;
}

.realisation-details ul li:before {
    content: "•";
    color: #0066CC;
    margin-right: 8px;
}

.realisation-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #E0E0E0;
}

.realisation-price {
    font-size: 18px;
    font-weight: 700;
    color: #0066CC;
}

.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #F8F9FA;
    padding: 32px;
    border-radius: 16px;
}

.stars {
    color: #FFB800;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #E0E0E0;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* Page À propos */
.about-story { padding: 80px 0; }

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

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values { padding: 80px 0; background: #F8F9FA; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-team { padding: 80px 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.member-role {
    display: block;
    color: #0066CC;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-certifications { padding: 80px 0; background: #F8F9FA; }

.certif-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.certif-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.certif-badge {
    width: 60px;
    height: 60px;
    background: #0066CC;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.certif-number {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

.about-zone { padding: 80px 0; }

.zone-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 32px 0;
}

.zone-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0066CC;
}

.zone-column ul {
    list-style: none;
}

.zone-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.zone-note {
    margin-top: 32px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
}

.about-numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 12px;
}

.number-card p {
    font-size: 16px;
    line-height: 1.4;
}

/* Page Contact */
.contact-page .page-header {
    background: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info-card .info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E0E0E0;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-card svg {
    flex-shrink: 0;
}

.horaires-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.horaires-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
}

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

.horaire-item.urgence {
    background: #FFF3CD;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.map-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.map-placeholder {
    height: 400px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #E0E0E0;
}

.map-note {
    font-size: 14px;
    color: #999;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .service-detail,
    .service-detail.reverse,
    .realisation-card-large,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .realisations-grid,
    .values-grid,
    .team-grid,
    .certif-grid,
    .zone-list,
    .numbers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .realisation-card-large {
        grid-column: span 1;
    }
}

/* ========================================
   HOMEPAGE ENRICHIE - STYLES ADDITIONNELS
   ======================================== */

/* Hero amélioré */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,102,204,0.85) 0%, rgba(0,61,122,0.9) 100%);
    z-index: 1;
}

.hero-text {
    max-width: 700px;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.7); }
    50% { box-shadow: 0 0 0 20px rgba(255,107,53,0); }
}

/* Urgence Banner Home */
.urgence-banner-home {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.urgence-content-home {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.urgence-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.urgence-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgence-icon-large svg {
    color: white;
}

.urgence-text h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.urgence-text p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    line-height: 1.6;
}

.urgence-text strong {
    color: white;
}

.btn-urgence-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 32px;
    background: white;
    color: #FF6B35;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-urgence-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.phone-number {
    font-size: 32px;
    font-weight: 800;
}

.phone-label {
    font-size: 13px;
    opacity: 0.8;
}

/* Services Grid Home */
.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-home {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E0E0E0;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card-home:hover {
    border-color: #0066CC;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,102,204,0.15);
}

.service-card-home.featured {
    border-color: #0066CC;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    box-shadow: 0 8px 24px rgba(0,102,204,0.12);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: #F0F7FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card-home h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.service-card-home > p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-quick-list {
    list-style: none;
    margin: 16px 0 20px;
    padding: 16px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.service-quick-list li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.service-quick-list li:before {
    content: "✓";
    color: #0066CC;
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: #0066CC;
    margin: 16px 0;
}

.service-link-home {
    color: #0066CC;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    margin-top: auto;
}

.service-link-home:hover {
    gap: 12px;
}

/* Process Timeline */
.process-section-home {
    padding: 80px 0;
    background: #F8F9FA;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.step-content p {
    font-size: 15px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.step-duration {
    text-align: center;
    margin-top: 16px;
    padding: 8px 16px;
    background: #F0F7FF;
    color: #0066CC;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
}

.process-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0066CC 0%, #003D7A 100%);
    position: relative;
}

.process-connector:after {
    content: "→";
    position: absolute;
    right: -12px;
    top: -12px;
    color: #0066CC;
    font-size: 24px;
    font-weight: bold;
}

/* Realisations Home */
.realisations-section-home {
    padding: 80px 0;
    background: white;
}

.realisations-grid-home {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.realisation-large {
    grid-row: span 2;
}

.realisation-card-home {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.realisation-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.realisation-large {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.realisation-image-home {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
}

.realisation-large .realisation-image-home {
    min-height: 350px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.realisation-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.realisation-card-home:hover .realisation-image-home img {
    transform: scale(1.05);
}

.realisation-info-home {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.realisation-info-home h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.realisation-meta-home {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.realisation-info-home > p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.realisation-footer-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E0E0E0;
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: #0066CC;
}

.real-link {
    color: #0066CC;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.real-link:hover {
    gap: 8px;
}

/* Testimonials Home */
.testimonials-section-home {
    padding: 80px 0;
    background: #F8F9FA;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card-home {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.testimonial-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-home {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid #E0E0E0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: #666;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: #F8F9FA;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.why-card:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Final */
.cta-section-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066CC 0%, #003D7A 100%);
}

.cta-box {
    background: rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-content-final {
    text-align: center;
    color: white;
}

.cta-content-final h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content-final > p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons-final {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-buttons-final .btn-primary {
    background: white;
    color: #0066CC;
}

.cta-buttons-final .btn-primary:hover {
    background: #F0F7FF;
}

.cta-buttons-final .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-buttons-final .btn-secondary:hover {
    background: white;
    color: #0066CC;
}

.cta-note {
    font-size: 15px;
    opacity: 0.9;
}

/* Responsive Home */
@media (max-width: 1200px) {
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-connector {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .urgence-content-home {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .urgence-left {
        flex-direction: column;
    }
    
    .services-grid-home,
    .realisations-grid-home,
    .testimonials-slider,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .realisation-large {
        grid-row: span 1;
    }
    
    .cta-buttons-final {
        flex-direction: column;
    }
    
    .cta-box {
        padding: 32px 24px;
    }
    
    .cta-content-final h2 {
        font-size: 32px;
    }
}

/* ========================================
   PAGE URGENCE
   ======================================== */

.urgence-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.urgence-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.urgence-alert-icon {
    margin: 0 auto 32px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-urgence 2s infinite;
}

@keyframes pulse-urgence {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgence-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.urgence-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.urgence-cta-large {
    margin-bottom: 32px;
}

.btn-urgence-xl {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 32px 48px;
    background: white;
    color: #FF6B35;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.btn-urgence-xl:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.phone-label {
    font-size: 14px;
    opacity: 0.7;
}

.phone-number {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.phone-status {
    font-size: 14px;
    font-weight: 600;
}

.urgence-guarantees {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 12px 20px;
    border-radius: 24px;
    font-weight: 600;
}

.urgence-types {
    padding: 80px 0;
    background: #F8F9FA;
}

.urgence-types h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.urgence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.urgence-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.urgence-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.urgence-card-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.urgence-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.urgence-card p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.urgence-time {
    display: inline-block;
    padding: 8px 16px;
    background: #FFF3CD;
    color: #856404;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.urgence-process {
    padding: 80px 0;
}

.urgence-process h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
}

.process-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.process-steps-urgence {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-urgence {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number-urgence {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-urgence h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-urgence p {
    color: #666;
    margin-bottom: 12px;
}

.step-time {
    display: inline-block;
    padding: 6px 12px;
    background: #F0F7FF;
    color: #0066CC;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.step-arrow {
    font-size: 32px;
    color: #FF6B35;
    font-weight: bold;
}

.urgence-tarifs {
    padding: 80px 0;
    background: #F8F9FA;
}

.urgence-tarifs h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
}

.urgence-tarifs > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.tarif-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.tarif-card.highlighted {
    border: 3px solid #FF6B35;
    box-shadow: 0 8px 24px rgba(255,107,53,0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: #FF6B35;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tarif-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tarif-price {
    font-size: 48px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 16px;
}

.tarif-card p {
    color: #666;
    line-height: 1.6;
}

.tarif-note {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tarif-note p {
    margin-bottom: 12px;
}

.tarif-note p:last-child {
    margin-bottom: 0;
}

.urgence-zone {
    padding: 80px 0;
}

.urgence-zone h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
}

.urgence-zone > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.zone-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zone-info h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.zone-list-urgence {
    list-style: none;
    margin-bottom: 24px;
}

.zone-list-urgence li {
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
    font-size: 16px;
}

.zone-list-urgence li:before {
    content: "✓";
    color: #0066CC;
    font-weight: bold;
    margin-right: 12px;
}

.zone-rayon {
    padding: 20px;
    background: #F0F7FF;
    border-radius: 12px;
    border-left: 4px solid #0066CC;
}

.map-placeholder-urgence {
    height: 400px;
    background: linear-gradient(135deg, #F0F7FF 0%, #E0E0E0 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #0066CC;
}

.map-center {
    font-size: 48px;
    font-weight: 800;
    color: #0066CC;
    margin-bottom: 12px;
}

.map-radius {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.map-note {
    font-size: 14px;
    color: #999;
}

.urgence-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.final-cta-box {
    text-align: center;
    color: white;
}

.cta-icon-large {
    font-size: 80px;
    margin-bottom: 24px;
    animation: pulse-urgence 2s infinite;
}

.final-cta-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-box > p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 48px;
    background: white;
    color: #FF6B35;
    border-radius: 12px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: 0.3s;
    margin-bottom: 20px;
}

.btn-call-now:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.cta-disponibility {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .urgence-grid,
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-urgence {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .zone-map {
        grid-template-columns: 1fr;
    }
    
    .urgence-hero-content h1 {
        font-size: 36px;
    }
    
    .phone-number {
        font-size: 28px;
    }
}
