﻿/* ========== TOITURES DURAND - MAIN STYLESHEET ========== */

:root {
    --primary: #2C3E50;
    --primary-dark: #1A252F;
    --primary-light: #3D566E;
    --accent: #B85C38;
    --accent-dark: #8E4528;
    --accent-light: #D4845A;
    --text-dark: #1A1A1A;
    --text-gray: #5A5A5A;
    --text-light: #767676;
    --bg-light: #F5F1EC;
    --bg-warm: #FBF7F4;
    --bg-white: #FFFFFF;
    --border: #DDE3E8;
}

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

html { scroll-behavior: smooth; }
body { overflow-x: clip; }
img, svg, video, iframe { max-width: 100%; height: auto; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FAF7F2;
    background-image:
        radial-gradient(ellipse at 0% 0%,   rgba(184, 92, 56, 0.06), transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(44, 62, 80, 0.05), transparent 55%);
    background-attachment: fixed;
}

h1, h2, h3 { font-family: 'Merriweather', serif; }

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


/* ========== SKIP LINK ACCESSIBILITE ========== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }


/* ========== MASQUER FOOTER ASTRA PAR DÉFAUT (ceinture + bretelles) ========== */
.site-footer:not(.murart-footer),
footer.site-footer:not(.murart-footer),
.ast-footer-overlay,
.ast-small-footer,
.ast-small-footer-wrap,
.site-info,
.site-below-footer-wrap,
.site-above-footer-wrap,
.site-primary-footer-wrap,
#colophon:not(.murart-footer),
.footer-sml-layout-1,
.footer-sml-layout-2,
.footer-sml-layout-3 {
    display: none !important;
}
/* ========== DEMO BANNER (non sticky, discret) ========== */
.demo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: rgba(255,255,255,0.92);
    padding: 7px 20px;
    text-align: center;
    font-size: 12.5px;
}
.demo-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.demo-banner strong { color: white; }

/* ========== HEADER (compact, glass) ========== */
.murart-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(221, 227, 232, 0.6);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.murart-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

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

.header-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
    transition: padding 0.25s ease;
}
.murart-header.scrolled .header-row { padding: 10px 0; }

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    flex-shrink: 0;
}
.site-logo .logo-icon { flex-shrink: 0; transition: width 0.25s, height 0.25s; }
.murart-header.scrolled .site-logo .logo-icon { width: 32px; height: 32px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Merriweather', serif;
}
.logo-text small {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.4px;
}

/* Nav centrale */
.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.main-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    padding: 0;
    margin: 0;
}
.main-menu li a {
    display: block;
    padding: 9px 14px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14.5px;
    border-radius: 6px;
    transition: all 0.2s;
}
.main-menu li a:hover,
.main-menu li.current-menu-item a {
    color: var(--accent);
    background: rgba(184, 92, 56, 0.08);
}

/* Actions header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.header-phone svg { color: var(--accent); flex-shrink: 0; }
.header-phone:hover { color: var(--accent); }

.header-cta-btn {
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 8px;
}

/* Bouton burger mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
}

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

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

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

.btn-accent:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

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

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

.btn-white:hover {
    background: var(--bg-warm);
    transform: translateY(-1px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,37,47,0.9) 0%, rgba(44,62,80,0.7) 50%, rgba(184,92,56,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,92,56,0.2);
    border: 1px solid rgba(184,92,56,0.4);
    color: var(--accent-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

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

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

.section-header p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== SERVICES GRID HOME ========== */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.service-card-home {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid var(--border);
    position: relative;
}

.service-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-color: var(--accent-light);
}

.service-card-home.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(184, 92, 56, 0.15);
}

.service-card-home .featured-star {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card-home h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.service-card-home p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-quick-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.service-quick-list li {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

.service-price {
    font-weight: 700;
    color: var(--accent-dark);
    font-size: 15px;
    margin-bottom: 12px;
}

.service-link-home {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.service-link-home:hover { color: var(--accent-dark); }

.section-cta { text-align: center; margin-top: 32px; }

/* ========== PROCESS SECTION ========== */
.process-section-home {
    padding: 80px 0;
    background: white;
}

.process-timeline { max-width: 700px; margin: 0 auto; }

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.step-content h3 { font-size: 20px; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.step-content p { font-size: 15px; color: var(--text-gray); line-height: 1.6; margin-bottom: 8px; }

.step-duration {
    display: inline-block;
    background: var(--bg-warm);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.process-connector {
    width: 2px;
    height: 32px;
    background: var(--border);
    margin: 4px 0 4px 23px;
}

/* ========== REALISATIONS HOME ========== */
.realisations-section-home { padding: 80px 0; background: var(--bg-light); }

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

.realisation-card-home {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.realisation-card-home.realisation-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

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

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

.realisation-image-home .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
    z-index: 1;
}

.realisation-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.realisation-info-home { padding: 24px; }
.realisation-info-home h3 { font-size: 18px; margin-bottom: 8px; font-family: 'Inter', sans-serif; }

.realisation-meta-home {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.realisation-info-home p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

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

.price-tag { font-weight: 700; color: var(--accent-dark); }
.real-link { color: var(--accent); font-weight: 600; text-decoration: none; font-size: 14px; }
.real-link:hover { color: var(--accent-dark); }

/* ========== TESTIMONIALS ========== */
.testimonials-section-home { padding: 80px 0; background: white; }

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

.testimonial-card-home {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
}

.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testimonial-author-home { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info strong { display: block; font-size: 15px; }
.author-info span { font-size: 13px; color: var(--text-gray); }

/* ========== WHY US ========== */
.why-us-section { padding: 80px 0; background: var(--bg-light); }

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

.why-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

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

.why-icon { font-size: 32px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.why-card h3 { font-size: 18px; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.why-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* ========== CTA SECTION FINAL ========== */
.cta-section-final { padding: 80px 0; background: white; }

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.cta-content-final h2 { font-size: 36px; color: white; margin-bottom: 16px; }
.cta-content-final p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-buttons-final { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-note { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ========== CTA SECTION (PAGES) ========== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
}

.cta-content { text-align: center; }
.cta-content h2 { font-size: 32px; color: white; margin-bottom: 12px; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 48px 0;
    text-align: center;
}

.page-header h1 { font-size: 36px; color: white; margin-bottom: 8px; }
.page-header p { font-size: 17px; color: rgba(255,255,255,0.8); }

/* ========== SERVICES DETAIL PAGE ========== */
.services-detail-section { padding: 60px 0; }

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.service-detail:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
/* Layout reverse géré par la structure HTML : image-div en premier dans le DOM */

.service-detail.featured {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    margin-left: -20px;
    margin-right: -20px;
}

.service-detail .featured-star {
    position: absolute;
    top: -14px;
    left: 32px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-label {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.service-detail-content h2 { font-size: 28px; margin-bottom: 16px; color: var(--text-dark); }
.service-detail-content p { font-size: 16px; color: var(--text-gray); line-height: 1.7; margin-bottom: 16px; }
.service-detail-content h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; font-family: 'Inter', sans-serif; }

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

.service-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

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

.feature-badge {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
}

.feature-badge strong { display: block; font-size: 14px; color: var(--text-dark); }
.feature-badge span { font-size: 13px; color: var(--text-gray); }

.service-pricing {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.service-pricing p { font-size: 15px; margin: 0; }

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-detail-image img { width: 100%; height: auto; display: block; }

/* ========== REALISATIONS PAGE ========== */
.realisations-grid-section { padding: 60px 0; }

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

.realisation-card,
.realisation-card-large {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

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

.realisation-card-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.realisation-image { position: relative; overflow: hidden; min-height: 250px; }
.realisation-image img { width: 100%; height: 100%; object-fit: cover; }

.realisation-info { padding: 28px; }
.realisation-info h2 { font-size: 24px; margin-bottom: 12px; }
.realisation-info h3 { font-size: 20px; margin-bottom: 8px; font-family: 'Inter', sans-serif; }

.realisation-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.realisation-info p { font-size: 15px; color: var(--text-gray); line-height: 1.6; }

.realisation-details { margin-top: 16px; }
.realisation-details h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.realisation-details ul { list-style: none; }

.realisation-details li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-gray);
}

.realisation-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.realisation-footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.realisation-price { font-weight: 700; color: var(--accent-dark); font-size: 16px; }

/* Testimonials section on pages */
.testimonials-section { padding: 60px 0; background: var(--bg-light); }
.testimonials-section h2 { text-align: center; font-size: 32px; margin-bottom: 32px; }

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

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border);
}

.testimonial-card .stars { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text-dark); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 13px; color: var(--text-gray); }

/* ========== ABOUT PAGE ========== */
.about-story { padding: 60px 0; }

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

.about-text .section-label { margin-bottom: 8px; }
.about-text h2 { font-size: 32px; margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--text-gray); line-height: 1.7; margin-bottom: 16px; }

.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: auto; display: block; }

/* Values */
.about-values { padding: 60px 0; background: var(--bg-light); }

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

.value-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
}

.value-icon { font-size: 32px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.value-card h3 { font-size: 18px; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.value-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* Team */
.about-team { padding: 60px 0; }

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

.team-member {
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.member-photo { width: 80px; height: 80px; margin: 0 auto 16px; }

.member-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.team-member h3 { font-size: 18px; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.member-role { color: var(--accent); font-weight: 600; font-size: 14px; display: block; margin-bottom: 12px; }
.team-member p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* Certifications */
.about-certifications { padding: 60px 0; background: var(--bg-light); }

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

.certif-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
}

.certif-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.certif-card h3 { font-size: 16px; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.certif-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }
.certif-number { font-size: 12px; color: var(--text-light); display: block; margin-top: 8px; }

/* Zone */
.about-zone { padding: 60px 0; }
.zone-text .section-label { margin-bottom: 8px; }
.zone-text h2 { font-size: 32px; margin-bottom: 16px; }
.zone-text > p { font-size: 16px; color: var(--text-gray); margin-bottom: 24px; }

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

.zone-column h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.zone-column ul { list-style: none; }
.zone-column li { font-size: 14px; color: var(--text-gray); padding: 4px 0; }

.zone-note {
    font-size: 15px;
    color: var(--text-gray);
    background: var(--bg-warm);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Numbers */
.about-numbers {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

.number-card .number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-light);
    font-family: 'Merriweather', serif;
}

.number-card p { color: rgba(255,255,255,0.8); font-size: 15px; }

/* ========== MAP SECTION ========== */
.map-section { padding: 0 0 48px; }

.map-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-content h3 { font-size: 20px; margin-bottom: 8px; }
.map-content p { color: var(--text-gray); font-size: 15px; }
.map-note { color: var(--text-light); font-size: 13px; font-style: italic; margin-top: 8px; }

/* ========== FOOTER ========== */
.murart-footer { background: var(--primary-dark); color: white; }

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

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo strong { font-size: 18px; display: block; font-family: 'Merriweather', serif; }
.footer-logo small { font-size: 13px; opacity: 0.7; display: block; }

.footer-about p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 16px; }

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

.footer-certif .badge {
    background: rgba(184, 92, 56, 0.2);
    border: 1px solid rgba(184, 92, 56, 0.4);
    color: var(--accent-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.footer-column h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-column ul { list-style: none; }
.footer-column li { padding: 4px 0; }
.footer-column a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-column a:hover { color: var(--accent-light); }

.footer-contact .contact-info { display: flex; flex-direction: column; gap: 16px; }
.footer-contact .info-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .info-item svg { color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact .info-item strong { font-size: 14px; display: block; }
.footer-contact .info-item span { font-size: 13px; opacity: 0.7; display: block; }
.footer-contact .info-item a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.footer-contact .info-item a:hover { color: var(--accent-light); }

/* Footer SEO Bar */
.footer-seo-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    background: rgba(0,0,0,0.15);
}

.footer-seo-content {
    text-align: center;
}

.footer-seo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 6px 16px;
    border-radius: 6px;
}

.footer-seo-link:hover {
    color: var(--accent-light);
}

.footer-seo-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ========== SEO PAGE ========== */
.seo-article { padding: 60px 0; }

.seo-content {
    max-width: 780px;
    margin: 0 auto;
}

.seo-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.seo-section {
    margin-bottom: 40px;
}

.seo-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-section p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-highlight {
    background: var(--bg-warm);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.seo-highlight strong {
    color: var(--accent-dark);
    display: block;
    margin-bottom: 4px;
}

.seo-cta-section {
    margin-top: 48px;
}

.seo-cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-dark) 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.seo-cta-box h2 {
    font-size: 26px;
    color: white;
    margin-bottom: 16px;
}

.seo-cta-box p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.seo-nav-back {
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .seo-cta-box { padding: 32px 20px; }
    .seo-cta-box h2 { font-size: 22px; }
    .seo-cta-buttons { flex-direction: column; align-items: center; }
    .seo-section h2 { font-size: 20px; }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    background: var(--bg-light);
    transition: background 0.3s, color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] summary {
    color: var(--accent);
    background: var(--bg-warm);
}

.faq-answer {
    padding: 20px 24px;
    background: white;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item summary { font-size: 15px; padding: 16px 20px; }
    .faq-answer { padding: 16px 20px; }
}

/* ========== MOBILE STICKY CTA ========== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: white;
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.mobile-sticky-cta .sticky-buttons {
    display: flex;
    gap: 10px;
}

.mobile-sticky-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    .murart-footer { padding-bottom: 70px; }
}

/* ========== BREADCRUMBS ========== */
.breadcrumb-nav {
    padding: 12px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
}

.breadcrumb-list li { color: var(--text-light); }
.breadcrumb-list a { color: var(--text-gray); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-sep { margin: 0 4px; color: var(--text-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom .footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-legal { display: flex; align-items: center; gap: 20px; }
.footer-legal p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.legal-links { list-style: none; display: flex; gap: 16px; }
.legal-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; }
.legal-links a:hover { color: var(--accent-light); }
.footer-credit p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-credit a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-credit a:hover { color: var(--accent-light); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid-home { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .certif-grid { grid-template-columns: repeat(2, 1fr); }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .zone-list { grid-template-columns: repeat(2, 1fr); }
    .footer-main .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .mobile-menu-toggle { display: flex; flex-shrink: 0; }
    .site-logo { flex: 1 1 auto; min-width: 0; overflow: hidden; }
    .site-logo .logo-text { min-width: 0; overflow: hidden; }
    .site-logo .logo-text strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .header-actions { flex-shrink: 0; }
    .header-cta-btn { white-space: nowrap; flex-shrink: 0; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        display: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--border);
        z-index: 1000;
    }
    .site-nav.menu-open { display: block !important; }
    .main-menu { display: flex !important; flex-direction: column; gap: 0; width: 100%; }
    .main-menu li { width: 100%; }
    .main-menu li a {
        padding: 14px 20px;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }
    .main-menu li:last-child a { border-bottom: none; }
    .header-row { gap: 12px; padding: 10px 0; }
    .header-phone span { display: none; }
    .header-cta-btn { padding: 8px 14px; font-size: 13px; }
    .logo-text small { display: none; }
}

@media (max-width: 560px) {
    .header-phone { display: none; }
    .header-row { gap: 8px; }
    .header-container { padding: 0 14px; }
    .site-logo { gap: 8px; }
    .logo-text strong { font-size: 14px; }
    .header-cta-btn { padding: 7px 12px; font-size: 12.5px; }
    .mobile-menu-toggle { padding: 6px; }
}

@media (max-width: 380px) {
    .logo-text strong { font-size: 13px; }
    .logo-text small { display: none; }
    .site-logo .logo-icon { width: 30px; height: 30px; }
    .site-logo { gap: 6px; }
    .header-cta-btn { padding: 7px 9px; font-size: 11.5px; }
    .header-row { gap: 6px; }
}

@media (max-width: 768px) {

    .hero-text h1 { font-size: 30px; word-wrap: break-word; }
    .hero-text h1 .highlight { font-size: 26px; display: inline-block; }
    .hero-subtitle { font-size: 16px; }
    .hero-features { flex-direction: column; gap: 12px; }
    .hero-cta { flex-direction: column; }

    .services-grid-home { grid-template-columns: 1fr; }
    .realisations-grid-home, .realisations-grid { grid-template-columns: 1fr; }
    .realisation-card-home.realisation-large, .realisation-card-large { grid-template-columns: 1fr; }
    .testimonials-slider, .testimonials-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 28px; }
    .page-header h1 { font-size: 28px; }

    .service-detail { grid-template-columns: 1fr; gap: 24px; }
    .service-detail.featured { margin-left: 0; margin-right: 0; padding: 24px; }

    .about-content { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .certif-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .zone-list { grid-template-columns: 1fr 1fr; }

    .footer-main .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .footer-container { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { flex-direction: column; gap: 8px; }

    .cta-box { padding: 40px 24px; }
    .cta-content-final h2, .cta-content h2 { font-size: 26px; }
    .cta-buttons-final, .cta-buttons { flex-direction: column; align-items: center; }
}
