/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a962;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.header-contact {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.header-contact:hover {
    color: var(--secondary-color);
}

.header-contact .plus {
    font-size: 14px;
    font-weight: 400;
}

.logo h1, .logo .logo-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-a {
    color: #1a1a1a;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    margin: 0;
}

.desktop-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.desktop-nav a:hover {
    color: var(--secondary-color);
}

.menu-wrapper {
    position: relative;
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    padding: 10px 15px;
    font-family: inherit;
}

.menu-toggle:hover {
    opacity: 0.7;
}

.menu-icon {
    font-size: 20px;
    line-height: 1;
}

.menu-text {
    font-size: 13px;
    font-weight: 400;
}

/* Mobile Navigation */
.mobile-nav {
    display: none !important;
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    margin-top: 10px;
}

.mobile-nav.active {
    display: block !important;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none !important;
    padding: 15px 0;
    margin: 0;
}

.mobile-nav li {
    margin: 0;
    list-style: none !important;
}

.mobile-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
    display: block;
    padding: 12px 25px;
}

.mobile-nav a:hover {
    background: #f5f5f5;
    color: #8B7355;
}

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

.menu-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    padding: 10px 15px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
}

.menu-dropdown-toggle:hover {
    opacity: 0.7;
}

.menu-dropdown-toggle .menu-icon {
    font-size: 18px;
    line-height: 1;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: #fff;
    z-index: 1001;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    margin-top: 10px;
}

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

.menu-dropdown ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

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

.menu-dropdown a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
    display: block;
    padding: 12px 25px;
}

.menu-dropdown a:hover {
    background: #f5f5f5;
    color: #8B7355;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 60px);
    margin-top: 60px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.hero-buttons .btn-primary {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: none;
    transition: background 0.3s ease;
}

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

.hero-buttons .btn-secondary {
    background: #fff;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

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

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

.btn-full {
    width: 100%;
}

/* Section Title */
.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: #000;
    text-transform: uppercase;
}

/* Privileges Section */
.privileges {
    padding: 80px 40px;
    background: #f5f5f5;
}

.privileges-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.privileges-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.privileges-container::-webkit-scrollbar {
    display: none;
}

.privilege-card {
    flex: 0 0 280px;
    background: #fafafa;
    padding: 30px 25px;
    text-align: left;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.privilege-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.privilege-icon {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.privilege-icon i {
    font-size: 20px;
    color: #888;
}

.privilege-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
}

.privilege-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.slider-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    padding: 5px 10px;
    transition: color 0.3s;
}

.slider-arrow:hover {
    color: #666;
}

/* Imaginez Section */
.imaginez {
    padding: 80px 40px;
    background: #fff;
}

.imaginez-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.imaginez-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.imaginez-image {
    width: 100%;
    height: 100%;
}

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

.imaginez-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.imaginez-text {
    text-align: center;
    color: #1a1a1a;
    max-width: 400px;
}

.imaginez-text h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.imaginez-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.imaginez-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-dark {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-dark:hover {
    background: #333;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    padding: 12px 28px;
    border: 1px solid #1a1a1a;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
}


/* Découvrez Section */
.decouvrez {
    padding: 60px 40px 80px;
    background: var(--white);
    overflow: hidden;
}

.domino-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.domino-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    flex-shrink: 0;
}

.domino-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.domino-item:hover img {
    transform: scale(1.03);
}

/* Effet domino en descente - chaque image descend progressivement */
.domino-1 {
    width: 280px;
    height: 380px;
    margin-top: 0;
}

.domino-2 {
    width: 250px;
    height: 350px;
    margin-top: 70px;
}

.domino-3 {
    width: 280px;
    height: 320px;
    margin-top: 140px;
}

.domino-4 {
    width: 260px;
    height: 360px;
    margin-top: 210px;
}

/* Section Avantages - 4 cartes */
.avantages-section {
    padding: 80px 40px;
    background: var(--light-bg);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.avantage-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avantage-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.avantage-card .gradient-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.avantage-card .btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

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

/* Section Arrondissements */
.arrondissements-section {
    padding: 80px 40px;
    background: var(--white);
    text-align: center;
}

.arrondissements-section .section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.arrondissements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.arrondissement-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.arr-number {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.arrondissement-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.arrondissement-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.section-cta {
    margin-top: 50px;
}

.btn-outline-dark {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: transparent;
}

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

/* Section Accompagnement */
.accompagnement-section {
    padding: 100px 40px;
    background: var(--light-bg);
}

.accompagnement-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.accompagnement-image {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

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

.accompagnement-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.accompagnement-content .intro-text {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.accompagnement-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.accompagnement-points {
    margin: 35px 0;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.point-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
}

.point-text {
    font-size: 15px;
    color: var(--primary-color);
}

.accompagnement-content .btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

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

/* Services Section */
.services {
    padding: 80px 40px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
	background: var(--light-bg);
	padding: 40px 35px;
	border-radius: 20px;
	text-align: center; /* Centre les titres, phrases et liens pour un rendu plus équilibré */
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-location {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-link {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: transparent;
    margin-top: 10px;
}

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

/* Contact Section */
.contact {
    padding: 80px 40px;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-details i {
    color: var(--secondary-color);
    width: 20px;
}

.contact-hours {
    margin-top: 30px;
}

.contact-hours h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-hours p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 5px;
}

/* Form */
.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group textarea {
    border-radius: 25px;
}

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

.contact-form .btn-primary {
    border-radius: 50px;
    padding: 18px 45px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo h2 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

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

.footer-links h4,
.footer-social h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--white);
}

/* Arrondissements Footer List */
.arr-footer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.arr-footer-list li {
    margin-bottom: 0;
}

.arr-footer-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.arr-footer-list a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privileges-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .arrondissements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .domino-gallery {
        gap: 15px;
    }

    .domino-1 {
        width: 200px;
        height: 280px;
        margin-top: 0;
    }

    .domino-2 {
        width: 180px;
        height: 260px;
        margin-top: 30px;
    }

    .domino-3 {
        width: 200px;
        height: 240px;
        margin-top: 60px;
    }

    .domino-4 {
        width: 190px;
        height: 270px;
        margin-top: 90px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo h1, .logo .logo-title {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .header-contact {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .menu-wrapper {
        display: block;
    }

    .hero {
        height: 70vh;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .privileges-container,
    .services-grid,
    .avantages-grid,
    .arrondissements-grid,
    .accompagnement-container {
        grid-template-columns: 1fr;
    }

    .accompagnement-section {
        padding: 60px 20px;
    }

    .accompagnement-image {
        height: 300px;
    }

    .accompagnement-content h2 {
        font-size: 26px;
    }

    .avantage-card {
        padding: 30px 25px;
    }

    .decouvrez {
        padding: 40px 20px 60px;
    }

    .domino-gallery {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .domino-1, .domino-2, .domino-3, .domino-4 {
        width: calc(50% - 10px);
        height: 200px;
        margin-top: 0;
    }

    .domino-2 {
        margin-top: 20px;
    }

    .domino-4 {
        margin-top: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .slider-arrow {
        display: none;
    }
}

/* =====================================================
   PAGE DÉCOUVREZ PARIS
   ===================================================== */

/* Hero Paris - Image pleine largeur avec texte en bas */
.paris-hero-fullwidth {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.paris-hero-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.paris-hero-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    text-align: center;
}

.paris-hero-bottom-overlay h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Section Paris illuminé - 4 thématiques façon "capsules" */
.paris-festif {
	    padding: 60px 20px;
    background: #f5f2ee;
}

.paris-festif-inner {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
	gap: 22px;
	align-items: stretch;
}

.paris-festif-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
	min-height: 180px;
}

.paris-festif-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paris-festif-main-overlay {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 40%, transparent 100%);
    color: #fff;
}

.paris-festif-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.paris-festif-main-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
	    font-size: 26px;
    font-weight: 400;
    margin-bottom: 12px;
}

.paris-festif-main-overlay p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
}

/* Critères clients - rubriques avec emojis */
.paris-criteres {
	padding: 30px 20px 60px;
	background: #fff;
}

.paris-criteres-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.paris-criteres-title {
	text-align: left;
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 18px;
}

.paris-criteres-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.paris-critere-card {
	background: #f3f3f3;
	border-radius: 16px;
	padding: 16px 14px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.paris-critere-emoji {
	font-size: 22px;
	margin-bottom: 8px;
}

.paris-critere-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.paris-critere-icon i {
	font-size: 18px;
	color: #b8860b;
}

.paris-critere-card h3 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.paris-critere-card p {
	font-size: 11px;
	line-height: 1.6;
	color: #333;
}

/* Formulaire type SeLoger : reprise / nouvelle recherche */
.paris-formulaire {
	padding: 40px 20px 70px;
	background: #f5f2ee;
}

.paris-formulaire-inner {
	max-width: 960px;
	margin: 0 auto;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	padding: 26px 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.paris-formulaire-header {
	margin-bottom: 4px;
}

.paris-formulaire-header h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 6px;
}

.paris-formulaire-sub {
	font-size: 13px;
	color: #666;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.paris-formulaire-sub span + span::before {
	content: "•";
	color: #c0c0c0;
	margin: 0 6px 0 4px;
}

.paris-formulaire-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	width: 100%;
}

.paris-formulaire-btn {
	border-radius: 999px;
	padding: 12px 30px;
	font-size: 14px;
	border: 1px solid #000;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	flex: 1 1 220px;
}

.paris-formulaire-btn-primary {
	background: #e30613;
	border-color: #e30613;
	color: #fff;
}

.paris-formulaire-btn-secondary {
	background: #fff;
	color: #000;
	border-color: #d0d0d0;
}

@media (max-width: 768px) {
	.paris-formulaire-inner {
		padding: 20px 18px 18px;
		flex-direction: column;
		align-items: flex-start;
	}

	.paris-formulaire-actions {
		width: 100%;
	}

		.paris-formulaire-btn {
			flex: 1 1 100%;
		}
}

/* Formulaire d'inscription en 2 clics */
.paris-inscription {
	padding: 0 20px 60px;
	background: #f5f2ee;
}

.paris-inscription-inner {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	padding: 22px 32px 20px;
}

.paris-inscription-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 18px;
}

.paris-inscription-progress {
	width: 100%;
	height: 18px;
	border-radius: 999px;
	background: #f0f0f0;
	overflow: hidden;
	margin-bottom: 22px;
}


.paris-inscription-progress-bar {
	position: relative;
	height: 100%;
	width: 25%;
	background: #0b7a1b;
	transition: width 0.3s ease;
}

.paris-inscription-progress-bar span {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 11px;
	color: #fff;
	font-weight: 600;
}

.paris-inscription-form {
	display: block;
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.paris-inscription-step {
	display: none;
}

.paris-inscription-step.is-active {
	display: block;
}

.paris-inscription-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 22px;
}

.paris-inscription-field--full {
	grid-column: 1 / -1;
}

.paris-inscription-field label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.paris-inscription-field input {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #e8e8e8;
	background: #fafafa;
	padding: 10px 12px;
	font-size: 15px;
}

.paris-inscription-field input::placeholder {
	color: #d0d0d0;
}

.paris-inscription-field select {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #f7f7f7;
	padding: 10px 12px;
	font-size: 14px;
}

.paris-inscription-actions {
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.paris-inscription-prev {
	padding: 10px 24px;
	border-radius: 4px;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}

.paris-inscription-prev:hover {
	background: #f3f3f3;
}

.paris-inscription-btn {
	display: inline-block;
	padding: 12px 56px;
	border-radius: 4px;
	border: none;
	background: #0b7a1b;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.paris-inscription-btn:hover {
	background: #096617;
}

	/* Menus déroulants pour le projet (familles de critères) */
	.paris-projet-menus {
		margin-top: 6px;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.paris-projet-details {
		border-radius: 6px;
		border: 1px solid #ddd;
		background: #f7f7f7;
		padding: 8px 10px;
	}

	.paris-projet-details[open] {
		background: #fdfdfd;
	}

		.paris-projet-details summary {
			list-style: none;
			cursor: pointer;
			font-size: 14px;
			font-weight: 500;
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

		.paris-projet-details summary::after {
			content: '\25BE'; /* petite flèche vers le bas */
			font-size: 12px;
			color: #555;
			margin-left: 8px;
		}

		.paris-projet-details[open] summary::after {
			content: '\25B4'; /* flèche vers le haut quand ouvert */
		}

		.paris-projet-details summary::-webkit-details-marker {
			display: none;
		}

		.paris-projet-body {
			margin-top: 8px;
			font-size: 13px;
			display: flex;
			flex-direction: column;
			gap: 6px;
		}

	.paris-projet-inline {
		display: flex;
		gap: 8px;
	}

		.paris-projet-inline input {
			flex: 1 1 0;
			border-radius: 999px;
			border: 1px solid #ddd;
			padding: 8px 10px;
			font-size: 13px;
		}

		.paris-projet-checks {
			display: flex;
			flex-direction: column;
			gap: 8px;
			font-size: 13px;
			line-height: 1.4;
			margin-top: 10px;
		}

		.paris-projet-checks label {
			display: flex;
			align-items: center;
			gap: 10px;
			cursor: pointer;
		}

		.paris-projet-checks label input[type="checkbox"] {
			width: 18px;
			height: 18px;
			margin: 0;
			flex-shrink: 0;
			accent-color: var(--secondary-color);
		}

	.paris-projet-date span {
		font-size: 12px;
		margin-bottom: 2px;
		display: block;
	}

	.paris-projet-checkbox-inline {
			font-size: 13px;
		display: flex;
		align-items: flex-start;
		gap: 6px;
		margin-top: 4px;
	}

	.paris-projet-checkbox-inline input {
			margin-top: 2px;
			width: 18px;
			height: 18px;
	}

		/* Cases  e0 cocher plus grandes et validation verte pour le projet Paris */
		.paris-inscription-inner input[type="checkbox"] {
			width: 18px;
			height: 18px;
			accent-color: #0b7a1b;
		}

@media (max-width: 768px) {
	.paris-inscription-inner {
		padding: 22px 18px 22px;
	}

	.paris-inscription-grid {
		grid-template-columns: 1fr;
	}
}

/* Libellé commun pour les étapes 1 / 2 */
.paris-step-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #999;
	margin-bottom: 6px;
}

/* Barre de recherche principale (Acheter / Louer / Estimer) */
.paris-search {
	padding: 0 20px 40px;
	background: #f5f2ee;
}

.paris-search-inner {
	max-width: 960px;
	margin: 0 auto;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	padding: 18px 32px 22px;
}

.paris-search-tabs {
	display: flex;
	gap: 40px;
	border-bottom: 1px solid #eee;
	margin-bottom: 18px;
}

.paris-search-tab {
	background: none;
	border: none;
	padding: 10px 0 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: #666;
	cursor: default;
}

.paris-search-tab.is-active {
	color: #000;
	font-weight: 600;
	position: relative;
}

.paris-search-tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #e30613;
	border-radius: 999px;
}

.paris-search-location-input {
	margin-top: 4px;
	border-radius: 999px;
	border: 1px solid #ddd;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.paris-search-location-icon {
	font-size: 16px;
}

.paris-search-location-input input {
	border: none;
	outline: none;
	width: 100%;
	font-size: 14px;
}

@media (max-width: 768px) {
	.paris-search-inner {
		padding: 16px 18px 18px;
	}

	.paris-search-tabs {
		gap: 24px;
		overflow-x: auto;
	}
}

/* Filtres avancés */
.paris-filtres {
	padding: 0 20px 70px;
	background: #f5f2ee;
}

.paris-filtres-inner {
	max-width: 1080px;
	margin: 0 auto;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	padding: 26px 32px 24px;
}

.paris-filtres-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 18px;
}

.paris-filtres-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 28px;
}

.paris-filtres-block h3 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.paris-filtres-inline {
	display: flex;
	gap: 10px;
}

.paris-filtres-inline label {
	flex: 1 1 0;
	font-size: 12px;
}

.paris-filtres-inline span {
	display: block;
	margin-bottom: 4px;
}

.paris-filtres-inline input {
	width: 100%;
	border-radius: 999px;
	border: 1px solid #ddd;
	padding: 7px 10px;
	font-size: 13px;
}

.paris-filtres-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px 16px;
}

.paris-filtres-checks label,
.paris-filtres-checkbox-inline {
	font-size: 12px;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.paris-filtres-checks input,
.paris-filtres-checkbox-inline input {
	margin-top: 2px;
}

.paris-filtres-date span {
	font-size: 12px;
}

.paris-filtres-date-inputs {
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.paris-filtres-date-inputs input {
	width: 56px;
	border-radius: 999px;
	border: 1px solid #ddd;
	padding: 6px 8px;
	font-size: 12px;
	text-align: center;
}

.paris-filtres-block--full {
	grid-column: 1 / -1;
}

.paris-filtres-help {
	font-size: 11px;
	color: #666;
	margin-bottom: 6px;
}

.paris-filtres-classes {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.paris-filtres-classes label {
	font-size: 11px;
	border-radius: 999px;
	border: 1px solid #ddd;
	padding: 4px 10px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.paris-filtres-classes input {
	margin: 0;
}

.paris-filtres-keywords {
	width: 100%;
	border-radius: 12px;
	border: 1px solid #ddd;
	padding: 8px 10px;
	font-size: 13px;
}

.paris-filtres-cta {
	margin-top: 24px;
	display: flex;
	justify-content: flex-end;
}

.paris-filtres-btn-primary {
	border-radius: 999px;
	background: #e30613;
	color: #fff;
	border: none;
	padding: 12px 32px;
	font-size: 14px;
	cursor: pointer;
}

@media (max-width: 992px) {
	.paris-filtres-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.paris-filtres-inner {
		padding: 22px 18px 20px;
	}
}

.paris-festif-grid {
    display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
}

.paris-festif-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.paris-festif-photo img {
    width: 100%;
	height: 80px;
    object-fit: cover;
    display: block;
}

.paris-festif-body {
	padding: 10px 10px 9px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.paris-festif-icon {
	width: 30px;
	height: 30px;
    border-radius: 999px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 6px;
    color: #000;
}

.paris-festif-icon svg {
    width: 22px;
    height: 22px;
}

.paris-festif-tag {
	    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}

.paris-festif-card h3 {
    font-family: 'Cormorant Garamond', serif;
	font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.paris-festif-card p {
	font-size: 11px;
    line-height: 1.7;
    color: #000;
}

@media (max-width: 992px) {
    .paris-festif-inner {
        grid-template-columns: 1fr;
    }

    .paris-festif-grid {
        grid-template-columns: repeat(2, 1fr);
    }

	.paris-criteres-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
    .paris-festif {
        padding: 60px 16px;
    }

    .paris-festif-main-overlay {
        padding: 24px;
    }

    .paris-festif-main-overlay h2 {
        font-size: 24px;
    }

    .paris-festif-grid {
        grid-template-columns: 1fr;
    }

	.paris-criteres-grid {
		grid-template-columns: 1fr;
	}
}

/* Section Pourquoi Investir à Paris */
.paris-investir {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f6f3 0%, #eee9e3 100%);
    text-align: center;
}

.paris-investir-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 60px;
}

.paris-investir-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.paris-investir-card {
    flex: 0 1 280px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
}

.paris-investir-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: #000;
}

.paris-investir-icon svg {
    width: 100%;
    height: 100%;
}

.paris-investir-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    margin-bottom: 15px;
}

.paris-investir-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .paris-investir-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .paris-investir-grid {
        grid-template-columns: 1fr;
    }

    .paris-investir-title {
        font-size: 26px;
    }
}

/* Content Blocks - Image + Texte */
.content-block {
    padding: 80px 20px;
    background: #fff;
}

.content-block:nth-child(odd) {
    background: #faf9f7;
}

.content-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.content-block-reverse .content-block-inner {
    direction: rtl;
}

.content-block-reverse .content-block-inner > * {
    direction: ltr;
}

.content-block-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.content-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.content-block-image:hover img {
    transform: scale(1.03);
}

.content-block-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-block-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 18px;
}

.content-block-text p strong {
    color: #000;
    font-weight: 600;
}

.content-block-text p a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s;
}

.content-block-text p a:hover {
    color: #333;
}

/* Steps List */
.content-steps {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.content-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #000;
}

.content-steps li a {
    color: #000;
    text-decoration: underline;
}

.content-steps li a:hover {
    color: #333;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    min-width: 25px;
}

/* Button Content Block */
.btn-content-block {
    display: inline-block;
    padding: 16px 35px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-content-block:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Content Blocks */
@media (max-width: 992px) {
    .content-block-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-block-reverse .content-block-inner {
        direction: ltr;
    }

    .content-block-image img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .content-block {
        padding: 50px 20px;
    }

    .content-block-text h2 {
        font-size: 26px;
    }

    .content-block-image img {
        height: 280px;
    }
}

/* Paris Intro */
.paris-intro {
    padding: 60px 40px 100px;
    background: var(--white);
}

.paris-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.paris-intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-color);
    margin-top: 40px;
}

/* Arrondissements */
.arrondissements {
    padding: 100px 40px;
    background: var(--light-bg);
}

.arrondissements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.arr-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.arr-number {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.arr-card h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
}

.arr-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.7;
}

/* Why Paris */
.why-paris {
    padding: 100px 40px;
    background: var(--white);
}

.why-paris-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.why-card {
    text-align: center;
    padding: 30px;
}

.why-card i {
    font-size: 40px;
    color: #000;
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.7;
}

/* Paris Contact Form */
.paris-contact-form {
    padding: 80px 40px;
    background: #fff;
}

.paris-contact-form-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.paris-contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.paris-contact-form-left h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #222;
}

.paris-contact-form-left p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.paris-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 14px;
    text-decoration: none;
}

.paris-contact-email:hover {
    color: #b8860b;
}

.paris-contact-form-right {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.paris-contact-progress {
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.paris-contact-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #228B22, #32CD32);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    transition: width 0.3s ease;
}

.paris-contact-progress-bar span {
    font-size: 10px;
    color: #fff;
    font-weight: 600;
}

.paris-contact-step {
    display: none;
}

.paris-contact-step.is-active {
    display: block;
}

.paris-contact-field {
    margin-bottom: 20px;
}

.paris-contact-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.paris-contact-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.paris-contact-field input:focus {
    outline: none;
    border-color: #b8860b;
}

.paris-contact-field input::placeholder {
    color: #bbb;
}

.paris-contact-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.paris-contact-btn {
    background: #228B22;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.paris-contact-btn:hover {
    background: #1e7a1e;
}

@media (max-width: 768px) {
    .paris-contact-form {
        padding: 60px 20px;
    }

    .paris-contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .paris-contact-form-right {
        padding: 25px 20px;
    }
}

/* Paris FAQ */
.paris-faq {
    padding: 80px 40px 100px;
    background: #f5f2ee;
}

.paris-faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.paris-faq-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
}

.paris-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paris-faq-item {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.paris-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    list-style: none;
}

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

.paris-faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #b8860b;
    transition: transform 0.3s ease;
}

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

.paris-faq-item p {
    padding: 0 28px 22px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .paris-faq {
        padding: 60px 20px 80px;
    }

    .paris-faq-item summary {
        font-size: 15px;
        padding: 18px 20px;
    }

    .paris-faq-item p {
        padding: 0 20px 18px;
    }
}

/* Paris CTA */
.paris-cta {
    padding: 100px 40px;
    background: #000;
    text-align: center;
}

.paris-cta-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.paris-cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.paris-cta .btn-primary {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.paris-cta .btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* Logo link */
.logo a {
    text-decoration: none;
    color: inherit;
}

/* Products Page - Appartements à Paris */
.products-main {
    background: #fff;
}

.products-hero {
    padding: 120px 40px 80px;
    background: #fff;
}

.products-hero-no-image {
    padding: 60px 40px 80px;
}

.products-hero-no-image .products-hero-inner {
    display: block;
    max-width: 800px;
    text-align: center;
}

.products-hero-no-image .products-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-hero-no-image .products-tags {
    justify-content: center;
}

.products-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 60px;
    align-items: center;
}

.products-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.products-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.products-tag {
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-meta {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.products-hero-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

/* Filtres visuels */
.products-filters {
    padding: 40px 40px 60px;
    background: #f7f7f7;
}

.products-filters-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.filters-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.filters-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-pill {
    border-radius: 999px;
    border: 1px solid #000;
    background: #fff;
    padding: 8px 16px;
    font-size: 12px;
    cursor: default;
}

.filters-note {
    font-size: 13px;
    color: #000;
}

/* Grille produits */
.products-grid-section {
    padding: 80px 40px;
    background: #fff;
}

.products-grid-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.products-grid-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.products-grid-header p {
    font-size: 14px;
    line-height: 1.7;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fafafa;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e4e4e4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.product-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 22px 22px 24px;
}

.product-location {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-body h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.product-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.6;
}

.product-meta li + li {
    margin-top: 4px;
}

.product-link {
    font-size: 13px;
    text-decoration: underline;
}

/* Style de vie */
.products-lifestyle {
    padding: 80px 40px;
    background: #f7f7f7;
}

.products-lifestyle-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.products-lifestyle-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.products-lifestyle-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lifestyle-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    border: 1px solid #e4e4e4;
}

.lifestyle-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.lifestyle-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* Processus & CTA */
.products-process {
    padding: 80px 40px 60px;
    background: #fff;
}

.products-process-inner {
    max-width: 900px;
    margin: 0 auto;
}

.products-process-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.process-list li + li {
    margin-top: 8px;
}

.products-cta {
    padding: 80px 20px 100px;
    background: #000;
    text-align: center;
}

.products-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.products-cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.products-cta-inner p {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 25px;
}

/* Responsive produits */
@media (max-width: 1024px) {
    .products-hero {
        padding-top: 100px;
    }

    .products-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-hero-image {
        order: -1;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-hero,
    .products-grid-section,
    .products-lifestyle,
    .products-process {
        padding: 60px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-lifestyle-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Paris Page */
@media (max-width: 992px) {
    .arrondissements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-paris-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paris-hero-overlay h1 {
        font-size: 40px;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .paris-hero {
        height: 50vh;
    }

    .paris-hero-overlay h1 {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .paris-hero-overlay p {
        font-size: 16px;
    }

    .arrondissements-grid,
    .why-paris-grid {
        grid-template-columns: 1fr;
    }

    .paris-cta-content h2 {
        font-size: 26px;
    }
}

/* ========================================
   PAGE CONTACT
======================================== */

/* Contact Hero */
.contact-hero {
    margin-top: 60px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f2ee 0%, #fff 100%);
    text-align: center;
}

.contact-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 60px 40px 80px;
    background: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Contact Info */
.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--secondary-color);
    width: 25px;
    text-align: center;
    margin-top: 5px;
}

.contact-info-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Contact Form Page */
.contact-section .contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 25px;
}

.contact-section .contact-form h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-section .form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.contact-section .form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--secondary-color);
}

.form-checkbox label {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.contact-section .btn-primary {
    background: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

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

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-section {
        padding: 40px 20px 60px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section .contact-form {
        padding: 25px 20px;
    }
}

/* ========== ARRONDISSEMENTS ========== */

/* Hero Arrondissement */
.arr-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 60px;
}

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

.arr-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 40px 40px;
    color: white;
}

.arr-hero-overlay h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.arr-hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}

.arr-hero-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.arr-hero-buttons .btn-primary {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: none;
    transition: background 0.3s ease;
}

.arr-hero-buttons .btn-primary:hover {
    background: #333;
}

.arr-hero-buttons .btn-secondary {
    background: #fff;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.arr-hero-buttons .btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Présentation Arrondissement */
.arr-presentation {
    padding: 100px 40px;
    background: white;
}

.arr-presentation-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.arr-presentation-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.arr-presentation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.arr-presentation-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.arr-presentation-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 30px;
}

.arr-highlights {
    margin: 30px 0;
    padding: 20px 0;
}

.arr-highlight-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
}

.arr-highlight-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

/* Typologies */
.arr-typologies {
    padding: 100px 40px;
    background: #f5f2ee;
}

.arr-typologies-grid {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.arr-typology-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arr-typology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.arr-typology-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.arr-typology-card p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.arr-typology-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.arr-typology-link:hover {
    color: var(--primary-color);
}

/* Quartiers */
.arr-quartiers {
    padding: 100px 40px;
    background: white;
}

.arr-quartiers-grid {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.arr-quartier-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.arr-quartier-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.arr-quartier-card p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
}

/* Section Blocs Texte/Image */
.arr-blocks {
    padding: 80px 20px;
    background-color: var(--white);
}

.arr-block {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.arr-block-1 {
    grid-template-columns: 1fr 1fr;
}

.arr-block-2 {
    grid-template-columns: 1fr 1fr;
}

.arr-block-2 .arr-block-content {
    order: -1;
}

.arr-block-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.arr-block-content h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.arr-block-content p {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.arr-block-content p:last-of-type {
    margin-bottom: 25px;
}

.arr-block-content .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.arr-block-content .btn-primary:hover {
    background-color: var(--accent);
}

/* Section Explore Arrondissements */
.arr-explore {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.arr-explore-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.arr-explore-card {
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.arr-explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.arr-explore-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.arr-explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.arr-explore-content {
    padding: 25px;
    text-align: center;
}

.arr-explore-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--dark);
}

.arr-explore-content p {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Section Galerie */
.arr-gallery {
    padding: 80px 20px;
    background-color: var(--white);
}

.arr-gallery-staircase {
    max-width: 1400px;
    margin: 50px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.arr-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.arr-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.arr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.arr-gallery-item:hover img {
    transform: scale(1.05);
}

/* Positionnement en escalier */
.arr-gallery-item-1 {
    width: 280px;
    height: 320px;
    margin-top: 0;
}

.arr-gallery-item-2 {
    width: 280px;
    height: 320px;
    margin-top: 40px;
}

.arr-gallery-item-3 {
    width: 280px;
    height: 320px;
    margin-top: 80px;
}

.arr-gallery-item-4 {
    width: 280px;
    height: 320px;
    margin-top: 120px;
}

/* Section Investissement */
.arr-investment {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.arr-investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.arr-investment-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.arr-investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.arr-investment-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.arr-investment-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Section FAQ */
.arr-faq {
    padding: 80px 20px;
    background-color: var(--white);
}

.arr-faq-container {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.arr-faq-item {
    padding: 25px;
    background-color: #f5f2ee;
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

.arr-faq-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.arr-faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* CTA Arrondissement */
.arr-cta {
    padding: 100px 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.arr-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.arr-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.arr-cta p {
    font-size: 16px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

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

.arr-cta .btn-primary:hover {
    background: #f0f0f0;
}

/* Responsive Arrondissements */
@media (max-width: 992px) {
    .arr-presentation-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .arr-typologies-grid,
    .arr-quartiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .arr-hero {
        height: 350px;
        margin-top: 60px;
    }

    .arr-hero-overlay {
        padding: 40px 20px 80px;
    }

    .arr-hero-overlay h1 {
        font-size: 36px;
    }

    .arr-hero-overlay p {
        font-size: 18px;
    }

    .arr-hero-buttons {
        flex-direction: column;
        gap: 15px;
        bottom: 20px;
    }

    .arr-footer-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px 10px;
    }

    .arr-footer-list a {
        font-size: 11px;
    }

    .arr-presentation {
        padding: 60px 20px;
    }

    .arr-presentation-content h2 {
        font-size: 26px;
    }

    .arr-gallery-staircase {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .arr-gallery-item-1,
    .arr-gallery-item-2,
    .arr-gallery-item-3,
    .arr-gallery-item-4 {
        width: 100%;
        max-width: 280px;
        height: 280px;
        margin-top: 0 !important;
    }

    .arr-explore-grid {
        grid-template-columns: 1fr;
    }

    .arr-typologies,
    .arr-quartiers,
    .arr-gallery,
    .arr-investment,
    .arr-faq,
    .arr-cta {
        padding: 60px 20px;
    }

    .arr-typologies-grid,
    .arr-quartiers-grid,
    .arr-investment-grid,
    .arr-faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arr-cta h2 {
        font-size: 28px;
    }

    .arr-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px auto;
    }

    .arr-block-2 .arr-block-content {
        order: 0;
    }

    .arr-block-image {
        height: 300px;
    }

    .arr-block-content h3 {
        font-size: 24px;
    }

    .arr-block-content p {
        font-size: 14px;
    }
}

/* ========== MODAL PROJET ========== */
.projet-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.projet-modal-overlay.active {
    display: flex;
}

.projet-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.projet-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.projet-modal-close:hover {
    color: #000;
}

.projet-modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.projet-etapes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.projet-etape {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
}

.projet-etape-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: #c9a050;
    min-width: 35px;
}

.projet-etape p {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

.projet-etape strong {
    color: #1a1a1a;
}

.projet-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projet-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.projet-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.projet-form-group input,
.projet-form-group select,
.projet-form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.projet-form-group input:focus,
.projet-form-group select:focus,
.projet-form-group textarea:focus {
    outline: none;
    border-color: #c9a050;
}

.projet-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.projet-form-submit {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    align-self: center;
    margin-top: 10px;
}

.projet-form-submit:hover {
    background: #333;
}

@media (max-width: 768px) {
    .projet-modal {
        padding: 25px;
    }

    .projet-modal-title {
        font-size: 24px;
    }

    .projet-etapes {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .projet-etape {
        padding: 12px;
    }

    .projet-etape-num {
        font-size: 20px;
    }

    .projet-etape p {
        font-size: 12px;
    }
}

/* Modal Formulaire Recherche Appartement */
.recherche-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.recherche-modal-overlay.active {
    display: flex;
}

.recherche-modal {
    position: relative;
    max-width: 700px;
    width: 100%;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.recherche-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.recherche-modal-close:hover {
    color: #1a1a1a;
}

.recherche-modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.recherche-form-intro {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 35px;
}

.recherche-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.recherche-form-field {
    display: flex;
    flex-direction: column;
}

.recherche-form-field--full {
    margin-bottom: 25px;
}

.recherche-form-field label {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.recherche-form-field input,
.recherche-form-field textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.recherche-form-field input:focus,
.recherche-form-field textarea:focus {
    outline: none;
    border-color: #c9a962;
}

.recherche-form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.recherche-form-submit {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.recherche-form-submit:hover {
    background: #333;
}

@media (max-width: 768px) {
    .recherche-form-container {
        padding: 30px 20px;
    }

    .recherche-form-container h2 {
        font-size: 26px;
    }

    .recherche-form-row {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   NOS SERVICES - GRILLE 4 CARDS
======================================== */

.services-grid-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.service-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.service-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #b8860b;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #1a1a1a;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid-section {
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}


/* ========================================
   SERVICE MODALS
======================================== */

.service-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.service-modal-overlay.active {
    display: flex;
}

.service-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.service-modal-close:hover {
    color: #1a1a1a;
}

.service-modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.service-modal-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.service-form-group.full-width {
    grid-column: 1 / -1;
}

.service-form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-form-group input,
.service-form-group select,
.service-form-group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.service-form-group input:focus,
.service-form-group select:focus,
.service-form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.service-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.service-form-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.service-form-submit:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .service-modal {
        padding: 30px 20px;
    }

    .service-modal-title {
        font-size: 24px;
    }

    .service-form-row {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   VOTRE PROJET PAGE
======================================== */

.projet-etapes-section {
    padding: 80px 40px;
    background: #fff;
}

.projet-etapes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.projet-etape-card {
    text-align: center;
    padding: 30px 20px;
}

.projet-etape-card .projet-etape-num {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 300;
    color: #b8860b;
    margin-bottom: 15px;
}

.projet-etape-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.projet-etape-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* Questions Section */
.projet-questions-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.projet-questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.projet-question-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.projet-question-card i {
    font-size: 28px;
    color: #b8860b;
    margin-bottom: 20px;
}

.projet-question-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.projet-question-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.projet-cta-section {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

.projet-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.projet-cta-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.projet-cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.projet-cta-content .btn-primary {
    background: #fff;
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.projet-cta-content .btn-primary:hover {
    background: #b8860b;
    color: #fff;
}

/* Section Chiffres */
.projet-chiffres-section {
    padding: 80px 40px;
    background: #f3f3f3;
}

.projet-chiffres-section .section-title {
    color: #1a1a1a;
}

.projet-chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.projet-chiffre-card {
    text-align: center;
}

.projet-chiffre-value {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    color: #b8860b;
    margin-bottom: 10px;
}

.projet-chiffre-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
}

/* Section Types de projets */
.projet-types-section {
    padding: 80px 40px;
    background: #fff;
}

.projet-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.projet-type-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 35px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.projet-type-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.projet-type-icon i {
    font-size: 24px;
    color: #b8860b;
}

.projet-type-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.projet-type-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.projet-type-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.projet-type-points li {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #555;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.projet-type-points li:last-child {
    border-bottom: none;
}

.projet-type-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

/* Section FAQ */
.projet-faq-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

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

.projet-faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.projet-faq-item summary {
    padding: 20px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projet-faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #b8860b;
    transition: transform 0.3s;
}

.projet-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.projet-faq-item p {
    padding: 0 25px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* Section Accompagnement */
.projet-accompagnement {
    padding: 80px 20px;
    background: #ffffff;
}

.projet-accompagnement-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
}

.projet-accompagnement-image {
    flex: 0 0 420px;
}

.projet-accompagnement-image-bubble {
    background: transparent;
    padding: 0;
}

.projet-accompagnement-image-bubble img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.projet-accompagnement-content {
    flex: 1;
}

.projet-accompagnement-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 25px;
}

.projet-accompagnement-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.projet-accompagnement-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.projet-accompagnement-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.accompagnement-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    color: #b8860b;
    font-weight: 600;
    min-width: 25px;
}

.projet-accompagnement-list li strong {
    color: #1a1a1a;
}

/* Responsive Accompagnement */
@media (max-width: 992px) {
    .projet-accompagnement-container {
        flex-direction: column;
        gap: 40px;
    }

    .projet-accompagnement-image {
        flex: 0 0 auto;
        max-width: 400px;
    }

    .projet-accompagnement-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .projet-accompagnement {
        padding: 60px 20px;
    }

    .projet-accompagnement-content h2 {
        font-size: 28px;
    }

    .projet-accompagnement-image-bubble {
        padding: 20px;
    }
}

/* Section Full Width CTA */
.projet-fullwidth-cta {
    width: 100%;
    padding: 40px;
    background: #ffffff;
}

.projet-fullwidth-cta-container {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.projet-fullwidth-cta-image {
    flex: 1;
    min-height: 400px;
}

.projet-fullwidth-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
}

.projet-fullwidth-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    text-align: center;
}

.projet-fullwidth-cta-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.projet-fullwidth-cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    font-style: italic;
}

.projet-fullwidth-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary-rounded {
    display: inline-block;
    padding: 16px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary-rounded:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-outline-rounded {
    display: inline-block;
    padding: 16px 35px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.btn-outline-rounded:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Full Width CTA */
@media (max-width: 992px) {
    .projet-fullwidth-cta-content {
        padding: 40px 50px;
    }

    .projet-fullwidth-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .projet-fullwidth-cta {
        padding: 20px;
    }

    .projet-fullwidth-cta-container {
        flex-direction: column;
        border-radius: 20px;
    }

    .projet-fullwidth-cta-image {
        min-height: 250px;
    }

    .projet-fullwidth-cta-image img {
        border-radius: 20px 20px 0 0;
    }

    .projet-fullwidth-cta-content {
        padding: 30px 25px;
    }

    .projet-fullwidth-cta-content h2 {
        font-size: 26px;
    }

    .projet-fullwidth-cta-buttons {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .projet-etapes-grid,
    .projet-chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projet-types-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .projet-etapes-section,
    .projet-questions-section,
    .projet-cta-section,
    .projet-chiffres-section,
    .projet-types-section,
    .projet-faq-section {
        padding: 50px 20px;
    }

    .projet-etapes-grid,
    .projet-questions-grid,
    .projet-chiffres-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projet-chiffre-value {
        font-size: 32px;
    }

    .projet-cta-content h2 {
        font-size: 26px;
    }
}


/* ========================================
   NOS SERVICES - SECTIONS ADDITIONNELLES
======================================== */

/* Section Pourquoi nous choisir */
.services-why-section {
    padding: 80px 40px;
    background: #ffffff;
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-why-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.services-why-num {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    color: #b8860b;
    margin-bottom: 10px;
}

.services-why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.services-why-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Section Process */
.services-process-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.services-process-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-process-timeline {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.services-process-image {
    flex: 1;
    max-width: 500px;
}

.services-process-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.services-process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.services-process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.services-process-step:last-child {
    margin-bottom: 0;
}

.services-process-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.services-process-icon i {
    font-size: 22px;
    color: #b8860b;
}

.services-process-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.services-process-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* Section Témoignages */
.services-testimonials-section {
    padding: 80px 40px;
    background: #f3f3f3;
}

.services-testimonials-section .section-title {
    color: #1a1a1a;
}

.services-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
}

.services-testimonial-stars {
    color: #b8860b;
    font-size: 18px;
    margin-bottom: 15px;
}

.services-testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.services-testimonial-author strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.services-testimonial-author span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888;
}

/* Section CTA Services */
.services-cta-section {
    padding: 80px 40px;
    background: #f9f9f9;
    text-align: center;
}

.services-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.services-cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.services-cta-content .btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.services-cta-content .btn-primary:hover {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

/* Responsive Services */
@media (max-width: 992px) {
    .services-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .services-why-section,
    .services-process-section,
    .services-testimonials-section,
    .services-cta-section {
        padding: 50px 20px;
    }

    .services-why-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .services-why-num {
        font-size: 38px;
    }

    .services-process-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-process-timeline {
        max-width: 100%;
    }

    .services-process-image {
        max-width: 100%;
    }

    .services-process-timeline::before {
        left: 25px;
    }

    .services-process-icon {
        width: 50px;
        height: 50px;
    }

    .services-process-icon i {
        font-size: 18px;
    }

    .services-cta-content h2 {
        font-size: 26px;
    }
}

/* ========================================
   CONTACT MODAL (Coordonnées)
======================================== */

.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-modal-overlay.active {
    display: flex;
}

.contact-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.contact-modal-close:hover {
    color: #1a1a1a;
}

.contact-modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.contact-modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-modal-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-modal-item i {
    font-size: 20px;
    color: #b8860b;
    width: 25px;
    text-align: center;
    margin-top: 3px;
}

.contact-modal-item strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.contact-modal-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-modal-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-modal-item a:hover {
    color: #b8860b;
}

.contact-modal-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-modal-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .contact-modal {
        padding: 30px 20px;
    }

    .contact-modal-title {
        font-size: 24px;
    }
}

/* ===== SERVICE FEATURE SECTION ===== */
.service-feature-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.service-feature-image {
    flex: 1;
    max-width: 500px;
}

.service-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-feature-content {
    flex: 1;
}

.service-feature-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-feature-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-feature-intro .text-highlight {
    color: var(--primary-color);
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.service-feature-list .list-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    min-width: 25px;
}

.service-feature-list .list-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-color);
}

.service-feature-list .list-text strong {
    color: var(--primary-color);
}

.service-feature-btn {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-feature-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Responsive Service Feature */
@media (max-width: 992px) {
    .service-feature-container {
        gap: 40px;
    }

    .service-feature-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .service-feature-section {
        padding: 50px 0;
    }

    .service-feature-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .service-feature-image {
        max-width: 100%;
    }

    .service-feature-content h2 {
        font-size: 28px;
    }
}

/* ===== PRIVILEGES SECTION ===== */
.privileges-section {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.privileges-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 3px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.privileges-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.privileges-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.privileges-slider::-webkit-scrollbar {
    display: none;
}

.privilege-card {
    flex: 0 0 260px;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privilege-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privilege-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.privilege-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.privilege-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--light-text);
}

.privilege-text em {
    font-style: italic;
    color: var(--secondary-color);
}

.privileges-nav-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Responsive Privileges */
@media (max-width: 992px) {
    .privileges-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .privilege-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 768px) {
    .privileges-section {
        padding: 50px 0;
    }

    .privileges-slider-container {
        padding: 0 20px;
    }

    .privileges-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .privilege-card {
        flex: 0 0 280px;
        padding: 25px 20px;
    }

    .privileges-nav-btn {
        display: none;
    }
}

/* =====================================================
   SECTION HONORAIRES
   ===================================================== */
.honoraires-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.honoraires-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.honoraires-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.honoraires-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.honoraires-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.honoraires-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.honoraires-card .honoraires-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #b8860b;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.honoraires-card .honoraires-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.honoraires-card .honoraires-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.honoraires-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.honoraires-success {
    text-align: center;
    margin-top: 3rem;
    padding: 25px 40px;
    background: #fff;
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    border-radius: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    border: 2px solid #b8860b;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .honoraires-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .honoraires-grid .honoraires-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .honoraires-section {
        padding: 60px 20px;
    }

    .honoraires-grid {
        grid-template-columns: 1fr;
    }

    .honoraires-grid .honoraires-card:last-child {
        max-width: 100%;
    }

    .honoraires-card .honoraires-price {
        font-size: 2rem;
    }

    .honoraires-success {
        font-size: 1.1rem;
        padding: 20px 30px;
    }
}