/* ================================================================
   LUXURY ESTATE — Premium Real Estate Marketplace
   style.css — High-end, luxury aesthetic with glassmorphism
   ================================================================ */

/* ─── CSS VARIABLES ──────────────────────────────────────────────── */
:root {
    --color-navy: #0c1829;
    --color-navy-light: #14233a;
    --color-navy-mid: #1a2a3e;
    --color-slate: #f0f2f5;
    --color-slate-dark: #d1d5db;
    --color-gold: #d4af37;
    --color-gold-soft: #e8d5a3;
    --color-gold-dark: #b8962a;
    --color-white: #ffffff;
    --color-gray-100: #f7f8fa;
    --color-gray-200: #e8eaed;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-text: #1a2a3a;
    --color-text-light: #5a6a7a;
    --color-text-muted: #8a9aaa;

    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    --glass-blur: 16px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.20);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.20);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    --container-max: 1280px;
    --header-height: 72px;
}

/* ─── RESET & BASE ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--color-slate);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── SCROLLBAR ───────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-navy);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-navy);
    color: var(--color-white);
}
.btn--primary:hover {
    background: var(--color-navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--gold {
    background: linear-gradient(145deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-navy);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.30);
}

.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.btn--whatsapp {
    background: #25D366;
    color: #fff;
}
.btn--whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn--call {
    background: var(--color-navy);
    color: #fff;
}
.btn--call:hover {
    background: var(--color-navy-light);
    transform: translateY(-2px);
}

.btn--email {
    background: var(--color-gray-200);
    color: var(--color-text);
}
.btn--email:hover {
    background: var(--color-gray-300);
    transform: translateY(-2px);
}

.btn--search {
    padding: 0.85rem 2.5rem;
    font-size: 0.95rem;
    min-width: 140px;
}

/* ─── HEADER ──────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 24, 41, 0.85);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: var(--header-height);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(12, 24, 41, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.30);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
}
.logo__icon {
    color: var(--color-gold);
    font-size: 1.4rem;
}
.logo__accent {
    color: var(--color-gold);
}

/* Navigation */
.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav__link {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}
.nav__link:hover {
    color: var(--color-white);
}
.nav__link:hover::after {
    width: 100%;
}

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__ornament {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.06);
    pointer-events: none;
}
.hero__ornament--1 {
    width: 60vmax;
    height: 60vmax;
    top: -20%;
    right: -15%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
}
.hero__ornament--2 {
    width: 40vmax;
    height: 40vmax;
    bottom: -10%;
    left: -10%;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.6rem;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.20);
    color: var(--color-gold-soft);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 10vw, 5.6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-white);
    letter-spacing: -0.02em;
}
.hero__gold {
    color: var(--color-gold);
    font-style: italic;
}

.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 1.2rem auto 0;
    font-weight: 300;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__stat {
    text-align: center;
}
.hero__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-gold);
}
.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.40);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── SEARCH SECTION ─────────────────────────────────────────────── */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -2.5rem;
    padding-bottom: 2rem;
}

.search-glass {
    background: rgba(12, 24, 41, 0.75);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.50), 0 0 0 1px rgba(212, 175, 55, 0.04) inset;
    padding: 1.5rem 2rem;
}

.search-glass__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
}

.search-glass__group {
    flex: 1 1 160px;
    min-width: 140px;
}
.search-glass__group--price {
    flex: 1 1 200px;
    min-width: 180px;
}

.search-glass__label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.40);
    margin-bottom: 0.3rem;
}
.search-glass__label i {
    color: var(--color-gold);
    font-size: 0.65rem;
}

.search-glass__input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: all var(--transition);
    outline: none;
}
.search-glass__input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}
.search-glass__input:focus {
    border-color: rgba(212, 175, 55, 0.30);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.05);
}
.search-glass__input option {
    background: var(--color-navy-light);
    color: var(--color-white);
}

.search-glass__price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.search-glass__price-row .search-glass__input {
    flex: 1;
}
.search-glass__price-sep {
    color: rgba(255, 255, 255, 0.20);
    font-size: 0.8rem;
}

/* ─── PROPERTIES ──────────────────────────────────────────────────── */
.properties {
    padding: 4rem 0 5rem;
    background: var(--color-slate);
}

.properties__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.properties__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.10);
}
.properties__label i {
    font-size: 0.65rem;
}

.properties__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--color-text);
    margin-top: 0.3rem;
    line-height: 1.1;
}
.properties__gold {
    color: var(--color-gold);
}

.properties__sub {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.properties__count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: var(--color-white);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}
.properties__count-num {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1rem;
}

/* Property Grid */
.properties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ─── PROPERTY CARD ──────────────────────────────────────────────── */
.property-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.property-card:hover .property-card__image img {
    transform: scale(1.06);
}

.property-card__image {
    position: relative;
    overflow: hidden;
    padding-top: 66.66%;
    background: var(--color-gray-200);
}
.property-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.property-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.property-card__badge {
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-sm);
}
.property-card__badge--verified {
    background: #22c55e;
    color: #fff;
}
.property-card__badge--featured {
    background: var(--color-gold);
    color: var(--color-navy);
}

.property-card__status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.property-card__status--sale {
    background: var(--color-navy);
}
.property-card__status--rent {
    background: #7c3aed;
}

.property-card__body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-card__title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.15rem;
    transition: color var(--transition);
}
.property-card:hover .property-card__title {
    color: var(--color-gold-dark);
}

.property-card__location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.property-card__location i {
    color: var(--color-gold);
    font-size: 0.7rem;
}

.property-card__price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin: 0.4rem 0 0.6rem;
}
.property-card__price span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
}

.property-card__specs {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.7rem;
    border-top: 1px solid var(--color-gray-200);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}
.property-card__specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.property-card__specs i {
    color: var(--color-gray-400);
    font-size: 0.7rem;
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────── */
.testimonials {
    padding: 5rem 0;
    background: var(--color-navy);
    color: var(--color-white);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.10);
}
.testimonials__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-top: 0.5rem;
}
.testimonials__gold {
    color: var(--color-gold);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    color: var(--color-gold);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}
.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.9rem;
}
.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}
.testimonial-card__role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.40);
}

/* ─── NEWSLETTER ──────────────────────────────────────────────────── */
.newsletter {
    padding: 5rem 0;
    background: var(--color-slate);
}

.newsletter__glass {
    background: rgba(12, 24, 41, 0.04);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    border: 1px solid rgba(12, 24, 41, 0.06);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.newsletter__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.3rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.10);
    margin-bottom: 1rem;
}

.newsletter__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--color-text);
}
.newsletter__gold {
    color: var(--color-gold);
}

.newsletter__sub {
    color: var(--color-text-muted);
    max-width: 480px;
    margin: 0.5rem auto 1.5rem;
    font-size: 0.95rem;
}

.newsletter__form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto;
}
.newsletter__input {
    flex: 1;
    min-width: 220px;
    padding: 0.75rem 1.2rem;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition);
}
.newsletter__input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.newsletter__note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.8rem;
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.60);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__brand .logo {
    font-size: 1.3rem;
}
.footer__brand-text {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 300px;
    margin-top: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}
.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.40);
    transition: all var(--transition);
}
.footer__social-link:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.footer__col-title {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.footer__col-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.footer__col-list a {
    transition: color var(--transition);
}
.footer__col-list a:hover {
    color: var(--color-gold);
}

.footer__col-list--contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.footer__col-list--contact i {
    color: var(--color-gold);
    width: 16px;
    font-size: 0.8rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}
.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer__bottom-links a {
    transition: color var(--transition);
}
.footer__bottom-links a:hover {
    color: var(--color-gold);
}

/* ─── PROPERTY DETAIL MODAL ──────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 41, 0.75);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
}

.modal__container {
    position: relative;
    z-index: 1;
    background: rgba(20, 35, 58, 0.92);
    backdrop-filter: blur(30px) saturate(1.3);
    -webkit-backdrop-filter: blur(30px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.60);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal.active .modal__container {
    transform: scale(1) translateY(0);
}
.modal__container::-webkit-scrollbar {
    width: 4px;
}
.modal__container::-webkit-scrollbar-track {
    background: transparent;
}
.modal__container::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 8px;
}

.modal__close {
    position: sticky;
    top: 0.75rem;
    float: right;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.50);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.75rem 0.75rem 0 0;
}
.modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: rotate(90deg);
}

.modal__gallery {
    padding: 0 1.5rem 1rem;
}
.modal__main-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-navy-light);
}
.modal__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.modal__thumbnails .thumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    opacity: 0.6;
}
.modal__thumbnails .thumb:hover {
    opacity: 0.9;
}
.modal__thumbnails .thumb.active {
    border-color: var(--color-gold);
    opacity: 1;
}
.modal__thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__body {
    padding: 0 1.5rem 2rem;
}

.modal__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 600;
}
.modal__location {
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.modal__location i {
    color: var(--color-gold);
    font-size: 0.7rem;
}

.modal__price-wrap {
    text-align: right;
}
.modal__price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    display: block;
}
.modal__status {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.50);
}

.modal__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 1.2rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.modal__spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.70);
}
.modal__spec i {
    color: var(--color-gold);
    font-size: 0.75rem;
}
.modal__spec span {
    color: var(--color-white);
    font-weight: 500;
}

.modal__description h4 {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.modal__description p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

.modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.modal__actions .btn {
    flex: 1;
    min-width: 120px;
}

/* ─── LOGIN MODAL ──────────────────────────────────────────────────── */
.login-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.login-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 41, 0.80);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.login-modal__container {
    position: relative;
    z-index: 1;
    background: rgba(20, 35, 58, 0.92);
    backdrop-filter: blur(30px) saturate(1.3);
    -webkit-backdrop-filter: blur(30px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    max-width: 460px;
    width: 100%;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.60);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.login-modal.active .login-modal__container {
    transform: scale(1) translateY(0);
}

.login-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.40);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: rotate(90deg);
}

.login-modal__content {
    padding: 2.5rem 2rem 2rem;
}

.login-modal__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}
.login-modal__icon {
    color: var(--color-gold);
    font-size: 1.4rem;
}
.login-modal__brand-accent {
    color: var(--color-gold);
}

.login-modal__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 0.3rem;
}
.login-modal__sub {
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

.login-modal__field {
    margin-bottom: 1.2rem;
}

.login-modal__label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 0.3rem;
}
.login-modal__label i {
    color: var(--color-gold);
    font-size: 0.7rem;
}

.login-modal__input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: all var(--transition);
    outline: none;
}
.login-modal__input::placeholder {
    color: rgba(255, 255, 255, 0.20);
}
.login-modal__input:focus {
    border-color: rgba(212, 175, 55, 0.30);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.05);
}
.login-modal__input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10);
}

.login-modal__error {
    display: block;
    font-size: 0.7rem;
    color: #ef4444;
    margin-top: 0.2rem;
    min-height: 1.2rem;
}

.login-modal__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.2rem 0 1.5rem;
}

.login-modal__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.50);
}
.login-modal__checkbox input {
    display: none;
}
.login-modal__checkmark {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.login-modal__checkbox input:checked + .login-modal__checkmark {
    background: var(--color-gold);
    border-color: var(--color-gold);
}
.login-modal__checkbox input:checked + .login-modal__checkmark::after {
    content: '✓';
    color: var(--color-navy);
    font-size: 0.7rem;
    font-weight: 700;
}
.login-modal__checkbox-label {
    user-select: none;
}

.login-modal__forgot {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}
.login-modal__forgot:hover {
    color: var(--color-gold);
}

.login-modal__submit {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
}

.login-modal__footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}
.login-modal__footer a {
    color: var(--color-gold);
    font-weight: 500;
    transition: color var(--transition);
}
.login-modal__footer a:hover {
    color: var(--color-gold-soft);
}

/* ─── TOAST NOTIFICATION ──────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(20, 35, 58, 0.92);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.40);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 280px;
    max-width: 420px;
}
.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--color-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.toast__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.toast__title {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.85rem;
}
.toast__message {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.toast__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    transition: color var(--transition);
}
.toast__close:hover {
    color: rgba(255, 255, 255, 0.60);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
/* Tablet */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .properties__grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(12, 24, 41, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        transform: translateY(-120%);
        transition: transform var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .nav.open {
        transform: translateY(0);
    }
    .nav__list {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .nav__link {
        font-size: 1rem;
        display: block;
        padding: 0.4rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hero__stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .hero__stat-number {
        font-size: 1.8rem;
    }

    .search-glass {
        padding: 1rem;
    }
    .search-glass__row {
        flex-direction: column;
        gap: 0.8rem;
    }
    .search-glass__group {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }
    .search-glass__group--price {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }
    .btn--search {
        width: 100%;
        justify-content: center;
    }

    .properties__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .properties__grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer__brand-text {
        max-width: 100%;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .modal {
        padding: 0.5rem;
    }
    .modal__container {
        max-height: 98vh;
        border-radius: var(--radius-lg);
    }
    .modal__gallery {
        padding: 0 0.75rem 0.75rem;
    }
    .modal__body {
        padding: 0 0.75rem 1.2rem;
    }
    .modal__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal__price-wrap {
        text-align: left;
        width: 100%;
    }
    .modal__price {
        font-size: 1.5rem;
    }
    .modal__actions {
        flex-direction: column;
    }
    .modal__actions .btn {
        width: 100%;
    }

    .newsletter__form {
        flex-direction: column;
    }
    .newsletter__input {
        width: 100%;
        min-width: 0;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .login-modal {
        padding: 0.5rem;
    }
    .login-modal__content {
        padding: 2rem 1.25rem 1.5rem;
    }
    .login-modal__title {
        font-size: 1.3rem;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        min-width: unset;
        max-width: unset;
        bottom: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2.4rem;
    }
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .properties__grid {
        grid-template-columns: 1fr;
    }
    .property-card__image {
        padding-top: 60%;
    }

    .modal__thumbnails .thumb {
        width: 56px;
        height: 42px;
    }
}

/* ─── UTILITY ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes pulseGold {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.20);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
    }
}

.pulse-gold {
    animation: pulseGold 2s ease-in-out infinite;
}