:root {
    --navy: #000a1e;
    --navy-mid: #1A2E45;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --cream: #F7F3EE;
    --cream-dark: #EDE7DC;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A5568;
    --text-light: #718096;
    --remax-red: #DC1C2E;
}

html {
    scroll-behavior: smooth;
}

.header-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero-quartier {
    /* min-height: 100vh; */
    background: var(--navy);
    background-color: var(--clr-accent-alt-800);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    /* background-image:
	linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
	linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); */
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero-quartier h1 {
    font-size: clamp(2.4rem, 4.5vw, 2.8rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
}

.hero-quartier h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-phone svg, .btn-primary svg, .hero-actions svg {
    display: inline-block;
    width: initial;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Stats card */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    position: relative;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-card-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 28px;
}

.stat-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.stat-val {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.remax-badge {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.remax-dot {
    width: 10px;
    height: 10px;
    background: var(--remax-red);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(220, 28, 46, 0.6);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION BASE ===== */
section {
    padding: 90px 40px;
}

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

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--navy);
}

.section-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 620px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0 30px;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--white);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--cream-dark);
}

.service-card {
    background: var(--white);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.service-card:hover {
    background: var(--navy);
}

.service-card:hover .service-title {
    color: var(--white);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.65);
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.service-card:hover .service-link {
    color: var(--gold);
}

.service-card:hover .service-link::after {
    background: var(--gold);
    width: 100%;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--cream-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--navy);
    transition: all 0.3s;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--cream);
}

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

.about-image-wrap {
    position: relative;
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

.about-frame {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: -16px;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--gold);
    padding: 22px 26px;
    text-align: center;
}

.about-badge strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.about-badge span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
}

.pill {
    background: var(--navy);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.about-quote {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 28px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
}

/* ===== MIRABEL FOCUS ===== */
.mirabel-section {
    background: var(--navy);
    color: var(--white);
}

.mirabel-section .section-title {
    color: var(--white);
}

.mirabel-section .section-lead {
    color: rgba(255, 255, 255, 0.65);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.zone-item {
    background: rgba(13, 27, 42, 0.8);
    padding: 28px 24px;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.zone-item:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

.zone-name {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 6px;
}

.zone-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.06em;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--cream-dark);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    position: relative;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-mid);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-accent {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: var(--cream-dark);
    line-height: 1;
}

.cta-testimonials {
    text-align: center;
    margin-top: 40px;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-sticky {
    position: sticky;
    top: 100px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--navy);
}

.faq-question.active {
    color: var(--navy);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--text-light);
}

.faq-question.active .faq-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer-inner {
    padding-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy);
    text-align: center;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%), radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
}

.cta-section .section-eyebrow {
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
    max-width: 680px;
    margin: 0 auto 20px;
    text-align: center;
}

.cta-section .section-lead {
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin: 0 auto 44px;
    text-align: center;
}

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

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
}

.cta-phone svg {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    header {
        padding: 16px 24px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 24px 60px;
    }
    .hero-card {
        max-width: 440px;
    }
    .services-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-sticky {
        position: static;
    }
    section {
        padding: 60px 24px;
    }
}

/*NOUVEAU CSS pour les nouvelles sections*/
/* ===== PROPERTY TYPES ===== */
.property-types-section {
    background: var(--white);
}

.prop-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--cream-dark);
}

.prop-type-card {
    background: var(--white);
    padding: 36px 30px;
    position: relative;
    transition: background 0.3s;
}

.prop-type-card:hover {
    background: var(--cream);
}

.prop-type-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.prop-type-card:hover .prop-type-num {
    color: var(--gold);
}

.prop-type-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.prop-type-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.prop-type-tag {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

/* ===== GUIDE SECTION ===== */
.guide-section {
    background: var(--cream);
}

.guide-header {
    margin-bottom: 50px;
}

.guide-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--cream-dark);
}

.guide-col {
    background: var(--white);
    padding: 44px 40px;
}

.guide-col-dark {
    background: var(--navy);
}

.guide-col-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.guide-col-icon {
    width: 48px;
    height: 48px;
    background: var(--cream-dark);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
    margin-top: 4px;
}

.guide-col-icon-gold {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.guide-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

/* Critères courtier */
.guide-criteria {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.criterion-item {
    display: flex;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--cream-dark);
}

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

.criterion-check {
    width: 26px;
    height: 26px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.criterion-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.criterion-item p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* Étapes processus */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.process-step strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ===== FEES SECTION ===== */
.fees-section {
    background: var(--cream-dark);
}

.fees-disclaimer {
    display: flex;
    gap: 12px;
    background: rgba(201, 168, 76, 0.12);
    border-left: 3px solid var(--gold);
    padding: 14px 16px;
    border-radius: 0 2px 2px 0;
}

.fees-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.fees-disclaimer svg {
    display: inline-block;
    width: 18px;
    height: 18px;
}

.fees-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
}

.fee-item {
    padding: 22px 26px;
    border-bottom: 1px solid var(--cream-dark);
    transition: background 0.2s;
}

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

.fee-item:hover {
    background: var(--cream);
}

.fee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 12px;
}

.fee-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.fee-amount {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    white-space: nowrap;
}

.fee-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* Responsive nouvelles sections */

@media (max-width: 900px) {
    .prop-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guide-two-cols {
        grid-template-columns: 1fr;
    }
    .fees-section .container > div {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .prop-types-grid {
        grid-template-columns: 1fr;
    }
}
