/* =====================================================
   LuxeEstate - Premium Real Estate CSS
   Theme: Forest Green + White + Gold
   Font: Montserrat (Bold)
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
    --beige: #F2FAF2;
    --beige-light: #F8FFF8;
    --beige-dark: #E2F2E2;
    --beige-deep: #CCE8CC;
    --maroon: #1F5E1F;
    --maroon-light: #2E7D2E;
    --maroon-dark: #154015;
    --maroon-bg: #1F5E1F;
    --gold: #C9A84C;
    --gold-light: #E5C878;
    --gold-dark: #A07830;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E5C878 40%, #C9A84C 70%, #A07830 100%);
    --gold-gradient-h: linear-gradient(90deg, #A07830 0%, #E5C878 50%, #A07830 100%);
    --white: #FFFFFF;
    --black: #0A1A0A;
    --text-dark: #0F2A0F;
    --text-mid: #2D4A2D;
    --text-light: #4A6B4A;
    --text-muted: #7A9E7A;
    --border: #B8D4B8;
    --border-light: #D4EAD4;
    --shadow-sm: 0 2px 8px rgba(31, 94, 31, 0.08);
    --shadow-md: 0 8px 32px rgba(31, 94, 31, 0.12);
    --shadow-lg: 0 20px 60px rgba(31, 94, 31, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font-display: 'Montserrat', -apple-system, sans-serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--beige);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--maroon-light); }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ===================== TYPOGRAPHY ===================== */
.display-font { font-family: var(--font-display); }

h1, h2, h3, .h1, .h2, .h3 {
    font-family: var(--font-display);
    color: var(--maroon);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--maroon); font-weight: 500; }
p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }

.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1rem;
}
.section-label::before {
    content: ''; display: block; width: 32px; height: 2px;
    background: var(--gold-gradient);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.section-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 580px; }

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
    cursor: pointer; border: none; transition: var(--transition);
    position: relative; overflow: hidden; text-decoration: none;
    white-space: nowrap;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.1); opacity: 0;
    transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
    background: var(--gold-gradient);
    color: var(--maroon-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4); color: var(--maroon-dark); }

.btn-maroon {
    background: var(--maroon);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-maroon:hover { background: var(--maroon-dark); transform: translateY(-2px); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
}
.btn-outline:hover { background: var(--maroon); color: var(--white); }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold-gradient); color: var(--maroon-dark); border-color: transparent; }

.btn-white {
    background: var(--white);
    color: var(--maroon);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--beige); color: var(--maroon); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===================== HEADER / NAV ===================== */
#site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent; transition: var(--transition-slow);
}
#site-header.scrolled {
    background: rgba(245, 239, 230, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(31, 94, 31, 0.08);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px; padding: 0 40px;
}
.logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display); font-size: 1.6rem;
    font-weight: 700; color: var(--maroon); text-decoration: none;
}
.navbar-brand img,
.logo img {
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain;
}
.logo-icon {
    width: 44px; height: 44px;
    background: var(--gold-gradient);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--maroon-dark); font-weight: 800;
    font-family: var(--font-display);
}
.logo-text { line-height: 1; }
.logo-text span { font-size: 0.65rem; font-family: var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
    padding: 8px 16px; font-size: 0.88rem; font-weight: 500;
    color: var(--text-dark); border-radius: var(--radius-sm);
    transition: var(--transition); letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a.active { color: var(--maroon); background: rgba(31, 94, 31, 0.06); }
#site-header:not(.scrolled) .main-nav a { color: rgba(255,255,255,0.9); }
#site-header:not(.scrolled) .main-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.1); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--maroon);
}
#site-header:not(.scrolled) .header-phone { color: var(--white); }
#site-header:not(.scrolled) .header-phone svg { color: var(--gold); }

.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    cursor: pointer; padding: 10px 12px;
    background: transparent; border: 2px solid var(--gold);
    border-radius: 8px; transition: var(--transition);
    width: 44px; height: 44px; align-items: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }
#site-header.scrolled .hamburger { background: var(--maroon); border-color: var(--maroon); }
#site-header.scrolled .hamburger span { background: var(--gold); }
.hamburger:hover { background: var(--maroon); border-color: var(--maroon); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
    position: relative; min-height: 100vh;
    background: var(--maroon-dark);
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #154015 0%, #1F5E1F 40%, #2E7D2E 70%, #154015 100%);
    z-index: 0;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-image-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(21, 64, 21, 0.85) 50%, rgba(21, 64, 21, 0.4) 100%);
}
.hero-image-overlay.has-bg-img {
    background: linear-gradient(to right, rgba(10, 30, 10, 0.9) 40%, rgba(10, 30, 10, 0.5) 100%);
}
.hero-particles {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute; border-radius: 50%;
    background: var(--gold); opacity: 0.15;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.08; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative; z-index: 10;
    max-width: 700px; padding: 120px 0 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201, 168, 76, 0.15); border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s ease forwards;
}
.hero-badge::before { content: '◆'; font-size: 0.5rem; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05; color: var(--white); font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.75);
    line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeSlideUp 0.7s ease 0.3s both;
}

.hero-stats {
    display: flex; gap: 2rem; flex-wrap: wrap;
    padding-top: 2.5rem; border-top: 1px solid rgba(201, 168, 76, 0.2);
    animation: fadeSlideUp 0.7s ease 0.4s both;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ===================== HERO SEARCH BAR ===================== */
.hero-search {
    position: relative; z-index: 10;
    margin-top: -60px; margin-bottom: 80px;
}
.search-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
.search-tabs {
    display: flex; gap: 4px; margin-bottom: 24px;
    background: var(--beige); border-radius: var(--radius-sm);
    padding: 4px;
}
.search-tab {
    flex: 1; padding: 10px; font-size: 0.85rem; font-weight: 600;
    text-align: center; cursor: pointer; border-radius: var(--radius-sm);
    color: var(--text-light); transition: var(--transition); border: none;
    background: transparent;
}
.search-tab.active { background: var(--maroon); color: var(--white); }
.search-fields { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label { font-size: 0.75rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.search-field select, .search-field input {
    padding: 12px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.9rem;
    color: var(--text-dark); background: var(--beige);
    transition: var(--transition); outline: none; width: 100%;
}
.search-field select:focus, .search-field input:focus { border-color: var(--maroon); background: var(--white); }

/* ===================== PROPERTY CARDS ===================== */
.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid var(--border-light);
    position: relative;
}
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.property-card-img {
    position: relative; overflow: hidden; height: 240px;
    background: var(--beige-deep);
}
.property-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.property-card:hover .property-card-img img { transform: scale(1.08); }

.property-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--beige-deep), var(--beige));
    color: var(--text-muted); gap: 8px; font-size: 0.85rem;
}
.property-card-img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

.card-badges {
    position: absolute; top: 14px; left: 14px;
    display: flex; gap: 6px; flex-wrap: wrap; z-index: 4;
}
.badge {
    padding: 4px 10px; border-radius: 4px; font-size: 0.7rem;
    font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-featured { background: var(--gold-gradient); color: var(--maroon-dark); }
.badge-new { background: var(--maroon); color: var(--white); }
.badge-trending { background: rgba(0,0,0,0.7); color: var(--gold-light); border: 1px solid var(--gold); }
.badge-sold { background: rgba(0,0,0,0.8); color: #fff; }

.card-wishlist {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    width: 36px; height: 36px; background: rgba(255,255,255,0.9);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); border: none;
    color: var(--text-light); font-size: 1rem;
}
.card-wishlist:hover { background: var(--white); color: var(--maroon); transform: scale(1.1); }

.card-type-pill {
    position: absolute; bottom: 14px; left: 14px; z-index: 3;
    padding: 5px 12px; background: rgba(245, 239, 230, 0.95);
    border-radius: 20px; font-size: 0.75rem; font-weight: 600;
    color: var(--maroon); letter-spacing: 0.04em; text-transform: capitalize;
}

.property-card-body { padding: 22px; }
.property-price {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 700; color: var(--maroon);
    line-height: 1; margin-bottom: 4px;
}
.property-price span { font-size: 0.85rem; font-weight: 500; font-family: var(--font-body); color: var(--text-light); }
.property-title {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 600; color: var(--text-dark);
    margin: 8px 0; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.property-location {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px;
}
.property-location svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.property-specs {
    display: flex; gap: 0; border-top: 1px solid var(--border-light);
    margin-top: 0; padding-top: 14px;
}
.property-spec {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    gap: 3px; text-align: center;
    border-right: 1px solid var(--border-light);
    padding: 0 6px;
}
.property-spec:last-child { border-right: none; }
.property-spec svg { width: 16px; height: 16px; color: var(--gold); }
.property-spec strong { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.property-spec small { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

.card-footer {
    padding: 14px 22px; border-top: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: space-between;
}
.card-footer-meta { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); }
.card-footer-meta svg { width: 14px; height: 14px; }

/* ===================== FILTER BAR ===================== */
.filter-section { background: var(--white); border-bottom: 1px solid var(--border-light); position: sticky; top: 80px; z-index: 100; }
.filter-bar { display: flex; gap: 12px; padding: 16px 0; align-items: center; flex-wrap: wrap; }
.filter-select {
    padding: 10px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--text-dark);
    background: var(--beige); cursor: pointer; outline: none; transition: var(--transition);
    min-width: 140px;
}
.filter-select:focus { border-color: var(--maroon); }
.filter-btn-group { display: flex; gap: 6px; margin-left: auto; }
.filter-count {
    background: var(--maroon); color: var(--white);
    padding: 4px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}

/* ===================== PROPERTIES GRID ===================== */
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ===================== PAGINATION ===================== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 3rem; }
.page-btn {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
    color: var(--text-mid); background: var(--white); border: 1.5px solid var(--border);
    cursor: pointer; transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.page-btn.dots { border: none; background: none; cursor: default; }

/* ===================== STATS SECTION ===================== */
.stats-section { background: var(--maroon); padding: 80px 0; position: relative; overflow: hidden; }
.stats-section::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem; position: relative; }
.stat-item::after {
    content: ''; position: absolute; right: 0; top: 25%; bottom: 25%;
    width: 1px; background: rgba(201, 168, 76, 0.2);
}
.stat-item:last-child::after { display: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-suffix { font-size: 2rem; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 8px; letter-spacing: 0.04em; }
.stat-divider { width: 40px; height: 2px; background: var(--gold-gradient); margin: 12px auto; border-radius: 2px; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--beige-dark); }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg); padding: 32px;
    border: 1px solid var(--border-light);
    position: relative; transition: var(--transition-slow);
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 20px; right: 24px;
    font-family: var(--font-display); font-size: 5rem; line-height: 1;
    color: var(--beige-deep); font-weight: 700;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    color: var(--gold); flex-shrink: 0; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.testimonial-property { font-size: 0.75rem; color: var(--gold); font-weight: 500; margin-top: 2px; }

/* ===================== TEAM ===================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border-light);
    transition: var(--transition-slow); text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.team-img {
    height: 250px; overflow: hidden;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-placeholder {
    font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
    color: var(--gold); opacity: 0.8;
}
.team-social {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(21,64,21,0.9), transparent);
    padding: 16px; display: flex; justify-content: center; gap: 12px;
    transform: translateY(100%); transition: var(--transition);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
    width: 34px; height: 34px; background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); font-size: 0.85rem; transition: var(--transition);
}
.team-social a:hover { background: var(--gold-gradient); color: var(--maroon-dark); }
.team-body { padding: 24px; }
.team-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--maroon); font-weight: 600; }
.team-role { font-size: 0.82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin: 4px 0 12px; }
.team-stats { display: flex; justify-content: center; gap: 2rem; padding-top: 12px; border-top: 1px solid var(--border-light); }
.team-stat { text-align: center; }
.team-stat strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--maroon); display: block; }
.team-stat small { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===================== BLOG ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border-light);
    transition: var(--transition-slow);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img { height: 220px; overflow: hidden; background: var(--beige-deep); position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-category {
    position: absolute; top: 14px; left: 14px;
    background: var(--maroon); color: var(--white);
    padding: 4px 12px; border-radius: 4px; font-size: 0.72rem;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.blog-body { padding: 24px; }
.blog-meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-meta svg { width: 13px; height: 13px; }
.blog-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--text-dark); font-weight: 600; margin-bottom: 10px; line-height: 1.35; }
.blog-title:hover { color: var(--maroon); }
.blog-excerpt { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-readmore { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.84rem; font-weight: 600; color: var(--maroon); }
.blog-readmore svg { width: 14px; transition: transform 0.2s; }
.blog-card:hover .blog-readmore svg { transform: translateX(4px); }

/* ===================== SERVICES SECTION ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 30px; border: 1px solid var(--border-light);
    transition: var(--transition-slow); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: var(--gold-gradient); transform: scaleX(0); transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(31,94,31,0.08), rgba(31,94,31,0.04));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--maroon); }
.service-icon svg { width: 28px; height: 28px; color: var(--maroon); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--gold); }
.service-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--maroon); margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: var(--maroon); position: relative; overflow: hidden;
    padding: 100px 0;
}
.cta-section::before {
    content: ''; position: absolute; top: -30%; right: -5%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
}
.cta-section::after {
    content: ''; position: absolute; bottom: -20%; left: -5%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
}
.cta-content { position: relative; z-index: 2; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); font-weight: 600; }
.cta-title em { font-style: italic; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin: 1rem 0 2rem; max-width: 480px; }

/* ===================== LEAD FORM ===================== */
.lead-form-wrapper {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
.form-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--maroon); margin-bottom: 0.25rem; }
.form-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.form-control {
    padding: 13px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.9rem;
    color: var(--text-dark); background: var(--beige);
    transition: var(--transition); outline: none; width: 100%;
}
.form-control:focus { border-color: var(--maroon); background: var(--white); box-shadow: 0 0 0 3px rgba(31,94,31,0.06); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23800000' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-success {
    display: none; text-align: center; padding: 2rem;
    animation: fadeSlideUp 0.4s ease forwards;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); color: var(--maroon); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }

/* ===================== FOOTER ===================== */
.site-footer {
    background: linear-gradient(180deg, #0D2D0D 0%, #071A07 100%);
    padding-top: 80px; color: rgba(255,255,255,0.7);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { color: var(--white); margin-bottom: 1rem; font-size: 1.4rem; }
.footer-about { font-size: 0.88rem; line-height: 1.8; margin: 1rem 0; color: rgba(255,255,255,0.6); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-heading { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); font-weight: 600; margin-bottom: 1.2rem; padding-bottom: 8px; border-bottom: 2px solid rgba(201, 168, 76, 0.3); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.87rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.social-links { display: flex; gap: 10px; margin-top: 1.2rem; }
.social-link {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 1rem; transition: var(--transition);
}
.social-link:hover { background: var(--gold-gradient); color: var(--maroon-dark); border-color: transparent; transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); }

/* ===================== STICKY BUTTONS ===================== */
.sticky-buttons {
    position: fixed; right: 20px; bottom: 100px; z-index: 900;
    display: flex; flex-direction: column; gap: 10px;
}
.sticky-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
    border: none; font-size: 1.3rem; box-shadow: var(--shadow-md);
    text-decoration: none;
}
.sticky-btn:hover { transform: scale(1.1); }
.sticky-call { background: var(--maroon); color: var(--white); }
.sticky-whatsapp { background: #25D366; color: var(--white); }
.sticky-btn-label {
    position: absolute; right: 62px; background: rgba(10,30,10,0.85);
    color: var(--white); padding: 4px 12px; border-radius: 4px; font-size: 0.78rem;
    white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
    transform: translateX(10px);
}
.sticky-btn:hover .sticky-btn-label { opacity: 1; transform: translateX(0); }

/* ===================== BOTTOM CTA BAR ===================== */
.bottom-cta-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 890;
    background: var(--white); border-top: 2px solid var(--border);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

/* ===================== POPUP ===================== */
.popup-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(10, 30, 10, 0.7); z-index: 2000;
    align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}
.popup-overlay.active { display: flex; }
.popup-card {
    background: var(--white); border-radius: var(--radius-xl);
    max-width: 480px; width: 90%; padding: 44px;
    position: relative; box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 4px solid var(--maroon);
}
.popup-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; cursor: pointer;
    font-size: 1.5rem; color: var(--text-light); transition: var(--transition);
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.popup-close:hover { background: var(--beige); color: var(--maroon); }
.popup-badge {
    display: inline-block; background: rgba(201,168,76,0.15); color: var(--gold);
    padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
    border: 1px solid rgba(201,168,76,0.25);
}
.popup-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--maroon); margin-bottom: 0.5rem; }
.popup-subtitle { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* ===================== PROPERTY DETAIL (legacy aliases kept) ===================== */
.detail-sidebar { position: sticky; top: 100px; }
.whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: var(--white); padding: 14px;
    border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
    width: 100%; transition: var(--transition); border: none; cursor: pointer;
    text-decoration: none;
}
.whatsapp-btn:hover { background: #1FAD55; color: var(--white); transform: translateY(-2px); }

/* ===================== ADMIN PANEL ===================== */
.admin-body { background: #F2FAF2; font-family: var(--font-body); }
.admin-sidebar {
    position: fixed; left: 0; top: 0; bottom: 0;
    width: 260px; background: var(--maroon-dark);
    overflow-y: auto; z-index: 500; transition: var(--transition);
    display: flex; flex-direction: column;
}
.admin-sidebar-header {
    padding: 24px 20px; border-bottom: 1px solid rgba(201,168,76,0.2);
    background: rgba(0,0,0,0.2);
}
.admin-logo { color: var(--white); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.admin-logo span { display: block; font-family: var(--font-body); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.admin-nav { padding: 16px 12px; flex: 1; }
.admin-nav-section { margin-bottom: 28px; }
.admin-nav-label { font-size: 0.65rem; font-weight: 700; color: rgba(201,168,76,0.6); text-transform: uppercase; letter-spacing: 0.15em; padding: 0 8px; margin-bottom: 8px; }
.admin-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius-sm); margin-bottom: 2px;
    color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500;
    transition: var(--transition);
}
.admin-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(201,168,76,0.12); color: var(--gold-light); }
.admin-nav a.active { border-left: 3px solid var(--gold); padding-left: 9px; }

.admin-main { margin-left: 260px; min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
    position: sticky; top: 0; z-index: 400;
    background: var(--white); border-bottom: 1px solid var(--border-light);
    padding: 0 32px; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-page-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--maroon); font-weight: 600; }
.admin-user {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; color: var(--text-mid);
}
.admin-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--maroon); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-family: var(--font-display); font-size: 1rem;
}

.admin-content { padding: 32px; flex: 1; }

.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card {
    background: var(--white); border-radius: var(--radius-md);
    padding: 24px; border: 1px solid var(--border-light);
    display: flex; align-items: center; gap: 18px;
    transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-sm); }
.stat-card-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.stat-card-icon.maroon { background: rgba(31,94,31,0.1); color: var(--maroon); }
.stat-card-icon.gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.stat-card-icon.green { background: rgba(34,197,94,0.1); color: #16a34a; }
.stat-card-icon.blue { background: rgba(59,130,246,0.1); color: #2563eb; }
.stat-card-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.stat-card-lbl { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }

.card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border-light); }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.card-header h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--maroon); font-weight: 600; margin: 0; }
.card-body { padding: 24px; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--beige); padding: 12px 16px; text-align: left; font-size: 0.78rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid var(--border); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); font-size: 0.88rem; color: var(--text-dark); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--beige); }

.badge-status { padding: 3px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.badge-new { background: rgba(59,130,246,0.1); color: #2563eb; }
.badge-hot { background: rgba(239,68,68,0.1); color: #dc2626; }
.badge-warm { background: rgba(245,158,11,0.1); color: #d97706; }
.badge-cold { background: rgba(100,116,139,0.1); color: #475569; }
.badge-contacted { background: rgba(139,92,246,0.1); color: #7c3aed; }
.badge-closed { background: rgba(34,197,94,0.1); color: #16a34a; }
.badge-active { background: rgba(34,197,94,0.1); color: #16a34a; }
.badge-inactive { background: rgba(100,116,139,0.1); color: #475569; }
.badge-sold { background: rgba(239,68,68,0.1); color: #dc2626; }
.badge-draft { background: rgba(100,116,139,0.1); color: #475569; }
.badge-published { background: rgba(34,197,94,0.1); color: #16a34a; }

.action-btn { padding: 6px 12px; border-radius: 5px; font-size: 0.78rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.action-btn.edit { background: rgba(31,94,31,0.08); color: var(--maroon); }
.action-btn.delete { background: rgba(239,68,68,0.08); color: #dc2626; }
.action-btn.view { background: rgba(59,130,246,0.08); color: #2563eb; }
.action-btn:hover { opacity: 0.8; transform: translateY(-1px); }

.form-section { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--border-light); margin-bottom: 1.5rem; }
.form-section-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--maroon); font-weight: 600; margin-bottom: 1.5rem; padding-bottom: 10px; border-bottom: 1px solid var(--border-light); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; }
.admin-form-control {
    padding: 11px 14px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.88rem;
    color: var(--text-dark); background: var(--beige);
    transition: var(--transition); outline: none; width: 100%;
}
.admin-form-control:focus { border-color: var(--maroon); background: var(--white); }
.admin-form-label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 5px; }

.image-upload-area {
    border: 2px dashed var(--border); border-radius: var(--radius-md);
    padding: 32px; text-align: center; cursor: pointer;
    transition: var(--transition); background: var(--beige);
    color: var(--text-light);
}
.image-upload-area:hover { border-color: var(--maroon); background: rgba(31,94,31,0.03); }
.image-upload-area svg { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--text-muted); }
.image-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 16px; }
.image-preview { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.image-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-preview .remove { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; background: rgba(239,68,68,0.9); color: white; border: none; border-radius: 50%; cursor: pointer; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; }

.admin-login-page {
    min-height: 100vh; background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.admin-login-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 48px; max-width: 420px; width: 100%;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.admin-login-logo { text-align: center; margin-bottom: 2rem; }
.admin-login-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--maroon); text-align: center; margin-bottom: 0.25rem; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.88rem; }
.alert-danger { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.alert-success { background: rgba(34,197,94,0.08); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { from { background-position: -200% 0; } to { background-position: 200% 0; } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }

.animate-fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

.skeleton {
    background: linear-gradient(90deg, var(--beige-deep) 25%, var(--beige) 50%, var(--beige-deep) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 1rem 0; font-size: 0.82rem; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--maroon); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--maroon); font-weight: 500; }
.breadcrumb .sep { color: var(--text-muted); }

/* ===================== PAGE HERO ===================== */
.page-hero {
    background: var(--maroon); padding: 100px 0 60px;
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
    position: fixed; bottom: 84px; left: 20px; z-index: 800;
    width: 44px; height: 44px; background: var(--maroon);
    color: var(--white); border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition);
    opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--maroon-dark); transform: translateY(-3px); }

/* ===================== MISC UTILITIES ===================== */
.text-gold { color: var(--gold); }
.text-maroon { color: var(--maroon); }
.bg-maroon { background: var(--maroon); }
.bg-beige { background: var(--beige); }
.bg-white { background: var(--white); }
.divider { height: 1px; background: var(--border-light); margin: 2rem 0; }
.divider-gold { height: 2px; background: var(--gold-gradient); width: 60px; margin: 1rem 0; border-radius: 2px; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.w-100 { width: 100%; }
.d-none { display: none; }
.d-flex { display: flex; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }
}

@media (max-width: 1024px) {
    .properties-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: repeat(2, 1fr); }
    .search-fields { grid-template-columns: 1fr 1fr; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .admin-sidebar { transform: translateX(-260px); }
    .admin-main { margin-left: 0; }
    .admin-sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section, .section-lg { padding: 60px 0; }
    .header-inner { padding: 0 20px; }
    .hamburger { display: flex; }
    .main-nav, .header-cta { display: none; }
    .main-nav.open {
        display: flex; flex-direction: column; align-items: stretch;
        position: fixed; top: 80px; left: 0; right: 0;
        background: var(--maroon-dark); padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.35);
        gap: 0; z-index: 999; overflow-y: auto;
    }
    .main-nav.open a {
        display: block; width: 100%; padding: 15px 24px;
        font-size: 0.95rem; font-weight: 600; text-align: left;
        border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07);
        color: rgba(255,255,255,0.88) !important;
    }
    .main-nav.open a:hover, .main-nav.open a.active {
        background: rgba(255,255,255,0.1) !important; color: var(--gold) !important;
    }
    .properties-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 1rem; }
    .search-fields { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .cta-section .grid-2 { grid-template-columns: 1fr; }
    .bottom-cta-bar { display: flex; gap: 10px; }
    .sticky-buttons { right: 16px; bottom: 90px; }
    .back-to-top { bottom: 100px !important; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding: 1.2rem 0 100px; }
    .footer-bottom > div { justify-content: center; padding-right: 0; }
    .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .admin-topbar { padding: 0 16px; }
    .admin-content { padding: 16px; }
    .filter-bar { gap: 8px; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: 1fr 1fr; }
    .hero-content { padding: 100px 0 60px; }
}

/* ===================== MONTSERRAT FONT OVERRIDES ===================== */
h1, h2, h3, h4, h5, h6,
.display-font,
.section-title, .section-label,
.logo, .footer-logo, .footer-heading,
.property-price, .stat-number, .hero-stat-number,
.hero-title, .btn, .admin-logo, .team-name,
.blog-title, .blog-card-title,
.testimonial-name, .service-title, .popup-title,
.form-title, .cta-title, .detail-price, .detail-title {
    font-family: 'Montserrat', -apple-system, sans-serif;
    font-weight: 700;
}
p, a, span, li, label, input, select, textarea, button, td, th {
    font-family: 'Montserrat', -apple-system, sans-serif;
}

/* ===================== PAGE HERO CONTENT ===================== */
.page-hero-content {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    position: relative; z-index: 2;
}
.page-hero h1 { color: var(--white); font-weight: 800; }
.page-hero h1 span { color: var(--gold-light); }
.page-hero > p { color: rgba(255,255,255,0.8); }
.breadcrumb-nav {
    display: flex; align-items: center; gap: 8px;
    margin-top: 1rem; font-size: 0.82rem; flex-wrap: wrap;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.65); font-weight: 500; }
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav i { color: rgba(255,255,255,0.35); font-size: 0.65rem; }
.breadcrumb-nav span { color: var(--gold-light); font-weight: 600; }

/* ===================== SECTION UTILITIES ===================== */
.section-pad { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header h2 span, .section-title-row h2 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================== FADE ANIMATIONS (about/contact/blog pages) ===================== */
.fade-up, .fade-left, .fade-right {
    opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up { transform: translateY(30px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.fade-up.visible, .fade-left.visible, .fade-right.visible {
    opacity: 1; transform: translate(0, 0);
}

/* ===================== STANDALONE BUTTON CLASSES ===================== */
a.btn-gold, button.btn-gold, .btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); text-decoration: none;
    white-space: nowrap; background: var(--gold-gradient);
    color: var(--maroon-dark); box-shadow: var(--shadow-gold);
}
a.btn-gold:hover, button.btn-gold:hover, .btn-gold:hover {
    transform: translateY(-2px); color: var(--maroon-dark);
    box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
a.btn-outline, button.btn-outline, .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
    cursor: pointer; border: 2px solid var(--maroon);
    transition: var(--transition); text-decoration: none;
    white-space: nowrap; background: transparent; color: var(--maroon);
}
a.btn-outline:hover, button.btn-outline:hover, .btn-outline:hover {
    background: var(--maroon); color: var(--white);
}
a.btn-maroon, button.btn-maroon, .btn-maroon {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
    cursor: pointer; border: 2px solid var(--maroon);
    transition: var(--transition); text-decoration: none;
    white-space: nowrap; background: var(--maroon); color: var(--white);
}
a.btn-maroon:hover, button.btn-maroon:hover, .btn-maroon:hover {
    background: var(--maroon-dark); color: var(--white); transform: translateY(-2px);
}
a.btn-white-outline, button.btn-white-outline, .btn-white-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
    cursor: pointer; border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition); text-decoration: none;
    white-space: nowrap; background: transparent; color: var(--white);
}
a.btn-white-outline:hover, button.btn-white-outline:hover { background: var(--white); color: var(--maroon); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px !important; font-size: 0.95rem !important; }

/* Bootstrap-compat layout helpers */
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col-lg-9 { flex: 0 0 75%; max-width: 75%; padding: 0 12px; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white-50 { color: rgba(255,255,255,0.5) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-maroon { color: var(--maroon) !important; }
.fw-bold { font-weight: 700 !important; }
.display-5 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.p-4 { padding: 1.5rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.rounded { border-radius: var(--radius-md) !important; }
.card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border-light); }
.card-body { padding: 2rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; flex-wrap: wrap; }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; color: rgba(255,255,255,0.4); margin-right: 8px; }

@media (max-width: 768px) {
    .col-lg-9 { flex: 0 0 100%; max-width: 100%; }
    .section-pad { padding: 60px 0; }
}

/* ===================== ABOUT PAGE ===================== */
.about-story { background: #fff; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-image {
    position: relative; border-radius: var(--radius-lg); overflow: visible;
    min-width: 0; padding-bottom: 36px; padding-right: 36px;
}
.about-content { min-width: 0; }
.about-img-placeholder {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: var(--radius-lg); height: 480px;
    display: flex; align-items: center; justify-content: center;
}
.about-img-inner { text-align: center; }
.about-image img {
    border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover;
    display: block;
}
.about-exp-badge {
    position: absolute; bottom: 0; right: 0;
    background: var(--gold-gradient); border-radius: var(--radius-md);
    padding: 20px 24px; text-align: center; box-shadow: var(--shadow-gold);
    z-index: 2;
}
.exp-number {
    font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900;
    color: var(--maroon-dark); line-height: 1; display: block;
}
.exp-label {
    font-size: 0.72rem; font-weight: 700; color: var(--maroon-dark);
    text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.3;
}
.about-text { margin: 1.5rem 0; }
.about-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.about-highlights { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 12px; }
.highlight-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; color: var(--text-dark); font-weight: 600;
}
.highlight-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.about-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Why Choose Us */
.why-us-section { background: var(--white); }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
    background: var(--beige); border-radius: var(--radius-lg);
    padding: 32px 28px; border: 1px solid var(--border-light);
    transition: var(--transition-slow); position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold-gradient); transform: scaleX(0); transition: transform 0.3s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.why-icon i { font-size: 1.4rem; color: var(--gold); }
.why-card h3 { font-size: 1.05rem; color: var(--maroon); margin-bottom: 8px; font-weight: 700; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; margin: 0; }

/* About page - team section (different structure from index) */
.team-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.team-avatar-placeholder i { font-size: 2.5rem; color: var(--gold); }
.team-info { text-align: center; padding: 0 16px 24px; }
.team-info h3 { font-size: 1.05rem; color: var(--maroon); font-weight: 700; margin-bottom: 4px; }
.team-exp { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.team-card .team-role { font-size: 0.78rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin: 4px 0; display: block; }
.team-card .team-social { position: static; transform: none; background: none; padding: 0; justify-content: center; margin-top: 10px; display: flex; gap: 8px; }
.team-card .team-social a {
    width: 34px; height: 34px; background: rgba(31,94,31,0.08);
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--maroon); font-size: 0.85rem; transition: var(--transition);
}
.team-card .team-social a:hover { background: var(--maroon); color: var(--white); }

/* About - testimonials (different from index grid) */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-rating { display: flex; gap: 3px; margin-bottom: 12px; }
.testimonial-rating i { font-size: 0.85rem; color: var(--border); }
.testimonial-rating i.filled { color: var(--gold); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 1.2rem; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { font-size: 0.9rem; color: var(--text-dark); font-weight: 700; display: block; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); display: block; }
.testimonial-author .testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
}
.testimonial-author .testimonial-avatar i { color: var(--gold); }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-intro { color: var(--text-mid); font-size: 1rem; line-height: 1.85; margin: 1rem 0 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-detail-body strong {
    display: block; font-size: 0.72rem; font-weight: 700;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px;
}
.contact-detail-body span { color: var(--text-dark); font-size: 0.92rem; }
.contact-detail-body a { color: var(--text-dark); font-size: 0.92rem; font-weight: 500; }
.contact-detail-body a:hover { color: var(--maroon); }
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-form-wrap { }
.contact-form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
}
.contact-form-card h3 {
    font-size: 1.25rem; color: var(--maroon); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 10px; font-weight: 700;
}
.contact-form-card h3 i { color: var(--gold); }
.map-section h3 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 420px; border: none; display: block; }

/* CTA Strip */
.cta-strip { background: var(--maroon); padding: 60px 0; }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip-content h2 { font-size: 1.8rem; color: var(--white); font-weight: 700; margin-bottom: 0.5rem; }
.cta-strip-content p { color: rgba(255,255,255,0.72); margin: 0; }
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================== BLOG LISTING PAGE ===================== */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.blog-filter-bar { margin-bottom: 2rem; }
.blog-search-form { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 1rem; }
.search-input-wrap { position: relative; flex: 1; min-width: 200px; }
.search-input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); z-index: 1; }
.search-input-wrap .form-control { padding-left: 40px; }
.blog-categories-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.cat-tag {
    padding: 6px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
    color: var(--text-mid); background: var(--white); border: 1.5px solid var(--border);
    cursor: pointer; transition: var(--transition); text-decoration: none;
}
.cat-tag:hover, .cat-tag.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.results-count { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.5rem; }
.blog-card-img-wrap { display: block; overflow: hidden; height: 220px; position: relative; text-decoration: none; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-no-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3); font-size: 3rem;
}
.blog-cat-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--maroon); color: var(--white);
    padding: 4px 10px; border-radius: 4px; font-size: 0.7rem;
    font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.blog-card-body { padding: 22px; }
.blog-card-title { font-size: 1.1rem; color: var(--text-dark); font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-card-title a { color: var(--text-dark); font-weight: 700; }
.blog-card-title a:hover { color: var(--maroon); }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; margin: 0; }
.read-more-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px; font-size: 0.84rem; font-weight: 700; color: var(--maroon);
}
.read-more-link:hover { color: var(--maroon-light); }
.read-more-link i { font-size: 0.75rem; transition: transform 0.2s; }
.blog-card:hover .read-more-link i { transform: translateX(4px); }
.blog-card-featured { grid-column: 1 / -1; }
.blog-card-featured .blog-card-img-wrap { height: 340px; }
.pagination-wrap { margin-top: 3rem; }
.no-results { text-align: center; padding: 60px 20px; }
.no-results i { font-size: 3rem; color: var(--border); display: block; margin-bottom: 1rem; }
.no-results h3 { color: var(--maroon); margin-bottom: 0.5rem; font-weight: 700; }
.no-results p { color: var(--text-light); }

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--border-light); margin-bottom: 1.5rem;
}
.widget-title {
    font-family: 'Montserrat', sans-serif; font-size: 1.05rem; color: var(--maroon);
    font-weight: 700; margin-bottom: 1.2rem;
    padding-bottom: 10px; border-bottom: 2px solid var(--border-light);
    position: relative;
}
.widget-title::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 40px; height: 2px; background: var(--gold-gradient);
}
.recent-posts { display: flex; flex-direction: column; gap: 14px; }
.recent-post { display: flex; gap: 12px; align-items: center; text-decoration: none; transition: var(--transition); }
.recent-post:hover { transform: translateX(4px); }
.recent-post img { width: 70px; height: 55px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.recent-post-placeholder {
    width: 70px; height: 55px; border-radius: 8px;
    background: var(--beige-deep); display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); flex-shrink: 0;
}
.recent-post-title { font-size: 0.83rem; color: var(--text-dark); font-weight: 600; line-height: 1.4; display: block; }
.recent-post-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; display: block; }
.cat-list { display: flex; flex-direction: column; gap: 6px; }
.cat-list li a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 12px; border-radius: var(--radius-sm);
    font-size: 0.85rem; color: var(--text-mid); font-weight: 600;
    transition: var(--transition); background: var(--beige); text-decoration: none;
}
.cat-list li a:hover, .cat-list li a.active { background: var(--maroon); color: var(--white); }
.cat-count {
    background: rgba(31,94,31,0.1); color: var(--maroon);
    padding: 2px 8px; border-radius: 12px; font-size: 0.7rem; font-weight: 700;
}
.cat-list li a:hover .cat-count, .cat-list li a.active .cat-count {
    background: rgba(255,255,255,0.2); color: var(--white);
}
.sidebar-cta {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
    border: none;
}
.sidebar-cta h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }
.sidebar-cta p { color: rgba(255,255,255,0.72); font-size: 0.85rem; margin-bottom: 1.2rem; }

/* ===================== PROPERTY DETAIL PAGE ===================== */
.property-detail-section { padding: 96px 0 60px; }

/* ── Grid ── */
.property-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
    margin-top: 1.25rem;
}

/* ── Gallery ── */
.property-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--beige-dark);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}
.gallery-main { height: 480px; position: relative; overflow: hidden; }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-badges {
    position: absolute; top: 14px; left: 14px;
    display: flex; gap: 8px; flex-wrap: wrap; z-index: 3;
}
.badge-gold { background: var(--gold-gradient); color: var(--maroon-dark); }
.badge-maroon { background: var(--maroon); color: var(--white); }
.badge-available { background: rgba(34,197,94,0.18); color: #16a34a; border: 1px solid rgba(34,197,94,0.35); }
.gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.92); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--maroon); font-size: 1rem; transition: var(--transition); z-index: 5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.gallery-thumbs {
    display: flex; gap: 8px; padding: 10px 12px;
    overflow-x: auto; background: rgba(0,0,0,0.04);
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.gallery-thumb {
    width: 88px; height: 64px; border-radius: 6px;
    overflow: hidden; cursor: pointer;
    border: 2px solid transparent; flex-shrink: 0;
    transition: var(--transition); opacity: 0.65;
}
.gallery-thumb.active { border-color: var(--maroon); opacity: 1; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Header card (title + price + specs) ── */
.property-detail-header {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.property-detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 12px;
}
.property-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.65rem);
    color: var(--text-dark); font-weight: 800;
    line-height: 1.3; margin: 0;
}
.property-detail-location {
    display: flex; align-items: center; gap: 6px;
    color: var(--text-light); font-size: 0.85rem; margin-top: 6px;
}
.property-detail-location i { color: var(--gold); }
.property-detail-price-block { text-align: right; flex-shrink: 0; }
.property-detail-price {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    color: var(--maroon); font-weight: 900; line-height: 1;
    white-space: nowrap;
}
.property-detail-price-label { font-size: 0.73rem; color: var(--text-muted); margin-top: 3px; }
.property-detail-specs {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: 16px;
    margin-bottom: 0;
}
.spec-item {
    display: flex; align-items: center; gap: 7px;
    background: var(--beige); border: 1px solid var(--border);
    padding: 7px 13px; border-radius: var(--radius-sm);
    font-size: 0.82rem; color: var(--text-dark); font-weight: 600;
    white-space: nowrap;
}
.spec-item i { color: var(--maroon); font-size: 0.82rem; }

/* ── Quick action buttons ── */
.property-quick-actions {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.btn-action {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 700;
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}
.btn-maroon.btn-action { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn-maroon.btn-action:hover { background: var(--maroon-dark); color: var(--white); }
.btn-whatsapp, a.btn-whatsapp, button.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1FAD55 !important; color: var(--white) !important; }
.btn-outline.btn-action { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-outline.btn-action:hover { background: var(--maroon); color: var(--white); }

/* ── Content section blocks (description / amenities / nearby) ── */
.property-section-block {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.section-heading-inline {
    font-size: 1.05rem; color: var(--maroon); font-weight: 700;
    margin-bottom: 1.1rem; padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}
.section-heading-inline::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 44px; height: 2px; background: var(--gold-gradient);
}
.property-description {
    color: var(--text-mid); font-size: 0.9rem; line-height: 1.9;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.amenity-item {
    display: flex; align-items: center; gap: 8px;
    background: var(--beige); padding: 10px 14px;
    border-radius: var(--radius-sm); font-size: 0.82rem; color: var(--text-mid);
    border: 1px solid var(--border-light);
}
.amenity-icon { color: var(--gold); flex-shrink: 0; }
.amenity-icon i { font-size: 0.9rem; }
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 10px;
}
.nearby-item {
    display: flex; align-items: center; gap: 8px;
    background: var(--beige); padding: 10px 14px;
    border-radius: var(--radius-sm); font-size: 0.82rem; color: var(--text-mid);
}
.nearby-item i { color: var(--maroon); width: 15px; flex-shrink: 0; }

/* ── Sidebar ── */
.sticky-sidebar { position: sticky; top: 96px; }
.enquiry-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 26px; box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light); margin-bottom: 1rem;
}
.enquiry-card-header { margin-bottom: 1.25rem; }
.enquiry-card-header h3 {
    font-size: 1.05rem; color: var(--maroon); font-weight: 700;
    display: flex; align-items: center; gap: 8px; margin-bottom: 3px;
}
.enquiry-card-header h3 i { color: var(--gold); }
.enquiry-card-header p { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.enquiry-divider { text-align: center; position: relative; margin: 1rem 0; }
.enquiry-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: var(--border-light);
}
.enquiry-divider span {
    position: relative; background: var(--white);
    padding: 0 10px; font-size: 0.72rem; color: var(--text-muted); font-weight: 700;
}
.agent-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 18px; border: 1px solid var(--border-light);
    display: flex; align-items: center; gap: 14px; margin-top: 1rem;
}
.agent-avatar {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
}
.agent-avatar i { font-size: 1.4rem; color: var(--gold); }
.agent-info strong { font-size: 0.9rem; color: var(--text-dark); font-weight: 700; display: block; }
.agent-info span { font-size: 0.75rem; color: var(--gold); font-weight: 700; display: block; margin-bottom: 4px; }
.agent-info a { font-size: 0.8rem; color: var(--maroon); display: flex; align-items: center; gap: 6px; }
.share-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 18px; border: 1px solid var(--border-light); margin-top: 1rem;
}
.share-card h4 {
    font-size: 0.74rem; color: var(--text-muted); font-weight: 700;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em;
}
.share-buttons { display: flex; gap: 8px; }
.share-btn {
    width: 38px; height: 38px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; cursor: pointer; border: none;
    transition: var(--transition); text-decoration: none; color: var(--white);
}
.share-wa { background: #25D366; } .share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; } .share-copy { background: var(--text-muted); color: var(--white); }
.share-btn:hover { transform: translateY(-2px); opacity: 0.88; color: var(--white); }

/* ── Related section ── */
.related-properties-section {
    margin-top: 3rem; padding-top: 2.5rem;
    border-top: 1px solid var(--border-light);
}
.section-title-row {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 1.75rem;
}
.view-all-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.83rem; font-weight: 700; color: var(--maroon);
}
.view-all-link:hover { color: var(--maroon-light); }

/* ── Breadcrumb on this page ── */

/* Property breadcrumb nav */
.property-detail-section .breadcrumb-nav,
.blog-single .breadcrumb-nav {
    padding: 0.75rem 0; font-size: 0.82rem;
    display: flex; align-items: center; gap: 6px;
}
.property-detail-section .breadcrumb-nav a { color: var(--text-light); }
.property-detail-section .breadcrumb-nav a:hover { color: var(--maroon); }
.property-detail-section .breadcrumb-nav span { color: var(--maroon); font-weight: 600; }
.property-detail-section .breadcrumb-nav i { color: var(--text-muted); font-size: 0.65rem; }

/* ===================== ADDITIONAL RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-exp-badge { bottom: 10px; right: 10px; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .property-detail-grid { grid-template-columns: 1fr 300px; gap: 1.5rem; }
    .gallery-main { height: 400px; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===================== BLOG SINGLE PAGE ===================== */
.blog-single-section { background: var(--beige); }
.blog-article {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border-light);
}
.blog-hero-img { position: relative; height: 420px; overflow: hidden; }
.blog-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-hero-img .blog-cat-badge { font-size: 0.75rem; padding: 6px 14px; }
.article-meta {
    display: flex; flex-wrap: wrap; gap: 16px;
    font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem;
    align-items: center;
}
.article-meta i { color: var(--gold); margin-right: 4px; }
.article-cat {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(31,94,31,0.08); color: var(--maroon);
    padding: 3px 10px; border-radius: 12px; font-size: 0.78rem; font-weight: 700;
    text-decoration: none;
}
.article-cat:hover { background: var(--maroon); color: var(--white); }
.article-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.4rem); color: var(--text-dark);
    font-weight: 800; line-height: 1.3; margin-bottom: 1rem;
}
.article-excerpt {
    font-size: 1.05rem; color: var(--text-mid); line-height: 1.85;
    font-weight: 500; margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold); padding-left: 1.2rem;
}
.article-content {
    font-size: 0.95rem; color: var(--text-mid); line-height: 1.9;
    padding: 0 32px 32px;
}
.article-content h1, .article-content h2, .article-content h3,
.article-content h4, .article-content h5 {
    color: var(--maroon); margin: 1.5rem 0 0.8rem; font-weight: 700;
}
.article-content h2 { font-size: 1.4rem; }
.article-content h3 { font-size: 1.2rem; }
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol {
    padding-left: 1.5rem; margin-bottom: 1.2rem;
}
.article-content li { margin-bottom: 0.5rem; }
.article-content img { border-radius: var(--radius-md); max-width: 100%; margin: 1.5rem 0; }
.article-content a { color: var(--maroon); font-weight: 600; }
.article-content a:hover { color: var(--maroon-light); }
.article-content blockquote {
    border-left: 4px solid var(--gold); padding: 16px 20px;
    background: var(--beige); margin: 1.5rem 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic; color: var(--text-mid);
}
.article-meta, .article-title, .article-excerpt, .article-tags, .article-share, .article-nav {
    padding: 0 32px;
}
.article-meta { padding-top: 24px; }
.article-title { margin-bottom: 0; }
.article-tags {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap; margin: 0 0 0; padding-top: 0; padding-bottom: 1.5rem;
    border-top: 1px solid var(--border-light); margin-top: 1.5rem;
    padding-top: 1.5rem;
}
.article-tags i { color: var(--text-muted); font-size: 0.9rem; }
.tag-badge {
    background: var(--beige); border: 1px solid var(--border);
    padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
    color: var(--text-mid);
}
.article-share {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem; padding-bottom: 1.5rem;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.article-share > span { font-size: 0.85rem; font-weight: 700; color: var(--text-mid); white-space: nowrap; }
.article-share .share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.article-share .share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 6px; font-size: 0.78rem; font-weight: 700;
    width: auto; height: auto; border: none;
}
.share-li { background: #0a66c2; color: var(--white) !important; }
.article-nav {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem; padding-bottom: 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.article-nav-item {
    display: flex; flex-direction: column; gap: 4px;
    padding: 16px; background: var(--beige); border-radius: var(--radius-md);
    text-decoration: none; transition: var(--transition); border: 1px solid var(--border-light);
}
.article-nav-item:hover { background: var(--maroon); border-color: var(--maroon); }
.article-nav-item span { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.article-nav-item strong { font-size: 0.88rem; color: var(--text-dark); font-weight: 600; line-height: 1.4; }
.article-nav-item:hover span, .article-nav-item:hover strong { color: var(--white); }
.article-nav-next { text-align: right; }

@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    .why-us-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-strip .container { flex-direction: column; text-align: center; }
    .property-detail-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .property-detail-sidebar { position: static; }
    .sticky-sidebar { position: static; }
    .gallery-main { height: 280px; }
    .property-detail-header { padding: 20px; }
    .property-detail-title-row { flex-direction: column; gap: 0.75rem; }
    .property-detail-price-block { text-align: left; }
    .property-section-block { padding: 20px; }
    .enquiry-card { padding: 20px; }
    .property-quick-actions .btn-action { flex: 1 1 auto; justify-content: center; min-width: 0; }
    .gallery-thumbs { padding: 8px 10px; }
    .gallery-thumb { width: 72px; height: 54px; }
    .blog-card-featured { grid-column: 1; }
    .about-exp-badge { position: relative; bottom: auto; right: auto; margin-top: 1rem; display: inline-block; }
    .article-meta, .article-title, .article-excerpt, .article-tags, .article-share, .article-nav,
    .article-content { padding-left: 16px; padding-right: 16px; }
    .article-nav { grid-template-columns: 1fr; }
    .article-nav-next { text-align: left; }
    .blog-hero-img { height: 220px; }
}

/* ===================== ADDITIONAL MISSING CLASSES ===================== */

/* About page — stat section icon */
.stat-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md); margin: 0 auto 12px;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
}
.stat-icon i { font-size: 1.4rem; color: var(--gold); }
.stats-section .stat-icon { background: rgba(201,168,76,0.12); }

/* Typography — lead paragraph (used in terms/privacy) */
.lead { font-size: 1.1rem; color: var(--text-mid); line-height: 1.85; }

/* Blog section background */
.blog-section { background: var(--beige); }

/* Mobile nav link text color fix */

