/* =============================================
   RENTRABIT - Premium Commercial Real Estate
   Design System & Core Styles
   ============================================= */

:root {
    /* Primary Palette - Black + Gold Luxury */
    --gold: #C8A951;
    --gold-light: #E5C97A;
    --gold-dark: #A88A3A;
    --gold-soft: rgba(200, 169, 81, 0.1);

    --black: #0A0A0A;
    --dark: #141414;
    --dark-2: #1C1C1C;
    --dark-3: #242424;
    --gray-900: #2A2A2A;
    --gray-700: #4A4A4A;
    --gray-500: #7A7A7A;
    --gray-300: #BFBFBF;
    --gray-200: #E5E5E5;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;

    /* Accent Palette */
    --navy: #0B1F3A;
    --navy-light: #1A3A6B;
    --electric: #2D7FF9;
    --success: #10B981;
    --danger: #EF4444;

    /* Gradients */
    --grad-gold: linear-gradient(135deg, #C8A951 0%, #E5C97A 50%, #A88A3A 100%);
    --grad-dark: linear-gradient(135deg, #0A0A0A 0%, #1C1C1C 100%);
    --grad-luxury: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(28,28,28,0.85) 100%);
    --grad-overlay: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.85) 100%);

    /* Typography */
    --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 40px rgba(200,169,81,0.25);
    --shadow-dark: 0 20px 60px rgba(0,0,0,0.4);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============= RESET ============= */
* {
    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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
}

.h-display {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { color: var(--gray-700); line-height: 1.7; }

/* ============= UTILITIES ============= */
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--gray-500) !important; }
.bg-dark { background: var(--black) !important; }
.bg-gold { background: var(--gold) !important; }
.bg-soft { background: var(--gray-100) !important; }

.section { padding: var(--space-3xl) 0; position: relative; }
.section-sm { padding: var(--space-2xl) 0; }
.section-tight { padding: var(--space-xl) 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 1rem;
}
.section-title .accent {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    font-family: var(--font-accent);
    font-weight: 500;
}
.section-lead {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 640px;
    margin-bottom: 0;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-lead { margin-left: auto; margin-right: auto; }

/* Dark variant */
.section-dark { background: var(--black); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark p, .section-dark .section-lead { color: var(--gray-300); }

/* ============= BUTTONS ============= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    line-height: 1;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.btn i, .btn svg { font-size: 1em; transition: transform 0.3s var(--ease); }
.btn:hover i, .btn:hover svg { transform: translateX(4px); }

.btn-gold {
    background: var(--grad-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(200,169,81,0.4);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--gray-900);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
}
.btn-light:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--black);
    padding: 14px 0;
}
.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 8px; left: 0; right: 30px;
    height: 1px;
    background: var(--black);
    transition: right 0.35s var(--ease);
}
.btn-ghost:hover::after { right: 0; }

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn-pill { padding: 8px 8px 8px 22px; }
.btn-pill .btn-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============= NAVBAR ============= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.site-header.solid {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}
.brand-mark {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--grad-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 800;
    font-size: 1.1rem;
}
.brand-text .dot { color: var(--gold); }

.main-nav {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}
.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.has-drop::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.625rem;
    opacity: 0.6;
}

.nav-drop {
    position: relative;
}
.nav-drop-menu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    margin-top: 18px;
}
.nav-drop:hover .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}
.nav-drop-menu a:hover { background: var(--gray-100); color: var(--black); }
.nav-drop-menu a i { color: var(--gold); width: 18px; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}
.nav-phone .icon-circle {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}
.nav-phone:hover .icon-circle {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; max-width: 420px;
    height: 100vh;
    background: var(--black);
    z-index: 9999;
    padding: 2rem;
    transition: right 0.4s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu nav a {
    display: block;
    padding: 14px 0;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .mm-cta { margin-top: 2rem; }
.menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ============= HERO ============= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding-top: 120px;
    padding-bottom: 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 1;
}
.hero-bg img, .hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    padding: 8px 18px 8px 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
}
.hero-badge .pill {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 1.75rem;
}
.hero-title .accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Hero Search Bar */
.search-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 780px;
    box-shadow: var(--shadow-dark);
}
.search-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex: 1;
}
.search-tab:last-of-type { border-right: none; }
.search-tab-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(200,169,81,0.15);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.search-tab-info { flex: 1; min-width: 0; }
.search-tab-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2px;
}
.search-tab-value {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    cursor: pointer;
    padding: 0;
}
.search-tab-value::placeholder { color: rgba(255,255,255,0.5); }
.search-submit {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--grad-gold);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.search-submit:hover { transform: scale(1.05); }

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.stat-number .suffix { color: var(--gold); }
.stat-label {
    margin-top: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero side card */
.hero-side {
    position: relative;
    z-index: 2;
}
.float-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.scroll-hint {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold));
    animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============= TRUST STRIP ============= */
.trust-strip {
    background: var(--black);
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}
.trust-logos {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.trust-logo {
    color: rgba(255,255,255,0.55);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color 0.3s var(--ease);
}
.trust-logo:hover { color: var(--gold); }

/* ============= LOCATION CARDS ============= */
.loc-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    isolation: isolate;
}
.loc-card-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.loc-card:hover .loc-card-img { transform: scale(1.08); }
.loc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,0.9) 100%);
    z-index: 1;
}
.loc-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}
.loc-card-tag {
    align-self: flex-start;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.loc-card-bottom { display: flex; flex-direction: column; gap: 1rem; }
.loc-card-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.02em;
}
.loc-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
}
.loc-card-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.loc-card-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    align-self: flex-end;
    margin-top: -3rem;
    position: relative;
    z-index: 3;
}
.loc-card:hover .loc-card-arrow {
    background: var(--gold);
    transform: rotate(-45deg) scale(1.1);
}

/* ============= CATEGORY CARDS ============= */
.cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    z-index: 0;
}
.cat-card:hover::before { transform: translateY(0); }
.cat-card > * { position: relative; z-index: 1; transition: color 0.3s var(--ease); }
.cat-card:hover { transform: translateY(-6px); border-color: var(--black); box-shadow: var(--shadow-dark); }
.cat-card:hover h3, .cat-card:hover p, .cat-card:hover .cat-meta { color: var(--white); }
.cat-card:hover .cat-icon { background: var(--gold); color: var(--black); }
.cat-card:hover .cat-arrow { background: var(--gold); color: var(--black); }

.cat-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--gold-soft);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease);
}
.cat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.cat-card p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}
.cat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}
.cat-card:hover .cat-meta { border-top-color: rgba(255,255,255,0.1); }
.cat-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

/* ============= PROPERTY CARDS ============= */
.prop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.prop-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.prop-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }

.prop-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--white);
    color: var(--black);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}
.prop-tag.featured { background: var(--gold); color: var(--black); }
.prop-tag.new { background: var(--success); color: var(--white); }

.prop-fav {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    z-index: 2;
    transition: all 0.3s var(--ease);
}
.prop-fav:hover, .prop-fav.active {
    background: var(--danger);
    color: var(--white);
}

.prop-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prop-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.prop-loc i { color: var(--gold); }
.prop-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.prop-title a { color: var(--black); }
.prop-title a:hover { color: var(--gold); }

.prop-amenities {
    display: flex;
    gap: 1.25rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.prop-amenity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--gray-700);
}
.prop-amenity i { color: var(--gold); font-size: 0.9rem; }

.prop-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}
.prop-price-wrap { display: flex; flex-direction: column; }
.prop-price-label { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 2px; }
.prop-price {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
}
.prop-price .unit { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }

/* ============= FEATURE GRID (Why Choose Us) ============= */
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    background: rgba(200,169,81,0.05);
    border-color: rgba(200,169,81,0.3);
    transform: translateY(-4px);
}
.feature-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(200,169,81,0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}
.feature-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}
.feature-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ============= MAP SECTION ============= */
.map-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--dark);
    aspect-ratio: 16/10;
    border: 1px solid rgba(255,255,255,0.08);
}
.map-pin {
    position: absolute;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 6px 20px rgba(200,169,81,0.4);
    z-index: 2;
}
.map-pin::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    animation: pulse 2s infinite;
}
.map-pin:hover, .map-pin.active {
    transform: scale(1.15);
    background: var(--white);
}
@keyframes pulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.map-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: grayscale(0.3);
}

.map-side {
    background: var(--dark-2);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
}
.map-loc-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 2rem; }
.map-loc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
}
.map-loc-item:hover, .map-loc-item.active {
    background: rgba(200,169,81,0.08);
    border-color: rgba(200,169,81,0.2);
}
.map-loc-info { display: flex; align-items: center; gap: 14px; }
.map-loc-name { color: var(--white); font-weight: 600; font-size: 1rem; margin: 0; }
.map-loc-count { color: rgba(255,255,255,0.5); font-size: 0.8125rem; margin: 2px 0 0; }
.map-loc-num {
    background: rgba(255,255,255,0.05);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8125rem;
}

/* ============= TESTIMONIALS ============= */
.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}
.testi-quote {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}
.testi-rating {
    color: var(--gold);
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}
.testi-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 2rem;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
.testi-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
}
.testi-name {
    font-weight: 700;
    color: var(--black);
    margin: 0 0 2px;
    font-size: 1rem;
}
.testi-role {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============= GALLERY ============= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============= PRICING ============= */
.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1.5px solid var(--gray-200);
    height: 100%;
    transition: all 0.4s var(--ease);
    position: relative;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.price-card.featured {
    background: var(--black);
    color: var(--white);
    border-color: var(--gold);
}
.price-card.featured h3, .price-card.featured .price-amount { color: var(--white); }
.price-card.featured p, .price-card.featured .price-feat { color: rgba(255,255,255,0.8); }
.price-card.featured .price-feat i { color: var(--gold); }
.price-popular {
    position: absolute;
    top: -12px; right: 2rem;
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.price-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-right: 4px; }
.price-amount .period { font-size: 0.9375rem; font-weight: 500; color: var(--gray-500); }
.price-card.featured .price-amount .period { color: rgba(255,255,255,0.6); }
.price-desc { font-size: 0.9375rem; margin-bottom: 2rem; }
.price-features { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.price-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-700);
}
.price-feat i {
    color: var(--gold);
    width: 18px;
}

/* ============= FAQ ============= */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}
.faq-item.open {
    border-color: var(--black);
    box-shadow: var(--shadow-md);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--black);
    gap: 1rem;
}
.faq-toggle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
    font-size: 0.875rem;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
    padding: 0 1.75rem;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.5rem; }
.faq-a p { color: var(--gray-700); font-size: 0.9375rem; line-height: 1.7; margin: 0; }

/* ============= BLOG ============= */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease);
    height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 1.75rem; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.blog-cat {
    background: var(--gold-soft);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 600;
}
.blog-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.blog-title a { color: var(--black); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: 0.9375rem; color: var(--gray-700); margin-bottom: 1.25rem; }
.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-weight: 600;
    font-size: 0.875rem;
}
.blog-read:hover { color: var(--gold); }
.blog-read:hover i { transform: translateX(4px); }
.blog-read i { transition: transform 0.3s var(--ease); }

/* ============= CTA BANNER ============= */
.cta-banner {
    position: relative;
    background: var(--black);
    border-radius: var(--radius-xl);
    padding: 4.5rem;
    overflow: hidden;
    isolation: isolate;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000') center/cover;
    opacity: 0.15;
    z-index: -1;
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--gold-soft), transparent 60%);
    z-index: -1;
}
.cta-banner h2 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
}
.cta-banner h2 .accent {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.cta-banner p {
    color: rgba(255,255,255,0.75);
    font-size: 1.0625rem;
    max-width: 540px;
    margin-bottom: 2rem;
}

/* ============= FOOTER ============= */
.site-footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: var(--white); margin-bottom: 1.25rem; }
.footer-about {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s var(--ease);
}
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-heading {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease);
    display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.newsletter-form {
    position: relative;
    margin-top: 1rem;
}
.newsletter-form input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    padding: 14px 60px 14px 22px;
    color: var(--white);
    font-size: 0.9375rem;
    outline: none;
    transition: all 0.3s var(--ease);
}
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    position: absolute;
    right: 6px; top: 6px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.875rem; margin: 0; }
.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold); }

/* ============= FLOATING ELEMENTS ============= */
.float-whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
    transition: transform 0.3s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.1); color: var(--white); }
.float-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

.sticky-cta {
    position: fixed;
    bottom: 24px; left: 24px;
    background: var(--black);
    color: var(--white);
    padding: 12px 24px 12px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 998;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}
.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { transform: translateY(-2px); color: var(--gold); }
.sticky-cta .ic {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sticky-cta span { font-weight: 600; font-size: 0.9rem; padding-right: 8px; }

/* ============= MODAL / POPUP ============= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s var(--ease);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-head {
    padding: 2rem 2rem 0;
    text-align: center;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover { background: var(--black); color: var(--white); }
.modal-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}
.modal-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.modal-sub { color: var(--gray-700); font-size: 0.9375rem; }
.modal-body { padding: 2rem; }

/* ============= FORMS ============= */
.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}
.form-control-lux {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 18px 8px;
    font-size: 0.9375rem;
    color: var(--dark);
    outline: none;
    transition: all 0.3s var(--ease);
    font-family: inherit;
}
.form-control-lux:focus {
    border-color: var(--black);
    background: var(--white);
}
.form-label-lux {
    position: absolute;
    top: 16px; left: 18px;
    font-size: 0.9375rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: all 0.25s var(--ease);
    background: transparent;
    padding: 0 4px;
}
.form-control-lux:focus + .form-label-lux,
.form-control-lux:not(:placeholder-shown) + .form-label-lux {
    top: 6px;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

textarea.form-control-lux {
    min-height: 120px;
    resize: vertical;
    padding-top: 24px;
}

.form-check-lux {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}
.form-check-lux input {
    margin-top: 4px;
    accent-color: var(--gold);
}

/* Form Dark Variant */
.form-dark .form-control-lux {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
    color: var(--white);
}
.form-dark .form-control-lux:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
}
.form-dark .form-label-lux { color: rgba(255,255,255,0.5); }
.form-dark .form-control-lux:focus + .form-label-lux,
.form-dark .form-control-lux:not(:placeholder-shown) + .form-label-lux {
    color: var(--gold);
}

/* ============= PAGE HEADER (Inner Pages) ============= */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000') center/cover;
    opacity: 0.2;
    z-index: 0;
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 0;
}
.page-header > * { position: relative; z-index: 1; }
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.page-title .accent {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}
.breadcrumbs a { color: var(--gold); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs i { font-size: 0.6rem; }

/* ============= FILTERS (Listing Page) ============= */
.filter-bar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.filter-result { font-weight: 600; color: var(--black); }
.filter-result span { color: var(--gold); }
.filter-toolbar { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.filter-select {
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.view-toggle { display: flex; gap: 4px; background: var(--gray-100); padding: 4px; border-radius: var(--radius-full); }
.view-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    color: var(--gray-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.view-btn.active, .view-btn:hover { background: var(--black); color: var(--white); }

/* Sidebar Filter */
.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 100px;
}
.filter-block { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-200); }
.filter-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-block-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.filter-checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.filter-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
    color: var(--gray-700);
    cursor: pointer;
}
.filter-check input { accent-color: var(--gold); }
.filter-check-label { display: flex; align-items: center; gap: 10px; }
.filter-count { color: var(--gray-500); font-size: 0.8125rem; }

.range-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
}
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    outline: none;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Pagination */
.pagination-lux {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4rem;
}
.page-link-lux {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--black);
    font-weight: 600;
    transition: all 0.3s var(--ease);
}
.page-link-lux:hover, .page-link-lux.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ============= DETAIL PAGE ============= */
.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-bottom: 3rem;
}
.detail-main-img {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.detail-main-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumbs {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}
.detail-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumb-more {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(4px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.detail-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}
.detail-tags { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.detail-tag {
    background: var(--gold-soft);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}
.detail-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.detail-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}
.detail-loc i { color: var(--gold); }
.detail-price-block {
    text-align: right;
    background: var(--gray-100);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
}
.detail-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.detail-price .unit { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.detail-price-label { font-size: 0.8125rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; }

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.detail-meta-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}
.detail-meta-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gold-soft);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.detail-meta-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 4px; }
.detail-meta-value { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--black); }

.detail-block { margin-bottom: 3rem; }
.detail-block-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
}
.amenity-item i { color: var(--gold); }

.detail-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: sticky;
    top: 100px;
}
.agent-card {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.agent-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}
.agent-name { font-weight: 700; font-size: 1.125rem; margin-bottom: 4px; }
.agent-role { font-size: 0.875rem; color: var(--gray-500); }

/* ============= TIMELINE / STEPS ============= */
.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}
.step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}
.step-card:hover .step-num { background: var(--gold); }
.step-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.step-desc { color: rgba(255,255,255,0.65); font-size: 0.9375rem; margin: 0; }

/* ============= MISC ============= */
.divider-gold {
    width: 60px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}

.tab-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}
.tab-pill {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--gray-200);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.tab-pill.active, .tab-pill:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.text-balance { text-wrap: balance; }

/* Stagger Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease);
}
.preloader.hide { opacity: 0; pointer-events: none; }
.loader-mark {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    animation: pop 1.4s ease infinite;
}
@keyframes pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
