/* ============================================
   EXPATS & HOUSING - TEMPLATE CSS COMMUN
   Version: 1.0
   ============================================ */

/* ===== VARIABLES CSS ===== */
:root {
    --primary-dark: #1a2744;
    --primary-navy: #1e3a5f;
    --cream: #f5f4ec;
    --cream-light: #faf9f2;
    --beige: #c4a882;
    --beige-light: #d4b896;
    --sand: #ede2cc;
    --text-dark: #1a2744;
    --text-muted: #6b7280;
    --card-bg: #b8d4f0;
    --white: #ffffff;
    --border-light: #e5e5e5;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 15px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 30px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

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

/* ===== HEADER / NAVBAR ===== */
.navbar-custom {
    background-color: var(--cream-light);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-dark);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    width: 25px;
    height: 25px;
    border: 2px solid var(--primary-dark);
    position: absolute;
}

.logo-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text span {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link-custom {
    color: var(--primary-dark) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--beige) !important;
}

.nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--primary-dark);
    background: transparent;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-proposer {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-proposer:hover {
    background: var(--primary-navy);
    transform: translateY(-1px);
}

.btn-proposer i { font-size: 18px; }

/* ===== SECTIONS COMMUNES ===== */
.section-padding { padding: 80px 0; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 50px;
}

/* ===== CARDS PROPRIÉTÉS ===== */
.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.property-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-dark);
}

.action-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.action-btn.liked { color: #e91e63; }

.property-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-location {
    background: var(--primary-dark);
    color: var(--white);
}

.badge-vente {
    background: var(--card-bg);
    color: var(--primary-dark);
}

.property-info { padding: 18px; }

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.property-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.property-features {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--text-muted);
    font-size: 14px;
}

.property-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-details {
    padding: 6px 18px;
    border: 1px solid var(--primary-dark);
    background: transparent;
    color: var(--primary-dark);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-call {
    width: 100%;
    padding: 10px;
    background: var(--beige);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--beige-light);
    transform: translateY(-2px);
}

/* ===== BOUTONS COMMUNS ===== */
.btn-beige {
    padding: 12px 24px;
    background: var(--beige);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-beige:hover {
    background: var(--beige-light);
    transform: translateY(-2px);
}

.btn-outline {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-navy {
    padding: 12px 40px;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-navy:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 39, 68, 0.2);
}

/* ===== FORMULAIRES ===== */
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    margin-bottom: 12px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}

.form-input::placeholder { color: var(--text-muted); }

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

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-input { flex: 1; }

/* ===== FOOTER ===== */
.footer-section {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    border-color: rgba(255,255,255,0.5);
}

.footer-logo .logo-icon::before {
    border-color: rgba(255,255,255,0.5);
}

.footer-logo h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
}

.footer-logo span {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: var(--white);
}

.footer-nav-center {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.footer-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.footer-nav-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .section-title { font-size: 28px; }
    .form-row { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 767px) {
    .section-title { font-size: 24px; }
    .section-padding { padding: 50px 0; }
    .property-image { height: 180px; }
    .property-price { font-size: 20px; }
    .btn-proposer { padding: 8px 16px; font-size: 12px; }
    .btn-proposer span { display: none; }
}


.about-hero {
            position: relative;
            height: 70vh; min-height: 500px;
            background: linear-gradient(rgba(26, 39, 68, 0.2), rgba(26, 39, 68, 0.3)),
                        url('../images/banner-about.png');
            background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center;
            text-align: center;
        }
        .about-hero-content { max-width: 700px; padding: 0 20px; }
        .about-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px; font-weight: 400;
            color: var(--white); line-height: 1.2;
            text-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .positionnement-section {
            background: var(--white);
            padding: 60px 0;
            position: relative;
            z-index: 10;
            margin-top: -60px;
            border-radius: 20px 20px 0 0;
        }
        .positionnement-card {
            background: var(--cream-light);
            border-radius: var(--radius-lg);
            padding: 50px;
            display: flex;
            align-items: flex-start;
            gap: 40px;
        }
        .positionnement-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px; font-weight: 400;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            gap: 15px;
            white-space: nowrap;
            min-width: 200px;
        }
        .positionnement-title::before {
            content: '';
            width: 20px; height: 20px;
            border: 2px solid var(--primary-dark);
            transform: rotate(45deg);
            flex-shrink: 0;
        }
        .positionnement-text {
            font-size: 14px; line-height: 1.8;
            color: var(--text-dark);
            max-width: 600px;
        }
        .mission-vision-section {
            background: var(--primary-dark);
            padding: 80px 0;
        }
        .mv-card {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        .mv-card:hover {
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-5px);
        }
        .mv-icon {
            width: 30px; height: 30px;
            border: 2px solid rgba(255,255,255,0.6);
            transform: rotate(45deg);
            margin: 0 auto 20px;
            position: relative;
        }
        .mv-icon::before {
            content: '';
            width: 12px; height: 12px;
            border: 1px solid rgba(255,255,255,0.6);
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }
        .mv-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px; font-weight: 400;
            color: var(--white); margin-bottom: 16px;
        }
        .mv-card p {
            font-size: 14px; line-height: 1.7;
            color: rgba(255,255,255,0.7);
        }
        .valeurs-section {
            background: var(--sand);
            padding: 80px 0;
        }
        .valeurs-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px; font-weight: 400;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 50px;
        }
        .valeur-card {
            background: var(--sand);
            border: 1px solid rgba(26, 39, 68, 0.15);
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        .valeur-card:hover {
            border-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .valeur-num {
            font-size: 12px; font-weight: 600;
            color: var(--text-muted); letter-spacing: 2px;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }
        .valeur-num::before, .valeur-num::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px; height: 1px;
            background: var(--text-muted);
        }
        .valeur-num::before { right: calc(100% + 10px); }
        .valeur-num::after { left: calc(100% + 10px); }
        .valeur-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 22px; font-weight: 400;
            color: var(--primary-dark); margin-bottom: 12px;
        }
        .valeur-card p {
            font-size: 13px; line-height: 1.6;
            color: var(--text-muted);
        }
        .manifesto-section { background: var(--white); padding: 80px 0; }
        .manifesto-wrapper {
            display: flex;
            align-items: stretch;
            gap: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .manifesto-image {
            flex: 1; min-height: 400px;
            background: linear-gradient(rgba(26, 39, 68, 0.3), rgba(26, 39, 68, 0.4)),
                        url('../images/bienvenue.png');
            background-size: cover; background-position: center;
            display: flex; align-items: center; padding: 60px;
        }
        .manifesto-image-text {
            font-family: 'Playfair Display', serif;
            font-size: 42px; font-weight: 400;
            color: var(--white); line-height: 1.2;
            max-width: 300px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .manifesto-content {
            flex: 1; background: var(--card-bg);
            padding: 50px;
            display: flex; flex-direction: column; justify-content: center;
        }
        .manifesto-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px; font-weight: 400;
            color: var(--primary-dark); margin-bottom: 20px;
        }
        .manifesto-content p {
            font-size: 14px; line-height: 1.8;
            color: var(--text-dark);
        }
        .chez-section {
            background: var(--white);
            padding: 60px 0 80px;
            text-align: center;
        }
        .chez-divider {
            display: flex; align-items: center; justify-content: center;
            gap: 20px; margin-bottom: 20px;
        }
        .chez-divider-line { width: 80px; height: 1px; background: var(--border-light); }
        .chez-divider-icon {
            width: 16px; height: 16px;
            border: 1.5px solid var(--primary-dark);
            transform: rotate(45deg);
        }
        .chez-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px; font-weight: 400;
            color: var(--primary-dark); margin-bottom: 30px;
        }
        .chez-text {
            font-size: 14px; line-height: 1.8;
            color: var(--text-muted);
            max-width: 700px; margin: 0 auto;
        }
        @media (max-width: 991px) {
            .about-hero-title { font-size: 36px; }
            .positionnement-card { flex-direction: column; padding: 30px; }
            .positionnement-title { white-space: normal; }
            .manifesto-wrapper { flex-direction: column; }
            .manifesto-image { min-height: 300px; }
            .manifesto-image-text { font-size: 32px; }
        }
        @media (max-width: 767px) {
            .about-hero-title { font-size: 28px; }
            .about-hero { min-height: 350px; }
            .positionnement-section { margin-top: -30px; }
            .valeur-card { margin-bottom: 20px; }
            .manifesto-image-text { font-size: 28px; max-width: 250px; }
            .manifesto-content { padding: 30px; }
            .chez-title { font-size: 24px; }
        }
        .list-hero {
            position: relative;
            height: 500px;
            background: linear-gradient(rgba(26, 39, 68, 0.2), rgba(26, 39, 68, 0.3)),
                        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover; background-position: center;
            display: flex; align-items: center;
            overflow: hidden;
        }
        .list-hero-content {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            gap: 40px;
        }
        .search-panel {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 24px;
            width: 320px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            flex-shrink: 0;
        }
        .search-panel h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px; font-weight: 400;
            color: var(--primary-dark); margin-bottom: 20px;
        }
        .search-select {
            width: 100%; padding: 10px 14px;
            border: 1px solid var(--border-light); border-radius: var(--radius-sm);
            font-size: 13px; color: var(--text-dark); background: var(--white);
            margin-bottom: 10px; appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%236b7280' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            cursor: pointer;
        }
        .search-select:focus { outline: none; border-color: var(--primary-dark); }
        .search-row { display: flex; gap: 8px; }
        .search-row .search-select { flex: 1; }
        .search-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 12px 0;
        }
        .search-check {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-muted);
            cursor: pointer;
        }
        .search-check input[type="checkbox"] {
            width: 14px; height: 14px;
            accent-color: var(--primary-dark);
            cursor: pointer;
        }
        .btn-rechercher {
            width: 100%; padding: 12px;
            background: var(--primary-dark); color: var(--white);
            border: none; border-radius: var(--radius-sm);
            font-size: 14px; font-weight: 600;
            cursor: pointer; transition: var(--transition);
        }
        .btn-rechercher:hover {
            background: var(--primary-navy); transform: translateY(-2px);
        }
        .list-section {
            background: var(--cream-light);
            padding: 40px 0 80px;
        }
        .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        .list-header h3 {
            font-family: 'Inter', sans-serif;
            font-size: 16px; font-weight: 600;
            color: var(--primary-dark);
        }
        .list-header span {
            font-size: 14px; color: var(--text-muted);
        }
        @media (max-width: 991px) {
            .list-hero { height: auto; padding: 40px 0; }
            .list-hero-content { flex-direction: column; padding: 0 20px; }
            .search-panel { width: 100%; max-width: 400px; }
        }
        @media (max-width: 767px) {
            .list-hero { min-height: 300px; }
        }
        .contact-hero {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(26, 39, 68, 0.4), rgba(26, 39, 68, 0.5)),
                        url('../images/contact-banner.png');
            background-size: cover; background-position: center;
            display: flex; align-items: center; justify-content: center;
            text-align: center;
        }
        .contact-hero-content { max-width: 700px; padding: 0 20px; }
        .contact-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px; font-weight: 400;
            color: var(--white); line-height: 1.3;
            text-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .form-section {
            background: var(--cream-light);
            padding: 0 0 60px;
            position: relative;
            z-index: 10;
            margin-top: -40px;
        }
        .contact-form-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            max-width: 700px;
            margin: 0 auto;
        }
        .contact-form-card h4 {
            font-family: 'Inter', sans-serif;
            font-size: 15px; font-weight: 500;
            color: var(--text-muted); margin-bottom: 24px;
            text-align: center;
        }
        .infos-section {
            background: var(--cream-light);
            padding: 40px 0 60px;
        }
        .info-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .info-icon {
            width: 40px; height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-light);
            display: flex; align-items: center; justify-content: center;
            color: var(--primary-dark); font-size: 18px;
            flex-shrink: 0;
        }
        .info-content h4 {
            font-family: 'Inter', sans-serif;
            font-size: 16px; font-weight: 600;
            color: var(--primary-dark); margin-bottom: 8px;
        }
        .info-content p {
            font-size: 14px; line-height: 1.7;
            color: var(--text-muted); margin: 0;
        }
        .info-content a {
            color: var(--primary-dark); text-decoration: none;
            font-size: 14px;
        }
        .info-content a:hover { text-decoration: underline; }
        .map-section {
            position: relative;
            height: 400px;
            background: #e5e5e5;
            overflow: hidden;
        }
        .map-section iframe {
            width: 100%; height: 100%;
            border: none;
        }
        .float-call {
            position: fixed;
            bottom: 30px; right: 30px;
            width: 50px; height: 50px;
            border-radius: 50%;
            background: var(--primary-dark); color: var(--white);
            border: none;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
            z-index: 999;
        }
        .float-call:hover {
            background: var(--primary-navy); transform: scale(1.1);
        }
        @media (max-width: 991px) {
            .contact-hero { height: 300px; }
            .contact-hero-title { font-size: 28px; }
            .contact-form-card { padding: 30px 20px; }
        }
        @media (max-width: 767px) {
            .contact-hero-title { font-size: 24px; }
            .map-section { height: 300px; }
        }
        .gallery-section { position: relative; padding: 20px 0 0; }
        .gallery-main {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 500px;
        }
        .gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
        .gallery-badge {
            position: absolute;
            top: 20px; left: 20px;
            padding: 6px 16px; border-radius: 6px;
            font-size: 12px; font-weight: 600; text-transform: uppercase;
            background: var(--primary-dark); color: var(--white);
            z-index: 10;
        }
        .gallery-nav {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            width: 45px; height: 45px; border-radius: 50%;
            background: rgba(255,255,255,0.9); border: none;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: var(--transition);
            color: var(--primary-dark); font-size: 18px;
            z-index: 10;
        }
        .gallery-nav:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
        .gallery-nav.prev { left: 20px; }
        .gallery-nav.next { right: 20px; }
        .detail-section { background: var(--cream-light); padding: 40px 0; }
        .detail-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .detail-title-section h1 {
            font-family: 'Playfair Display', serif;
            font-size: 28px; font-weight: 400;
            color: var(--primary-dark); margin-bottom: 6px;
        }
        .detail-location {
            display: flex; align-items: center; gap: 6px;
            color: var(--text-muted); font-size: 14px;
        }
        .detail-location i { color: var(--primary-dark); }
        .detail-price-section { text-align: right; }
        .detail-price { font-size: 32px; font-weight: 700; color: var(--primary-dark); }
        .detail-ref { font-size: 12px; color: var(--text-muted); }
        .detail-description h3 {
            font-family: 'Inter', sans-serif;
            font-size: 16px; font-weight: 600;
            color: var(--primary-dark); margin-bottom: 12px;
        }
        .detail-description p {
            font-size: 14px; line-height: 1.8;
            color: var(--text-muted); margin-bottom: 20px;
        }
        .detail-buttons { display: flex; gap: 12px; margin-bottom: 30px; }
        .detail-features h3 {
            font-family: 'Inter', sans-serif;
            font-size: 16px; font-weight: 600;
            color: var(--primary-dark); margin-bottom: 16px;
        }
        .feature-list { display: flex; gap: 30px; }
        .feature-list-item {
            display: flex; align-items: center; gap: 8px;
            font-size: 14px; color: var(--text-dark);
        }
        .feature-list-item i { color: var(--text-muted); font-size: 18px; }
        .contact-panel {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-md);
        }
        .contact-panel h4 {
            font-family: 'Inter', sans-serif;
            font-size: 16px; font-weight: 600;
            color: var(--primary-dark); margin-bottom: 16px;
        }
        .contact-agent {
            display: flex; align-items: center; gap: 12px;
            margin-bottom: 20px;
        }
        .contact-agent img {
            width: 50px; height: 50px; border-radius: 50%;
            object-fit: cover;
        }
        .contact-agent-info h5 {
            font-family: 'Inter', sans-serif;
            font-size: 14px; font-weight: 600; color: var(--primary-dark); margin: 0;
        }
        .contact-agent-info p { font-size: 12px; color: var(--text-muted); margin: 0; }
        .contact-agent-info a { font-size: 12px; color: var(--primary-dark); text-decoration: none; }
        .similar-section { background: var(--cream-light); padding: 40px 0 60px; }
        .similar-section h3 {
            font-family: 'Inter', sans-serif;
            font-size: 18px; font-weight: 600;
            color: var(--primary-dark); margin-bottom: 24px;
        }
        @media (max-width: 991px) {
            .gallery-main { height: 350px; }
            .detail-header { flex-direction: column; gap: 10px; }
            .detail-price-section { text-align: left; }
            .contact-panel { margin-top: 30px; }
        }
        @media (max-width: 767px) {
            .gallery-main { height: 250px; }
            .gallery-nav { width: 36px; height: 36px; font-size: 14px; }
            .detail-title-section h1 { font-size: 22px; }
            .detail-price { font-size: 24px; }
            .detail-buttons { flex-wrap: wrap; }
            .feature-list { flex-wrap: wrap; gap: 15px; }
        }