/* ========================================================================== */
/*  styles.css (fusion)                                                       */
/*  - Priorité conservée : styles.css (base)                                  */
/*  - realisations.css : doublons supprimés (variables/reset/header/footer/cta */
/*    déjà présents), on garde seulement les parties spécifiques :             */
/*    page-hero, filtres, réalisations grid, testimonials, lightbox            */
/*  - + Ajout du hero-2 "image en fond + texte dessus" (45vh)                 */
/* ========================================================================== */

/* === CSS Variables === */
:root {
    --background: #FAF9F6;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --primary: #1a1a1a;
    --primary-foreground: #FAF9F6;
    --secondary: #f5f4f0;
    --secondary-foreground: #1a1a1a;
    --muted: #e8e6e1;
    --muted-foreground: #6b6b6b;
    --accent: #8B7355;
    --accent-foreground: #ffffff;
    --border: #ddd9d0;
    --radius: 0.5rem;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    /* utilisé sur certaines pages (réalisations/cta) */
    --gt-blue: #3294C9;
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === Utilities === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--foreground);
    text-wrap: balance;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header .section-description {
        margin: 0 auto;
    }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

    .btn-primary:hover {
        background-color: #333;
    }

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

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

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

    .btn-outline-light:hover {
        background-color: rgba(255,255,255,0.1);
    }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* (déjà utilisé par tes pages; garde-le si tu as des boutons secondaires) */
.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

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

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon img {
    width: 200px;
    height: auto;
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
}

.nav-desktop {
    display: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s ease;
}

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

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
}

    .mobile-menu.active {
        display: block;
    }

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-cta {
    margin-top: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* === Hero (Accueil) === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100% );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 1.5rem 4rem;
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

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

    .hero-buttons .btn-outline {
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

        .hero-buttons .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== HERO 2 : même rendu que l'accueil, mais plus bas ===== */
.hero-2 {
    min-height: 45vh; /* 45% de la hauteur de l'écran */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Image en background (pleine largeur / pleine hauteur) */
.hero-background-2 {
    position: absolute;
    inset: 0;
    background-image: url("Images/contactimg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay sur l'image */
.hero-2 .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100% );
    z-index: 1;
}

/* Le contenu passe au-dessus */
.hero-2 .hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 1.5rem 3rem; /* espace top pour le header fixed */
}

/* Optionnel : recentrer la largeur du texte */
.hero-2 .hero-text {
    max-width: 800px;
}

/* ===== HERO 3 : même rendu que l'accueil, mais plus bas ===== */
.hero-3 {
    min-height: 45vh; /* 45% de la hauteur de l'écran */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Image en background (pleine largeur / pleine hauteur) */
.hero-background-3 {
    position: absolute;
    inset: 0;
    background-image: url("Images/villa.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay sur l'image */
.hero-3 .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100% );
    z-index: 1;
}

/* Le contenu passe au-dessus */
.hero-3 .hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 1.5rem 3rem; /* espace top pour le header fixed */
}

/* Optionnel : recentrer la largeur du texte */
.hero-3 .hero-text {
    max-width: 800px;
}

/* ===== HERO 3 : texte lisible sur fond sombre/gris ===== */
.hero-3 .section-badge {
    color: #ffffff;
    background-color: rgba(255,255,255,0.12);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    display: inline-block;
}

.hero-3 .page-title {
    color: #ffffff;
}

.hero-3 .page-description {
    color: rgba(255,255,255,0.88);
}

.hero-3 .page-title,
.hero-3 .page-description,
.hero-3 .section-badge {
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}


/* === Services === */
.services {
    padding: 6rem 0;
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--accent);
    transition: gap 0.2s ease;
}

    .service-link:hover {
        gap: 0.75rem;
    }

/* === Stats === */
.stats {
    padding: 4rem 0;
    background-color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === About === */
.about {
    padding: 6rem 0;
    background-color: var(--secondary);
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.feature-icon {
    color: var(--accent);
    flex-shrink: 0;
}

/* === CTA (garde ton style historique : fond bleu) === */
.cta {
    padding: 6rem 0;
    background-color: var(--gt-blue);
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.cta .btn-primary {
    background-color: white;
    color: var(--gt-blue);
}

    .cta .btn-primary:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }

/* === Footer === */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--primary);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-nav a {
        font-size: 0.9375rem;
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.2s ease;
    }

        .footer-nav a:hover {
            color: white;
        }

.contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

    .contact-item svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .contact-item a {
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.2s ease;
    }

        .contact-item a:hover {
            color: white;
        }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

    .legal-links a {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.2s ease;
    }

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

/* ========================================================================== */
/*  AJOUTS "Contact" conservés (spécifiques)                                   */
/* ========================================================================== */

/* ===== Contact Section ===== */
.contact-section {
    padding: 4rem 1.5rem;
}

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

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 400px;
        gap: 4rem;
    }
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background-color: var(--card);
    border-radius: calc(var(--radius) * 2);
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: var(--muted-foreground);
    }

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    position: relative;
}

    .btn-submit.loading .btn-text {
        opacity: 0;
    }

    .btn-submit.loading::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        border: 2px solid var(--primary-foreground);
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

    .success-message.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-text {
    color: var(--muted-foreground);
}

/* ===== Contact Info & Hours ===== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card,
.hours-card {
    background-color: var(--card);
    border-radius: calc(var(--radius) * 2);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.info-title,
.hours-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .hours-title svg {
        color: var(--accent);
    }

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(139, 115, 85, 0.12);
    color: var(--accent);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

.info-value {
    font-size: 0.95rem;
    color: var(--foreground);
    line-height: 1.5;
}

.info-link {
    transition: color 0.2s ease;
}

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

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

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

.hours-day {
    font-weight: 500;
    font-size: 0.9rem;
}

.hours-time {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hours-appointment {
    color: var(--accent);
    font-weight: 500;
}

.hours-closed {
    color: #ef4444;
    font-weight: 500;
}

/* ===== Map Section ===== */
.map-section {
    padding: 4rem 1.5rem;
    background-color: var(--secondary);
}

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

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-description {
    color: var(--muted-foreground);
}

.map-wrapper {
    position: relative;
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (min-width: 768px) {
    .map-iframe {
        height: 450px;
    }
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

@media (min-width: 768px) {
    .map-overlay {
        right: auto;
        max-width: 320px;
    }
}

.map-address-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-address-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(139, 115, 85, 0.12);
    color: var(--accent);
    border-radius: var(--radius);
}

.map-address-content {
    flex: 1;
    min-width: 150px;
}

.map-address-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.map-address-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.btn-directions {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

/* ========================================================================== */
/*  AJOUTS "Réalisations" (depuis realisations.css, sans doublons)             */
/* ========================================================================== */

/* === Page Hero === */
.page-hero {
    padding: 10rem 0 4rem;
    background-color: var(--secondary);
    text-align: center;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === Filter Section === */
.filter-section {
    padding: 2rem 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 50;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--foreground);
}

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

    .filter-btn.active {
        background-color: var(--primary);
        color: var(--primary-foreground);
        border-color: var(--primary);
    }

/* === Réalisations Grid === */
.realisations {
    padding: 4rem 0;
    background-color: var(--background);
}

.realisations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .realisations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.realisation-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

    .realisation-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

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

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

.realisation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.realisation-card:hover .realisation-overlay {
    opacity: 1;
}

.realisation-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    background-color: var(--accent);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

.realisation-zoom {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    transition: background-color 0.2s ease;
}

    .realisation-zoom:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

.realisation-content {
    padding: 1.5rem;
}

.realisation-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.realisation-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

    .realisation-location svg {
        flex-shrink: 0;
    }

.realisation-description {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* === Load More === */
.load-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* === Testimonials === */
.testimonials {
    padding: 6rem 0;
    background-color: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--accent-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.author-project {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .lightbox.active {
        opacity: 1;
        visibility: visible;
    }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: white;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

    .lightbox-close:hover {
        opacity: 1;
    }

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}
