/**
 * Kolonaki.css - Styles pour la page Kolonaki
 * Fichier de styles dédié et propre pour kolonaki.html
 */

/* ==================================================
   VARIABLES CSS & RESET
   ================================================== */

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

:root {
    --primary-teal: #52D3D8;
    --teal-light: #E0F7F8;
    --teal-dark: #3BA0A4;
    --teal-accent: #6BE4E9;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: clip;
    width: 100%;
    scroll-behavior: smooth;
}

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

/* Hero avec Image de Fond - RÉDUIT EN HAUTEUR */
.hero-clean {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('/images/kolonaki.jpg') center/cover no-repeat;
    padding: 100px 24px 100px;
    position: relative;
    margin-bottom: 56px;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary-teal);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    max-width: 700px;
    margin-bottom: 70px;
}

/* Widgets Infos Quartier - DÉPASSENT DU HERO */
.district-info-widgets-hero {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 900px;
}

.info-widget-hero {
    background: white;
    backdrop-filter: blur(10px);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.info-widget-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(82, 211, 216, 0.25);
}

.info-widget-icon-hero {
    font-size: 32px;
    margin-bottom: 8px;
}

.info-widget-label-hero {
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.2;
}

.info-widget-value-hero {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.stars {
    color: var(--warning);
    font-size: 18px;
    letter-spacing: 2px;
}

/* Cacher logo et attribution Leaflet */
.leaflet-control-attribution,
.leaflet-bottom.leaflet-right {
    display: none !important;
}

/* Widgets Infos Quartier - En dessous de la map */
.district-info-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px;
    background: white;
    border-top: 1px solid var(--gray-100);
}

.info-widget {
    background: var(--gray-50);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.info-widget:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.info-widget-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.info-widget-label {
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.info-widget-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

/* Layout 2 Colonnes Intelligent */
.main-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 24px 10px 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

/* Colonne Gauche (scroll) */
.content-column {
    min-width: 0;
}

/* Colonne Droite (sticky) */
.sidebar-column {
    position: sticky;
    top: 120px;
}

/* Chart Section (style light simplifié) + LIGNE DE SÉPARATION */
.chart-section {
    background: white;
    border-radius: 12px;
    padding: 0px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.chart-header {
    margin-bottom: 24px;
    padding: 0 32px 0 0;
}

.chart-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.chart-wrapper {
    height: 450px;
    position: relative;
    padding: 0;
}

/* Jauge Popularité Investisseurs - Continuité des widgets */
.popularity-gauge-section {
    margin-top: 16px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.popularity-gauge-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}

.popularity-gauge-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
}

.popularity-gauge-labels span:first-child {
    color: var(--gray-500);
}

.popularity-gauge-value {
    color: var(--primary-teal);
    font-weight: 600;
}

.popularity-gauge-bar-container {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.popularity-gauge-bar {
    height: 100%;
    background: var(--primary-teal);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Section Spacing */
.content-section {
    margin-bottom: 0px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-text {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Features Grid - STYLE WIDGETS AVEC BORDURE GRIS CLAIR - 3 PAR LIGNE */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.feature-item {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.feature-item:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 211, 216, 0.15);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-teal);
}

.feature-icon .material-icons {
    font-size: 28px;
    color: var(--primary-teal);
}

.feature-content {
    text-align: center;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.2;
}

.feature-content p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Sidebar Map Container */
.map-container {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

/* District Stats Container (pour la sidebar) */
.district-stats-container {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.district-map-wrapper {
    height: 320px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#districtMap {
    width: 100%;
    height: 100%;
}

.district-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.district-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.district-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.district-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--gray-100);
}

.district-stat-item {
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--gray-100);
}

.district-stat-item:last-child {
    border-right: none;
}

.district-stat-label {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.district-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.map-wrapper {
    height: 320px;
    position: relative;
}

#neighborhoodMap {
    width: 100%;
    height: 100%;
}

.map-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.map-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.map-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

/* POI List */
.poi-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-200);
}

.poi-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poi-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 8px;
    transition: all 0.3s;
    gap: 16px;
}

.poi-item:hover {
    background: var(--teal-light);
    transform: translateX(4px);
}

.poi-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.poi-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.poi-icon .material-icons {
    font-size: 20px;
    color: var(--primary-teal);
}

.poi-info {
    flex: 1;
    min-width: 0;
}

.poi-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
    line-height: 1.2;
}

.poi-info p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.poi-distance {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-teal);
    flex-shrink: 0;
}

/* Properties Grid */
.properties-section {
    margin-bottom: 0px;
}

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

.property-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

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

.property-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.property-body {
    padding: 16px;
}

.property-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.property-features {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-600);
}

.property-feature .material-icons {
    font-size: 16px;
    color: var(--gray-400);
}

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

.property-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.property-price-sqm {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Gallery Full Width */
.gallery-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: white;
    padding: 64px 0;
    margin-bottom: 0px;
}

.gallery-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-header {
    text-align: left;
    padding-bottom: 48px;
}

.gallery-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 280px);
    gap: 16px;
}

.gallery-item-masonry {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item-masonry:hover img {
    transform: scale(1.1);
}

.gallery-item-masonry:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item-masonry:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.gallery-item-masonry:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.gallery-item-masonry:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.gallery-item-masonry:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.gallery-item-masonry:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.gallery-item-masonry:nth-child(7) {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}

/* CTA Full Width */
.cta-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
    padding: 80px 24px;
    text-align: center;
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
}

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

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-teal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==================================================
   RESPONSIVE - TABLETTE (< 1024px)
   ================================================== */

@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 10px 24px;
    }

    .sidebar-column {
        position: relative;
        top: 0;
    }

    .hero-clean {
        padding: 80px 24px 80px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-description {
        font-size: 20px;
    }

    .district-info-widgets-hero {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-title {
        font-size: 28px;
    }

    .chart-wrapper {
        height: 350px;
    }

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

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .gallery-item-masonry:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-masonry:nth-child(2) {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .gallery-item-masonry:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item-masonry:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item-masonry:nth-child(5) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .gallery-item-masonry:nth-child(6) {
        display: block;
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item-masonry:nth-child(7) {
        display: block;
        grid-column: 2 / 4;
        grid-row: 3 / 4;
    }
}

/* ==================================================
   RESPONSIVE - MOBILE (< 768px)
   ================================================== */

@media (max-width: 768px) {
    .hero-clean {
        padding: 60px 20px 100px;
        margin-bottom: 20px;
    }

    .breadcrumb {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* Widgets hero en position relative sur mobile */
    .district-info-widgets-hero {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 32px;
    }

    .info-widget-hero {
        padding: 18px 14px;
    }

    .info-widget-icon-hero {
        font-size: 28px;
    }

    .info-widget-label-hero {
        font-size: 10px;
    }

    .info-widget-value-hero {
        font-size: 18px;
    }

    .stars {
        font-size: 16px;
    }

    /* Main layout */
    .main-layout {
        padding: 40px 20px 10px 20px;
        gap: 40px;
    }

    /* Chart */
    .chart-section {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }

    .chart-title {
        font-size: 24px;
    }

    .chart-wrapper {
        height: 280px;
    }

    /* Section titles and text */
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-text {
        font-size: 16px;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
        margin-bottom: 40px;
    }

    .feature-item {
        padding: 18px;
    }

    .feature-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .feature-content h3 {
        font-size: 15px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .popularity-gauge-section {
        margin-top: 12px;
        padding: 24px;
    }

    .popularity-gauge-section h3 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .map-wrapper {
        height: 200px;
    }

    .district-map-wrapper {
        height: 200px;
    }

    .district-info-widgets {
        padding: 16px;
        gap: 10px;
    }

    .info-widget {
        padding: 14px;
    }

    .info-widget-icon {
        font-size: 24px;
    }

    .info-widget-label {
        font-size: 10px;
    }

    .info-widget-value {
        font-size: 13px;
    }

    .poi-section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .poi-list {
        gap: 10px;
    }

    .poi-item {
        padding: 14px;
    }

    .poi-icon {
        width: 32px;
        height: 32px;
    }

    .poi-icon .material-icons {
        font-size: 16px;
    }

    .poi-info h4 {
        font-size: 13px;
    }

    .poi-info p {
        font-size: 11px;
    }

    .poi-distance {
        font-size: 12px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .property-image {
        height: 200px;
    }

    .property-body {
        padding: 14px;
    }

    .property-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .property-features {
        gap: 10px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .property-feature {
        font-size: 11px;
    }

    .property-price {
        font-size: 20px;
    }

    .property-price-sqm {
        font-size: 10px;
    }

    .gallery-fullwidth {
        padding: 32px 0;
    }

    .gallery-content-wrapper {
        padding: 0 20px;
    }

    .gallery-header {
        padding-bottom: 32px;
    }

    .gallery-header h2 {
        font-size: 24px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
        gap: 12px;
    }

    .gallery-item-masonry:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-masonry:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item-masonry:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item-masonry:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item-masonry:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item-masonry:nth-child(6) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .gallery-item-masonry:nth-child(7) {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .cta-fullwidth {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ==================================================
   RESPONSIVE - MOBILE SMALL (< 480px)
   ================================================== */

@media (max-width: 480px) {
    .hero-clean {
        padding: 50px 16px 80px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .district-info-widgets-hero {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .info-widget-hero {
        padding: 16px;
    }

    .main-layout {
        padding: 32px 16px 10px 16px;
        gap: 32px;
    }

    .chart-section {
        margin-bottom: 32px;
    }

    .chart-title {
        font-size: 20px;
    }

    .chart-wrapper {
        height: 240px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-text {
        font-size: 15px;
    }

    .features-grid {
        gap: 10px;
    }

    .feature-item {
        padding: 16px;
    }

    .popularity-gauge-section {
        padding: 20px;
    }

    .district-info-widgets {
        padding: 14px;
        gap: 8px;
    }

    .info-widget {
        padding: 12px;
    }

    .poi-list {
        gap: 8px;
    }

    .poi-item {
        padding: 12px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .poi-left {
        width: 100%;
    }

    .poi-distance {
        align-self: flex-start;
    }

    .properties-grid {
        gap: 14px;
    }

    .property-image {
        height: 180px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 200px);
        gap: 10px;
    }

    .gallery-item-masonry:nth-child(1),
    .gallery-item-masonry:nth-child(2),
    .gallery-item-masonry:nth-child(3),
    .gallery-item-masonry:nth-child(4),
    .gallery-item-masonry:nth-child(5),
    .gallery-item-masonry:nth-child(6),
    .gallery-item-masonry:nth-child(7) {
        grid-column: 1 / 2;
    }

    .gallery-item-masonry:nth-child(1) { grid-row: 1 / 2; }
    .gallery-item-masonry:nth-child(2) { grid-row: 2 / 3; }
    .gallery-item-masonry:nth-child(3) { grid-row: 3 / 4; }
    .gallery-item-masonry:nth-child(4) { grid-row: 4 / 5; }
    .gallery-item-masonry:nth-child(5) { grid-row: 5 / 6; }
    .gallery-item-masonry:nth-child(6) { grid-row: 6 / 7; }
    .gallery-item-masonry:nth-child(7) { grid-row: 7 / 8; }

    .cta-fullwidth {
        padding: 50px 16px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 15px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ==================================================
   RESPONSIVE - EXTRA SMALL MOBILE (< 375px)
   ================================================== */

@media (max-width: 375px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .chart-title,
    .section-title {
        font-size: 18px;
    }

    .gallery-header h2 {
        font-size: 20px;
    }

    .cta-title {
        font-size: 24px;
    }
}

/* ==================================================
   ANIMATIONS
   ================================================== */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* ==================================================
   STYLES SUPPLÉMENTAIRES
   ================================================== */

.breadcrumb .material-icons {
    font-size: 14px;
}

.info-widget-icon-hero .material-icons {
    color: var(--primary-teal);
}

.info-widget .material-icons {
    color: var(--primary-teal);
}

.separator-line {
    height: 1px;
    background: var(--gray-200);
    margin: 48px 0;
}