/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Primary */
    --primary-blue: #1A3A5C;
    --primary-gold: #C8A951;
    --primary-white: #FFFFFF;
    /* Secondary */
    --light-blue: #E8F0FE;
    --dark-gray: #2D3436;
    --medium-gray: #636E72;
    --light-gray: #F5F6FA;
    --border-gray: #DFE6E9;
    /* Status */
    --available: #00B894;
    --reserved: #FDCB6E;
    --under-contract: #6C5CE7;
    --sold: #E17055;
    --leased: #74B9FF;
    /* Energy */
    --energy-a-plus: #00A651;
    --energy-a: #51B747;
    --energy-b: #BED630;
    --energy-b-minus: #FFF200;
    --energy-c: #FDB913;
    --energy-d: #F37021;
    --energy-e: #EE1C25;
    --energy-f: #C2272D;
    --energy-g: #8B0304;
    /* Functional */
    --success: #00B894;
    --warning: #FDCB6E;
    --error: #E74C3C;
    --info: #0984E3;
    /* Spacing */
    --xs: 4px; --sm: 8px; --md: 16px; --lg: 24px; --xl: 32px;
    --2xl: 48px; --3xl: 64px; --4xl: 96px;
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-gray);
    background: var(--primary-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-gold); }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 1023px) { .container { padding: 0 24px; } }
@media (max-width: 767px) { .container { padding: 0 16px; } }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-body); font-size: 16px; font-weight: 600;
    border-radius: 8px; padding: 12px 24px; border: none; cursor: pointer;
    transition: all 0.2s ease; text-decoration: none;
}
.btn-primary { background: var(--primary-blue); color: #fff; }
.btn-primary:hover { background: var(--primary-gold); color: #fff; }
.btn-secondary { background: transparent; border: 2px solid var(--primary-blue); color: var(--primary-blue); }
.btn-secondary:hover { background: var(--primary-blue); color: #fff; }
.btn-cta {
    background: var(--primary-gold); color: #fff; font-weight: 700;
    padding: 14px 28px; box-shadow: 0 4px 12px rgba(200,169,81,0.3);
}
.btn-cta:hover { background: #b8993f; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ===== HEADER ===== */
.header {
    position: relative; z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border-gray);
    max-width: 100%;
}
.header .container {
    max-width: 100%;
}
.header-top {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; font-size: 13px; color: var(--medium-gray);
    border-bottom: 1px solid var(--border-gray);
    background: var(--light-gray);
}
.header-top a { color: var(--medium-gray); font-size: 13px; }
.header-main {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
}
.logo {
    font-family: var(--font-heading); font-size: 20px; font-weight: 700;
    color: var(--primary-blue); display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--primary-gold); }
.logo img {
    height: 35px;
    width: 90px;
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    display: block;
}
@media (max-width: 1023px) {
    .logo img { height: 30px; width: 80px; max-width: 80px; max-height: 80px; }
    .logo { font-size: 16px; }
}
@media (max-width: 767px) {
    .logo img { height: 28px; width: 75px; max-width: 75px; max-height: 75px; }
    .logo { font-size: 14px; }
    .header-main { padding: 10px 0; }
    .header-actions { gap: 8px; }
    .btn-sm { padding: 6px 10px; font-size: 12px; }
    .mobile-menu-btn { font-size: 20px; padding: 6px; }
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
    font-size: 14px; font-weight: 500; color: var(--dark-gray);
    position: relative; padding: 4px 0;
}
.nav a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
    height: 2px; background: var(--primary-gold); transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--primary-blue); }
.nav a.active { color: var(--primary-blue); }
.nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
    display: flex; gap: 4px; background: var(--light-gray);
    border-radius: 6px; padding: 2px;
}
.lang-switch a {
    padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600;
    color: var(--medium-gray); transition: all 0.2s;
}
.lang-switch a.active { background: var(--primary-blue); color: #fff; }

/* ===== MOBILE NAV ===== */
.mobile-menu-btn {
    display: none; background: none; border: none; font-size: 24px;
    cursor: pointer; color: var(--primary-blue);
    padding: 8px; border-radius: 8px;
    transition: background 0.2s;
}
.mobile-menu-btn:hover { background: var(--light-gray); }

.mobile-menu-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 9999;
    opacity: 0; transition: opacity 0.3s;
}
.mobile-menu-overlay.active { display: flex; opacity: 1; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 400px;
    height: 100%; background: #fff; z-index: 10000;
    padding: 24px; overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }

.mobile-menu-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border-gray);
}
.mobile-menu-close {
    background: none; border: none; font-size: 28px; cursor: pointer;
    color: var(--medium-gray); padding: 4px;
}
.mobile-menu-logo {
    font-family: var(--font-heading); font-size: 20px; font-weight: 700;
    color: var(--primary-blue);
}
.mobile-menu-nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px; border-radius: 10px; font-size: 16px; font-weight: 500;
    color: var(--dark-gray); transition: all 0.2s;
}
.mobile-menu-nav a:hover { background: var(--light-gray); color: var(--primary-blue); }
.mobile-menu-nav a.active { background: var(--light-blue); color: var(--primary-blue); font-weight: 600; }
.mobile-menu-nav a::after { content: '›'; font-size: 20px; color: var(--medium-gray); }
.mobile-menu-actions { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-gray); }
.mobile-menu-actions .btn { width: 100%; margin-bottom: 12px; }

.mobile-menu-lang {
    display: flex; gap: 8px; margin-top: 16px;
}
.mobile-menu-lang a {
    flex: 1; text-align: center; padding: 10px; border-radius: 8px;
    font-size: 14px; font-weight: 600; color: var(--medium-gray);
    background: var(--light-gray);
}
.mobile-menu-lang a.active { background: var(--primary-blue); color: #fff; }

@media (max-width: 1023px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .header-top { display: none; }
    .lang-switch { display: none; }
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 500px; display: flex; align-items: center;
    background: linear-gradient(135deg, #1A3A5C 0%, #2c5a8a 50%, #1A3A5C 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><defs><linearGradient id="g" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%231A3A5C;stop-opacity:0.9"/><stop offset="100%25" style="stop-color:%232c5a8a;stop-opacity:0.7"/></linearGradient></defs><rect fill="url(%23g)" width="1440" height="600"/><circle cx="200" cy="150" r="300" fill="rgba(200,169,81,0.05)"/><circle cx="1200" cy="400" r="250" fill="rgba(200,169,81,0.03)"/></svg>') center/cover;
    opacity: 0.5;
}
.hero-content {
    position: relative; z-index: 2; text-align: center; width: 100%;
    padding: 80px 32px;
}
.hero h1 {
    font-family: var(--font-heading); font-size: 48px; line-height: 1.2;
    color: #fff; margin-bottom: 16px;
}
.hero p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.hero-small { min-height: 300px; }
.hero-small h1 { font-size: 36px; }
@media (max-width: 767px) {
    .hero h1 { font-size: 32px; }
    .hero-small h1 { font-size: 28px; }
}

/* Search Bar */
.search-bar {
    background: #fff; border-radius: 12px; padding: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 4px;
    max-width: 900px; margin: 0 auto;
    flex-wrap: wrap;
}
.search-bar select, .search-bar input {
    flex: 1; height: 48px; border: 1px solid var(--border-gray);
    border-radius: 8px; padding: 0 16px; font-family: var(--font-body);
    font-size: 15px; color: var(--dark-gray); background: var(--light-gray);
    min-width: 150px;
}
.search-bar select { cursor: pointer; appearance: auto; }
.search-bar .btn-cta { white-space: nowrap; height: 48px; border-radius: 8px; }

@media (max-width: 767px) {
    .search-bar { flex-direction: column; padding: 16px; }
    .search-bar select, .search-bar input, .search-bar .btn-cta { width: 100%; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 16px 0; font-size: 14px; color: var(--medium-gray);
    background: var(--light-gray);
}
.breadcrumb a { color: var(--medium-gray); }
.breadcrumb a:hover { color: var(--primary-blue); }
.breadcrumb span { margin: 0 8px; color: var(--border-gray); }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.section-title {
    font-family: var(--font-heading); font-size: 36px; font-weight: 700;
    color: var(--primary-blue); margin-bottom: 16px;
}
.section-subtitle {
    font-size: 18px; color: var(--medium-gray); margin-bottom: 48px;
    max-width: 600px; margin-left: auto; margin-right: auto;
}
@media (max-width: 767px) {
    .section { padding: 40px 0; }
    .section-title { font-size: 28px; }
}

/* ===== PAGE TITLE ===== */
.page-header { text-align: center; margin-bottom: 48px; }
.page-header h1 { font-family: var(--font-heading); font-size: 36px; color: var(--primary-blue); }
.page-header p { color: var(--medium-gray); margin-top: 8px; }

/* ===== PROPERTY CARDS ===== */
.property-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1023px) { .property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .property-grid { grid-template-columns: 1fr; } }

.property-card {
    background: #fff; border: 1px solid var(--border-gray);
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.property-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.property-card-image {
    position: relative; aspect-ratio: 16/10; overflow: hidden;
    background: var(--light-blue);
}
.property-card-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.property-card-image .placeholder-img {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; background: linear-gradient(135deg, var(--light-blue), #d4e4f7);
    color: var(--primary-blue); font-size: 48px;
}
.badge {
    display: inline-block; border-radius: 20px; padding: 4px 12px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-available { background: var(--available); color: #fff; }
.badge-reserved { background: var(--reserved); color: var(--dark-gray); }
.badge-sold { background: var(--sold); color: #fff; }
.badge-featured { background: var(--primary-gold); color: #fff; }
.badge-contract { background: var(--under-contract); color: #fff; }
.badge-leased { background: var(--leased); color: var(--dark-gray); }
.property-card-badges {
    position: absolute; top: 12px; left: 12px; right: 12px;
    display: flex; justify-content: space-between;
}
.property-card-body { padding: 20px; }
.property-price {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--primary-blue); margin-bottom: 4px;
}
.property-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.property-location {
    font-size: 14px; color: var(--medium-gray); margin-bottom: 16px;
    display: flex; align-items: center; gap: 4px;
}
.property-features {
    display: flex; gap: 16px; padding-top: 16px;
    border-top: 1px solid var(--border-gray);
    flex-wrap: wrap;
}
.property-feature {
    display: flex; align-items: center; gap: 4px;
    font-size: 14px; color: var(--medium-gray);
}
.property-feature strong { color: var(--dark-gray); }
.energy-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 4px; font-size: 12px;
    font-weight: 700; color: #fff;
}
.property-card-actions {
    display: flex; gap: 8px; padding: 0 20px 20px;
}
.property-card-actions .btn { flex: 1; justify-content: center; font-size: 14px; }

/* ===== LOCATION CARDS ===== */
.location-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1023px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .location-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

.location-card {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
    background: linear-gradient(135deg, var(--primary-blue), #2c5a8a);
    transition: transform 0.3s;
}
.location-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.location-card-content {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
    z-index: 2; color: #fff;
}
.location-card h3 { font-family: var(--font-heading); font-size: 22px; margin-bottom: 4px; }
.location-card p { font-size: 14px; opacity: 0.8; }
.location-card:hover { transform: scale(1.02); }

/* ===== SERVICES ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 767px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    text-align: center; padding: 40px 24px; border-radius: 12px;
    background: #fff; border: 1px solid var(--border-gray);
    transition: all 0.3s;
}
.service-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(200,169,81,0.15);
}
.service-icon {
    width: 64px; height: 64px; border-radius: 12px;
    background: var(--light-blue); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px; font-size: 28px;
}
.service-card h3 {
    font-family: var(--font-heading); font-size: 22px; color: var(--primary-blue);
    margin-bottom: 12px;
}
.service-card p { font-size: 15px; color: var(--medium-gray); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), #2c5a8a);
    border-radius: 16px; padding: 60px 40px; text-align: center; color: #fff;
}
.cta-banner h2 {
    font-family: var(--font-heading); font-size: 36px; margin-bottom: 16px;
}
.cta-banner p { font-size: 18px; opacity: 0.85; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== TESTIMONIALS ===== */
.testimonial-carousel {
    max-width: 700px; margin: 0 auto; text-align: center;
    position: relative;
}
.testimonial {
    display: none; animation: fadeIn 0.5s;
}
.testimonial.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testimonial-text {
    font-size: 20px; font-style: italic; line-height: 1.6;
    color: var(--dark-gray); margin-bottom: 24px;
    font-family: var(--font-heading);
}
.testimonial-author { font-weight: 600; color: var(--primary-blue); }
.testimonial-stars { color: var(--primary-gold); font-size: 20px; margin-bottom: 16px; }
.testimonial-nav {
    display: flex; justify-content: center; gap: 16px; margin-top: 24px;
}
.testimonial-nav button {
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border-gray);
    background: #fff; cursor: pointer; font-size: 18px; color: var(--primary-blue);
    transition: all 0.2s;
}
.testimonial-nav button:hover { border-color: var(--primary-gold); background: var(--light-blue); }

/* ===== TRUST SECTION ===== */
.trust-badges {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-badge {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.trust-badge-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--light-blue); display: flex; align-items: center;
    justify-content: center; font-size: 24px;
}
.trust-badge span { font-size: 14px; font-weight: 600; color: var(--primary-blue); }

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
@media (max-width: 1023px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
    text-align: center; padding: 24px; background: #fff;
    border-radius: 12px; border: 1px solid var(--border-gray);
}
.team-card-image {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px;
    background: var(--light-blue); display: flex; align-items: center;
    justify-content: center; font-size: 48px; overflow: hidden;
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 18px; color: var(--primary-blue); margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--medium-gray); }

/* ===== FORM STYLES ===== */
.form-container { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; font-size: 14px; font-weight: 600; color: var(--dark-gray);
    margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
    width: 100%; height: 48px; border: 1px solid var(--border-gray);
    border-radius: 8px; padding: 0 16px; font-family: var(--font-body);
    font-size: 16px; color: var(--dark-gray); transition: all 0.2s;
    background: #fff;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}
.form-textarea { min-height: 120px; height: auto; padding: 12px 16px; resize: vertical; }
.form-checkbox {
    display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
}
.form-checkbox input { width: 20px; height: 20px; margin-top: 2px; }
.form-checkbox label { font-size: 14px; color: var(--medium-gray); }
.form-checkbox a { color: var(--primary-blue); text-decoration: underline; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 767px) { .form-row { grid-template-columns: 1fr; } }

/* ===== SEARCH FILTERS ===== */
.search-filters {
    background: #fff; border-radius: 12px; padding: 20px;
    margin-bottom: 32px; border: 1px solid var(--border-gray);
}
.filter-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { flex: 1; min-width: 150px; }
.filter-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 4px; color: var(--medium-gray); }

/* ===== PROPERTY DETAIL ===== */
.property-detail-header {
    display: grid; grid-template-columns: 2fr 1fr; gap: 32px; margin-bottom: 40px;
}
@media (max-width: 767px) { .property-detail-header { grid-template-columns: 1fr; } }
.property-gallery { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: var(--light-blue); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.property-sidebar { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--border-gray); height: fit-content; }
.property-ref { font-family: var(--font-mono); font-size: 13px; color: var(--medium-gray); margin-bottom: 8px; }
.property-detail-price { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--primary-blue); margin-bottom: 16px; }
.property-sidebar .btn { margin-bottom: 12px; }

/* ===== ENERGY CERTIFICATE ===== */
.energy-display { max-width: 400px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-gray); }
.energy-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.energy-row { display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.energy-label {
    width: 28px; height: 24px; display: flex; align-items: center;
    justify-content: center; font-size: 11px; font-weight: 700; color: #fff;
    border-radius: 3px;
}
.energy-bar { height: 24px; border-radius: 0 3px 3px 0; transition: all 0.3s; flex: 1; }
.energy-row.active { transform: scale(1.05); }
.energy-row.active .energy-bar { box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.energy-info { font-size: 12px; color: var(--medium-gray); margin-top: 12px; }

/* ===== PROPERTY FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 767px) { .features-grid { grid-template-columns: 1fr; } }
.feature-category { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--border-gray); }
.feature-category h4 { font-size: 16px; color: var(--primary-blue); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-gray); }
.feature-list { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { background: var(--light-gray); padding: 6px 12px; border-radius: 20px; font-size: 13px; }

/* ===== MAP SECTION ===== */
.map-section { height: 400px; background: var(--light-gray); border-radius: 12px; display: flex; align-items: center; justify-content: center; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1023px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-gray); }
.blog-card-image { aspect-ratio: 16/9; background: var(--light-blue); display: flex; align-items: center; justify-content: center; }
.blog-card-content { padding: 20px; }
.blog-card-meta { font-size: 12px; color: var(--medium-gray); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 18px; color: var(--primary-blue); margin-bottom: 8px; }
.blog-card p { font-size: 14px; color: var(--medium-gray); line-height: 1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--primary-blue); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
    padding-bottom: 40px;
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer h4 {
    font-family: var(--font-heading); color: #fff; font-size: 18px;
    margin-bottom: 20px;
}
.footer p { font-size: 14px; line-height: 1.7; }
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--primary-gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-logo {
    font-family: var(--font-heading); font-size: 24px; color: #fff;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 50px !important;
    width: 160px;
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
}
.footer-logo span { color: var(--primary-gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 18px; color: #fff; transition: all 0.2s;
}
.footer-social a:hover { background: var(--primary-gold); }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.newsletter-form input {
    flex: 1; min-width: 200px; height: 44px; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; padding: 0 16px; background: rgba(255,255,255,0.1);
    color: #fff; font-family: var(--font-body); font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 9998;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff; border: none; cursor: pointer;
    font-size: 28px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: #fff; box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
    padding: 24px; animation: slideUp 0.5s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 300px; font-size: 14px; color: var(--medium-gray); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; border: 1px solid var(--border-gray); font-size: 14px;
    color: var(--dark-gray); transition: all 0.2s;
}
.pagination a:hover, .pagination a.active { background: var(--primary-blue); color: #fff; border-color: var(--primary-blue); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-heading); font-size: 24px; color: var(--primary-blue); margin: 32px 0 16px; }
.legal-content h3 { font-size: 18px; color: var(--dark-gray); margin: 24px 0 12px; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.8; color: var(--medium-gray); margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; list-style: disc; }

/* ===== CONTACT INFO ===== */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 767px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-info-card { text-align: center; padding: 32px; background: #fff; border-radius: 12px; border: 1px solid var(--border-gray); }
.contact-info-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--light-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; }
.contact-info-card h3 { font-size: 18px; color: var(--primary-blue); margin-bottom: 8px; }
.contact-info-card p { font-size: 15px; color: var(--medium-gray); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 767px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { text-align: center; padding: 32px; background: #fff; border-radius: 12px; border: 1px solid var(--border-gray); }
.stat-number { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--primary-blue); }
.stat-label { font-size: 14px; color: var(--medium-gray); margin-top: 8px; }

/* ===== PROPERTY CAROUSEL ===== */
.property-carousel { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: var(--light-gray); }
.property-carousel-inner { position: relative; width: 100%; height: 100%; overflow: hidden; }
.property-carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.property-carousel-slide.active { opacity: 1; }
.property-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.9);
    border: none; cursor: pointer; font-size: 20px; color: var(--primary-blue);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.carousel-btn:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; border: none; }
.carousel-dot.active { background: #fff; transform: scale(1.2); }
.carousel-count { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.6); color: #fff; padding: 6px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; z-index: 10; }
@media (max-width: 767px) {
    .carousel-btn { width: 40px; height: 40px; font-size: 18px; }
    .carousel-btn.prev { left: 8px; }
    .carousel-btn.next { right: 8px; }
}

/* ===== THUMBNAIL STRIP ===== */
.property-thumbnails { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; padding-bottom: 8px; }
.property-thumbnail { flex-shrink: 0; width: 80px; height: 60px; border-radius: 6px; overflow: hidden; cursor: pointer; opacity: 0.6; transition: all 0.2s; border: 2px solid transparent; }
.property-thumbnail:hover { opacity: 0.9; }
.property-thumbnail.active { opacity: 1; border-color: var(--primary-blue); }
.property-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
