:root {
    --blue-950: #0A1628;
    --blue-900: #0F2140;
    --blue-800: #14305E;
    --blue-700: #1A4080;
    --blue-600: #1E56A0;
    --blue-500: #2563EB;
    --blue-400: #4A80F0;
    --blue-300: #7BA3F7;
    --blue-200: #B4CCFB;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;

    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 72px;
    --container: 1240px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a, a:link, a:visited, a:hover, a:active { color: inherit; text-decoration: none !important; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
select, input { font-family: inherit; }

::selection { background: var(--blue-200); color: var(--blue-900); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(10,22,40,0.06); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%; max-width: var(--container); margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.logo { display: flex; align-items: center; gap: 10px; z-index: 101; }
.logo-text {
    font-family: var(--font-body);
    font-weight: 700; font-size: 20px;
    color: var(--blue-900); letter-spacing: -0.02em;
}
.logo-text span { color: var(--blue-500); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
    font-size: 14px; font-weight: 500; color: var(--gray-600);
    transition: color 0.25s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--blue-500);
    transition: width 0.35s var(--ease);
}
.nav-link:hover { color: var(--blue-900); }
.nav-link:hover::after { width: 100%; }

.nav-cta, a.nav-cta, a.nav-cta:visited {
    font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
    color: var(--white) !important; background: var(--blue-600);
    padding: 10px 22px; border-radius: 6px;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(30,86,160,0.25); }

.lang-sw { font-size: 13px; color: var(--gray-400); display: flex; gap: 2px; }
.lang-sw a { padding: 4px 6px; border-radius: 4px; transition: all 0.2s; }
.lang-sw a.active { color: var(--blue-600); font-weight: 600; background: var(--blue-50); }
.lang-sw a:hover { color: var(--blue-600); }

.mobile-toggle {
    display: none; width: 28px; height: 20px;
    flex-direction: column; justify-content: space-between; z-index: 101;
}
.mobile-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--blue-900); border-radius: 2px;
    transition: all 0.35s var(--ease); transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px;
    opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
    font-family: var(--font-display); font-size: 26px; font-weight: 500;
    color: var(--blue-900); transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--blue-500); }

/* ════════════════════════════════════
   FILTER SECTION (hero replacement)
════════════════════════════════════ */
.filter-hero {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 48px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.filter-intro {
    margin-bottom: 36px;
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.filter-intro h1 {
    font-family: var(--font-display);
    font-weight: 500; font-size: clamp(28px, 4vw, 40px);
    color: var(--blue-900); line-height: 1.2;
}
.filter-intro h1 em { font-style: italic; color: var(--blue-500); }
.filter-intro p { font-size: 15px; color: var(--gray-500); max-width: 400px; }

.filter-panel { display: flex; flex-direction: column; gap: 28px; }

.filter-row {
    display: flex; align-items: flex-start; gap: 20px;
    flex-wrap: wrap;
}
.filter-row-label {
    width: 140px; flex-shrink: 0;
    font-family: var(--font-display);
    font-weight: 600; font-size: 18px;
    color: var(--blue-900);
    padding-top: 12px;
}
.filter-row-fields {
    flex: 1; display: flex; flex-wrap: wrap; gap: 16px;
    min-width: 0;
}

.field-group { flex: 1; min-width: 180px; }
.field-group.wide { min-width: 300px; flex: 2; }

.field-label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gray-500); margin-bottom: 6px;
}

.field-select, .field-input {
    width: 100%; padding: 12px 16px; font-size: 15px;
    color: var(--gray-800); background: var(--white);
    border: 1.5px solid var(--gray-200); border-radius: 6px;
    transition: border-color 0.25s, box-shadow 0.25s;
    appearance: none; outline: none;
}
.field-select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field-select:focus, .field-input:focus { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.field-select option { color: var(--gray-800); }

/* Price range slider */
.range-wrapper { padding-top: 8px; }
.range-slider-container {
    position: relative; height: 36px; margin: 12px 0 8px;
    display: flex; align-items: center;
}
.range-track {
    position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
    height: 4px; background: var(--gray-200); border-radius: 4px;
}
.range-fill {
    position: absolute; top: 0; left: 0; right: 0;
    height: 100%; background: var(--blue-500); border-radius: 4px;
}
.range-slider-container input[type="range"] {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    -webkit-appearance: none; appearance: none;
    background: transparent; pointer-events: none; outline: none; margin: 0; padding: 0;
}
.range-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--white); border: 2.5px solid var(--blue-500);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    pointer-events: all; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.range-slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15); box-shadow: 0 3px 10px rgba(37,99,235,0.25);
}
.range-slider-container input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--white); border: 2.5px solid var(--blue-500);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    pointer-events: all; cursor: pointer;
}
.range-labels { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-500); font-weight: 500; }

.filter-actions {
    display: flex; align-items: center; gap: 20px;
    padding-top: 8px; flex-wrap: wrap;
}
.btn-search {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px; background: var(--blue-600);
    color: var(--white); font-size: 15px; font-weight: 600;
    border-radius: 8px; letter-spacing: 0.01em;
    transition: all 0.35s var(--ease);
}
.btn-search:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,86,160,0.25); }
.btn-search .count {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.2); padding: 3px 10px;
    border-radius: 20px; font-size: 13px; font-weight: 700;
}
.btn-reset {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; color: var(--gray-500); font-weight: 500;
    transition: color 0.2s;
}
.btn-reset:hover { color: var(--blue-600); }
.btn-reset svg { width: 16px; height: 16px; }

/* Divider line inside filter */
.filter-divider { border: none; border-top: 1px solid var(--gray-100); margin: 0; }

/* ════════════════════════════════════
   SECTION HELPERS
════════════════════════════════════ */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-alt { background: var(--gray-50); }
.section-blue-light { background: var(--blue-50); }
.section-blue { background: var(--blue-900); color: var(--white); }

.section-label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--blue-500); margin-bottom: 12px;
}
.section-blue .section-label { color: var(--blue-300); }

.section-heading {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(28px, 4vw, 42px); line-height: 1.18;
    color: var(--blue-900); margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--blue-500); }
.section-blue .section-heading { color: var(--white); }
.section-blue .section-heading em { color: var(--blue-300); }

.section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border: 1.5px solid var(--blue-200);
    font-size: 14px; font-weight: 500; color: var(--blue-600);
    border-radius: 6px; transition: all 0.3s var(--ease);
}
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue-400); }
.btn-outline::after { content: '→'; transition: transform 0.25s var(--ease); }
.btn-outline:hover::after { transform: translateX(3px); }

.section-blue .btn-outline { border-color: rgba(255,255,255,0.2); color: var(--blue-200); }
.section-blue .btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--blue-300); }

/* ════════════════════════════════════
   PROPERTY CARDS
════════════════════════════════════ */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prop-card {
    background: var(--white); border-radius: 10px;
    border: 1px solid var(--gray-200);
    overflow: hidden; transition: all 0.4s var(--ease);
    cursor: pointer; display: flex; flex-direction: column; height: 100%;
}
.prop-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(10,22,40,0.1); border-color: var(--blue-200); }

.properties-grid > a:first-child .prop-card { grid-row: span 2; }
.properties-grid > a:first-child .prop-card .prop-img { height: 100%; }

.prop-img { position: relative; overflow: hidden; aspect-ratio: 16/11; }
.properties-grid > a:first-child .prop-card .prop-img { aspect-ratio: auto; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.prop-card:hover .prop-img img { transform: scale(1.05); }

.prop-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 12px; border-radius: 4px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; z-index: 2;
}
.badge-sale { background: var(--blue-600); color: var(--white); }
.badge-rent { background: var(--white); color: var(--blue-600); border: 1px solid var(--blue-200); }
.badge-new { background: var(--blue-900); color: var(--white); }

.prop-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.prop-type {
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue-400); margin-bottom: 6px;
}
.prop-name {
    font-family: var(--font-display); font-weight: 500;
    font-size: 19px; color: var(--blue-900); margin-bottom: 8px; line-height: 1.3;
}
.prop-loc {
    font-size: 13px; color: var(--gray-500); display: flex;
    align-items: center; gap: 5px; margin-bottom: 14px;
}
.prop-loc svg { width: 14px; height: 14px; color: var(--blue-400); flex-shrink: 0; }
.prop-meta {
    display: flex; gap: 16px; padding-top: 14px;
    border-top: 1px solid var(--gray-100); font-size: 13px; color: var(--gray-500);
}
.prop-meta span { display: flex; align-items: center; gap: 4px; }
.prop-price {
    font-family: var(--font-display); font-weight: 600;
    font-size: 21px; color: var(--blue-600); margin-top: auto; padding-top: 14px;
}

/* ════════════════════════════════════
   DEVELOPER PROJECTS
════════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.project-card {
    background: var(--white); border-radius: 10px;
    border: 1px solid var(--gray-200); overflow: hidden;
    transition: all 0.4s var(--ease); cursor: pointer;
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); border-color: var(--blue-200); }
.project-card a { display: block; color: inherit; }
.project-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-overlay {
    position: absolute; top: 14px; left: 14px; display: flex; gap: 8px;
}
.project-status {
    padding: 5px 14px; border-radius: 4px; font-size: 11px;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.status-selling { background: #16a34a; color: var(--white); }
.status-prep { background: var(--blue-600); color: var(--white); }
.status-sold { background: var(--gray-600); color: var(--white); }
.project-body { padding: 24px; }
.project-name {
    font-family: var(--font-display); font-weight: 600;
    font-size: 22px; color: var(--blue-900); margin-bottom: 8px;
}
.project-loc {
    font-size: 13px; color: var(--gray-500); display: flex;
    align-items: center; gap: 5px; margin-bottom: 18px;
}
.project-loc svg { width: 14px; height: 14px; color: var(--blue-400); flex-shrink: 0; }
.project-details {
    display: flex; gap: 0; border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100); margin-bottom: 16px;
}
.project-detail {
    flex: 1; padding: 14px 0; text-align: center;
    border-right: 1px solid var(--gray-100);
}
.project-detail:last-child { border-right: none; }
.detail-num {
    display: block; font-family: var(--font-display); font-weight: 600;
    font-size: 20px; color: var(--blue-600); line-height: 1;
}
.detail-label { display: block; font-size: 11px; color: var(--gray-400); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.project-price-range {
    font-family: var(--font-display); font-weight: 500;
    font-size: 16px; color: var(--blue-900);
}
.project-price-range span { color: var(--gray-400); font-weight: 400; }

/* ════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px); align-items: center;
}
.about-img { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(37,99,235,0.08); border-radius: 12px;
}
.about-text p { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.75; }
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 32px; padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.about-stat-num {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(28px, 3vw, 38px); color: var(--blue-600); line-height: 1;
}
.about-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
    padding: 36px 24px; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: 10px;
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
    display: flex; flex-direction: column; height: 100%;
}
.svc-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--blue-500);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.45s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(10,22,40,0.08); border-color: var(--blue-100); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 44px; height: 44px; color: var(--blue-500); margin-bottom: 20px; }
.svc-icon svg { width: 100%; height: 100%; }
.svc-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--blue-900); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; flex: 1; }

/* ════════════════════════════════════
   INTERNATIONAL
════════════════════════════════════ */
.intl-scroll {
    display: flex; gap: 20px; overflow-x: auto;
    padding-bottom: 16px; scroll-snap-type: x mandatory;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.intl-card {
    flex: 0 0 300px; scroll-snap-align: start;
    border-radius: 10px; overflow: hidden; position: relative; cursor: pointer;
}
.intl-card img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.intl-card:hover img { transform: scale(1.05); }
.intl-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
}
.intl-country { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 4px; }
.intl-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--white); }
.intl-price { font-size: 16px; color: var(--blue-200); margin-top: 6px; }

/* ════════════════════════════════════
   LIFESTYLE
════════════════════════════════════ */
.life-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.life-card { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.life-card:first-child { grid-row: span 2; }
.life-card img {
    width: 100%; height: 100%; object-fit: cover;
    aspect-ratio: 4/3; transition: transform 0.7s var(--ease);
}
.life-card:first-child img { aspect-ratio: auto; }
.life-card:hover img { transform: scale(1.05); }
.life-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 48px 20px 20px;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
}
.life-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 6px; }
.life-title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--white); line-height: 1.3; }

/* ════════════════════════════════════
   NEWSLETTER
════════════════════════════════════ */
.newsletter { padding: clamp(60px, 8vw, 100px) 0; background: var(--blue-50); text-align: center; }
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter-form {
    display: flex; gap: 0; margin-top: 28px;
    border-radius: 8px; overflow: hidden;
    border: 1.5px solid var(--blue-200);
    background: var(--white);
}
.newsletter-form input {
    flex: 1; padding: 16px 20px; border: none; outline: none;
    font-size: 15px; color: var(--gray-800); background: transparent;
}
.newsletter-form input::placeholder { color: var(--gray-400); }
.newsletter-form button {
    padding: 16px 28px; background: var(--blue-600);
    color: var(--white); font-weight: 600; font-size: 14px;
    transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--blue-700); }
.newsletter p { font-size: 14px; color: var(--gray-500); margin-top: 12px; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { padding: 64px 0 32px; background: var(--blue-950); color: rgba(255,255,255,0.6); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer .logo-text { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
    color: rgba(255,255,255,0.5); transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--blue-400); color: var(--blue-400); }
.footer-social a svg { width: 15px; height: 15px; }

.footer-col h4 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 16px; color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; transition: color 0.2s; color: rgba(255,255,255,0.6); }
.footer-col a:visited { color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--blue-300); }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-links a:visited { color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: var(--blue-300); }
.footer-bottom span { color: rgba(255,255,255,0.35); }

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: all 0.7s var(--ease); }
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .properties-grid { grid-template-columns: 1fr 1fr; }
    .properties-grid > a:first-child .prop-card { grid-row: auto; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .filter-row-label { width: 100%; padding-top: 0; }
}

@media (max-width: 640px) {
    .properties-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .intl-card { flex: 0 0 260px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-stats { grid-template-columns: 1fr; gap: 16px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { border-radius: 0; }
}

/* ════════════════════════════════════
   CONTACT FORM
════════════════════════════════════ */
.contact-section { padding: clamp(64px, 8vw, 110px) 0; background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4vw, 42px); color: var(--blue-900); margin-bottom: 16px; line-height: 1.18; }
.contact-info h2 em { font-style: italic; color: var(--blue-500); }
.contact-info p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 15px; color: var(--gray-700); }
.contact-detail svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; }
.contact-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 32px; }
.contact-form-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--blue-900); margin-bottom: 24px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.cf-group input, .cf-group select, .cf-group textarea {
    width: 100%; padding: 12px 16px; font-size: 15px; font-family: inherit;
    border: 1.5px solid var(--gray-200); border-radius: 8px; outline: none;
    color: var(--gray-800); transition: border-color 0.2s, box-shadow 0.2s; background: var(--white);
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.cf-group textarea { min-height: 100px; resize: vertical; }
.cf-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.cf-service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.cf-service-opt { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; cursor: pointer; font-size: 14px; color: var(--gray-700); transition: all 0.2s; }
.cf-service-opt:hover { border-color: var(--blue-300); }
.cf-service-opt input { display: none; }
.cf-service-opt.selected { border-color: var(--blue-500); background: var(--blue-50); color: var(--blue-700); font-weight: 500; }
.cf-service-opt .check { width: 18px; height: 18px; border-radius: 4px; border: 2px solid var(--gray-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.cf-service-opt.selected .check { background: var(--blue-500); border-color: var(--blue-500); }
.cf-service-opt.selected .check::after { content: '✓'; color: white; font-size: 12px; font-weight: 700; }
.cf-submit { width: 100%; padding: 16px; background: var(--blue-600); color: var(--white); font-size: 15px; font-weight: 600; border: none; border-radius: 8px; cursor: pointer; transition: background 0.25s; }
.cf-submit:hover { background: var(--blue-700); }
.cf-msg { text-align: center; padding: 12px; border-radius: 8px; margin-top: 12px; font-weight: 500; font-size: 14px; display: none; }
.cf-msg.success { display: block; background: #f0fdf4; color: #16a34a; }
.cf-msg.error { display: block; background: #fef2f2; color: #ef4444; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }
    .cf-service-options { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   LISTING PAGES
════════════════════════════════════ */
.page-hero { padding: calc(var(--header-h) + 40px) 0 40px; background: var(--blue-50); }
.page-hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4vw, 42px); color: var(--blue-900); }
.page-hero h1 em { font-style: italic; color: var(--blue-500); }
.page-hero p { font-size: 15px; color: var(--gray-500); margin-top: 8px; }
.listing-section { padding: 48px 0 80px; }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.listing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.project-detail-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; margin-bottom: 40px; }
.project-detail-card .pd-top { display: grid; grid-template-columns: 1fr 1fr; }
.project-detail-card .pd-img { aspect-ratio: 16/10; overflow: hidden; }
.project-detail-card .pd-img img { width: 100%; height: 100%; object-fit: cover; }
.project-detail-card .pd-info { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.project-detail-card .pd-info h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--blue-900); margin-bottom: 8px; }
.project-detail-card .pd-info .pd-loc { font-size: 14px; color: var(--gray-500); display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.project-detail-card .pd-info .pd-loc svg { width: 16px; height: 16px; color: var(--blue-400); }
.project-detail-card .pd-stats { display: flex; gap: 0; border-top: 1px solid var(--gray-100); }
.project-detail-card .pd-stat { flex: 1; padding: 16px; text-align: center; border-right: 1px solid var(--gray-100); }
.project-detail-card .pd-stat:last-child { border-right: none; }
.project-detail-card .pd-stat-num { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--blue-600); }
.project-detail-card .pd-stat-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.pd-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--blue-600); color: var(--white); border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.25s; margin-top: 16px; }
.pd-link:hover { background: var(--blue-700); }
.pd-status { display: inline-block; padding: 5px 14px; border-radius: 4px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; background: #16a34a; color: white; margin-bottom: 12px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--blue-500); font-weight: 500; margin-bottom: 24px; }
.back-link:visited { color: var(--blue-500); }
.back-link:hover { color: var(--blue-700); }

@media (max-width: 1024px) {
    .listing-grid { grid-template-columns: 1fr 1fr; }
    .listing-grid-4 { grid-template-columns: 1fr 1fr; }
    .project-detail-card .pd-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .listing-grid { grid-template-columns: 1fr; }
    .listing-grid-4 { grid-template-columns: 1fr; }
}

/* Equal height card wrappers */
.properties-grid > a, .services-grid > a, .listing-grid > a { display: flex; height: 100%; }
.properties-grid > a .prop-card, .listing-grid > a .prop-card { width: 100%; }
.project-card { display: flex; flex-direction: column; height: 100%; }
.project-card a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.project-body { flex: 1; display: flex; flex-direction: column; }
.project-price-range { margin-top: auto; }
