/* ================================================================
   Buddha Life Homes & Developers Pvt. Ltd.
   css/styles.css — Complete Design System
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
---------------------------------------------------------------- */
:root {
    /* Brand Colors - Luxury Real Estate Palette */
    --navy:        #0b2545;
    --navy-dark:   #051329;
    --navy-light:  #134074;
    --navy-accent: #1e569c;
    --gold:        #d4af37;
    --gold-light:  #f3e5ab;
    --gold-bright: #ffd700;
    --gold-dark:   #b8941f;
    --emerald:     #1b4332;
    --emerald-light:#2d6a4f;

    /* Metallic Gold Gradient */
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b8941f 100%);
    --navy-gradient: linear-gradient(135deg, #051329 0%, #0b2545 50%, #134074 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(212, 175, 55, 0.25);

    /* Neutral Palette */
    --white:       #ffffff;
    --off-white:   #f8f9fb;
    --gray-50:     #f4f6fa;
    --gray-100:    #eaf0f8;
    --gray-200:    #d5dce8;
    --gray-300:    #b8c2d4;
    --gray-400:    #8b97b0;
    --gray-500:    #606e88;
    --gray-600:    #404d66;
    --gray-700:    #2a354c;
    --gray-800:    #192338;
    --gray-900:    #0d1424;

    /* Semantic */
    --text-primary:   #0f172a;
    --text-secondary: #334155;
    --text-muted:     #64748b;
    --text-light:     #94a3b8;
    --border:         #e2e8f0;

    /* Status Colors */
    --ready:        #10b981;
    --construction: #f59e0b;
    --launch:       #8b5cf6;
    --upcoming:     #06b6d4;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 50px;
    --section-padding-sm: 30px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Premium Shadows & Glows */
    --shadow-sm:   0 4px 12px rgba(11,37,69,0.06);
    --shadow:      0 8px 25px rgba(11,37,69,0.10);
    --shadow-md:   0 14px 35px rgba(11,37,69,0.14);
    --shadow-lg:   0 20px 50px rgba(11,37,69,0.18);
    --shadow-xl:   0 30px 70px rgba(11,37,69,0.25);
    --shadow-gold: 0 10px 30px rgba(212,175,55,0.35);
    --glow-gold:   0 0 25px rgba(212,175,55,0.4);

    /* Transitions */
    --transition:      all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background-color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------
   4. LAYOUT UTILITIES
---------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-sm {
    padding: var(--section-padding-sm) 0;
}

.section-bg {
    background-color: #f1f5f9;
}

.section-navy {
    background-color: var(--navy);
    color: var(--white);
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4,
.section-navy p {
    color: var(--white);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { gap: 16px; }
.flex-col { flex-direction: column; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ----------------------------------------------------------------
   5. SECTION HEADINGS
---------------------------------------------------------------- */
.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-primary);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 28px;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ----------------------------------------------------------------
   6. BUTTONS
---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f5d77f 50%, #b8941f 100%);
    color: var(--navy-dark);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.55);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ----------------------------------------------------------------
   7. TOP BAR
---------------------------------------------------------------- */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar a, .top-bar span {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.top-bar a:hover { color: var(--gold); }

.top-bar-whatsapp {
    color: #25D366 !important;
}

.top-bar-btn {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.top-bar-btn:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
}

/* ----------------------------------------------------------------
   8. HEADER / NAVBAR
---------------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(11,37,69,0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.logo-tagline {
    font-family: var(--font-secondary);
    font-size: 0.72rem;
    color: var(--gold-dark);
    font-weight: 500;
    font-style: italic;
}

/* Navigation */
.navbar { flex: 1; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--navy);
    background: rgba(11,37,69,0.06);
}

.nav-item.active .nav-link {
    color: var(--gold-dark);
}

.nav-arrow {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.nav-item.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--gray-50);
    color: var(--navy);
    padding-left: 20px;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
    transition: var(--transition);
}

.btn-call-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.hamburger:hover { background: var(--gray-100); }

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----------------------------------------------------------------
   9. MOBILE NAVIGATION (Left Sidebar Drawer)
---------------------------------------------------------------- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 50, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99988;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 99999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 10px 0 35px rgba(11,37,69,0.3);
    display: flex;
    flex-direction: column;
}

.mobile-nav.open, .mobile-nav.active { transform: translateX(0); }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--navy-dark);
    border-bottom: 2px solid var(--gold);
}

.mobile-nav-header .logo-name {
    color: #ffffff !important;
    font-size: 0.82rem !important;
    line-height: 1.15;
}

.mobile-nav-header .logo-tagline {
    color: var(--gold) !important;
    font-size: 0.65rem !important;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--gold);
    color: var(--navy);
}

.mobile-nav-list {
    padding: 12px 0;
    flex: 1;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 22px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    border-left: 4px solid transparent;
    transition: var(--transition-fast);
    text-align: left;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: var(--gold-dark);
    background: #f8fafc;
    border-left-color: var(--gold);
    padding-left: 26px;
}

.mobile-nav-parent > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    color: var(--gold-dark);
    transition: transform 0.3s ease;
}

.mobile-dropdown {
    background: #f1f5f9;
    border-left: 3px solid var(--gold);
    margin: 4px 20px 8px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: none;
}

.mobile-dropdown.open { display: block; }

.mobile-dropdown li a {
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-left: none;
}

.mobile-dropdown li a:hover {
    color: var(--navy);
    background: rgba(255,255,255,0.7);
    padding-left: 20px;
}

.mobile-nav-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    bottom: 0;
}

/* ----------------------------------------------------------------
   10. HERO SECTION (Home Page)
---------------------------------------------------------------- */
.hero {
    position: relative;
    height: 580px;
    min-height: 540px;
    max-height: 640px;
    overflow: hidden;
}

.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(5,19,41,0.55) 0%,
        rgba(5,19,41,0.25) 40%,
        transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s 0.15s ease both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title span {
    background: linear-gradient(135deg, #ffe58f 0%, #d4af37 50%, #fdf0a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.hero-subtitle {
    font-size: clamp(0.98rem, 1.8vw, 1.12rem);
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s 0.3s ease both;
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stat {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 40px;
}

.hero-stat:last-child { border-right: none; padding-right: 0; }

.hero-stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

/* Trust Bar Grid Styling */
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    text-align: center;
}

.trust-bar-item {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
}

.trust-bar-item:last-child {
    border-right: none;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold-light);
    width: 28px;
    border-radius: 5px;
}

.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-prev:hover, .hero-next:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ----------------------------------------------------------------
   11. PROPERTY SEARCH BAR
---------------------------------------------------------------- */
.search-section {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
}

.search-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 -4px 40px rgba(11,37,69,0.16), 0 24px 48px rgba(11,37,69,0.12);
    padding: 32px 40px;
    margin-top: -60px;
    position: relative;
    border: 1px solid rgba(212,175,55,0.2);
    border-top: 3px solid var(--gold);
}

.search-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-title i { color: var(--gold); }

.search-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: var(--radius-sm);
    width: fit-content;
    margin-bottom: 24px;
}

.search-tab {
    padding: 8px 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: calc(var(--radius-sm) - 2px);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-tab.active {
    background: var(--navy);
    color: var(--white);
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 2fr auto;
    gap: 16px;
    align-items: end;
}

.search-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition-fast);
    font-family: var(--font-secondary);
    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'%3E%3Cpath fill='%236b7283' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11,37,69,0.08);
}

.search-btn-wrap .btn {
    height: 50px;
    padding: 0 28px;
    white-space: nowrap;
}

/* ----------------------------------------------------------------
   12. PROPERTY CARDS
---------------------------------------------------------------- */
.property-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11,37,69,0.07);
    border: 1px solid rgba(226,232,240,0.8);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.property-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11,37,69,0.15), 0 0 20px rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.4);
}

.property-card:hover::after {
    opacity: 1;
}

.property-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-card-img img { transform: scale(1.06); }

.property-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 3rem;
    gap: 8px;
}

.property-card-img-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
}

.property-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-ready    { background: var(--ready);      color: var(--white); }
.badge-construction { background: var(--construction); color: var(--white); }
.badge-launch   { background: var(--launch);     color: var(--white); }
.badge-upcoming { background: var(--upcoming);   color: var(--white); }

.property-card-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gray-400);
    transition: var(--transition-fast);
    z-index: 2;
}

.property-card-fav:hover { color: #e11d48; transform: scale(1.1); }

.property-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-card-type {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.property-card-name {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.property-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.property-card-location i { color: var(--gold-dark); font-size: 0.85rem; }

.property-card-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.spec-item i { color: var(--navy); font-size: 0.85rem; }

.property-card-price {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
}

.property-card-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.property-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.property-card-actions .btn {
    flex: 1;
    padding: 10px 12px;
}

.property-card-actions .btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}

.property-card-actions .btn-outline:hover {
    background: var(--navy);
    color: #ffffff;
}

/* Dynamic Distinct Light Pastel Card Variations */
.card-light-1 {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 55%) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}
.card-light-1::after { background: linear-gradient(90deg, #10b981, #059669) !important; }
.card-light-1:hover { border-color: #10b981 !important; box-shadow: 0 18px 40px rgba(16, 185, 129, 0.2) !important; }

.card-light-2 {
    background: linear-gradient(180deg, #fffbe6 0%, #ffffff 55%) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
}
.card-light-2::after { background: linear-gradient(90deg, #d4af37, #b8941f) !important; }
.card-light-2:hover { border-color: #d4af37 !important; box-shadow: 0 18px 40px rgba(212, 175, 55, 0.25) !important; }

.card-light-3 {
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 55%) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
}
.card-light-3::after { background: linear-gradient(90deg, #8b5cf6, #6d28d9) !important; }
.card-light-3:hover { border-color: #8b5cf6 !important; box-shadow: 0 18px 40px rgba(139, 92, 246, 0.2) !important; }

.card-light-4 {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 55%) !important;
    border: 1px solid rgba(30, 86, 156, 0.3) !important;
}
.card-light-4::after { background: linear-gradient(90deg, #1e569c, #0b2545) !important; }
.card-light-4:hover { border-color: #1e569c !important; box-shadow: 0 18px 40px rgba(30, 86, 156, 0.2) !important; }

.card-light-5 {
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 55%) !important;
    border: 1px solid rgba(225, 29, 72, 0.28) !important;
}
.card-light-5::after { background: linear-gradient(90deg, #e11d48, #be123c) !important; }
.card-light-5:hover { border-color: #e11d48 !important; box-shadow: 0 18px 40px rgba(225, 29, 72, 0.2) !important; }

.card-light-6 {
    background: linear-gradient(180deg, #ecfeff 0%, #ffffff 55%) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
}
.card-light-6::after { background: linear-gradient(90deg, #06b6d4, #0891b2) !important; }
.card-light-6:hover { border-color: #06b6d4 !important; box-shadow: 0 18px 40px rgba(6, 182, 212, 0.2) !important; }

/* Service Detail Card Grid Styling */
.service-detail-card {
    padding: 40px 32px;
    border-radius: 24px;
    scroll-margin-top: 100px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.service-detail-card .btn {
    max-width: 100%;
    white-space: normal;
    box-sizing: border-box;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* ----------------------------------------------------------------
   13. SERVICES SECTION
---------------------------------------------------------------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.2);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(11,37,69,0.08), rgba(11,37,69,0.04));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--navy);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Distinct Light Pastel Service Card Variations */
.service-variant-1 {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 65%) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}
.service-variant-1 .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35) !important;
}
.service-variant-1:hover { border-color: #10b981 !important; box-shadow: 0 18px 40px rgba(16, 185, 129, 0.2) !important; }

.service-variant-2 {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 65%) !important;
    border: 1px solid rgba(30, 86, 156, 0.3) !important;
}
.service-variant-2 .service-icon {
    background: linear-gradient(135deg, #0b2545 0%, #134074 100%) !important;
    color: #ffd700 !important;
    box-shadow: 0 10px 25px rgba(11, 37, 69, 0.35) !important;
}
.service-variant-2:hover { border-color: #1e569c !important; box-shadow: 0 18px 40px rgba(30, 86, 156, 0.2) !important; }

.service-variant-3 {
    background: linear-gradient(180deg, #fffbe6 0%, #ffffff 65%) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
}
.service-variant-3 .service-icon {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35) !important;
}
.service-variant-3:hover { border-color: #d4af37 !important; box-shadow: 0 18px 40px rgba(212, 175, 55, 0.25) !important; }

.service-variant-4 {
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 65%) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
}
.service-variant-4 .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35) !important;
}
.service-variant-4:hover { border-color: #8b5cf6 !important; box-shadow: 0 18px 40px rgba(139, 92, 246, 0.2) !important; }

.service-variant-5 {
    background: linear-gradient(180deg, #ecfeff 0%, #ffffff 65%) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
}
.service-variant-5 .service-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35) !important;
}
.service-variant-5:hover { border-color: #06b6d4 !important; box-shadow: 0 18px 40px rgba(6, 182, 212, 0.2) !important; }

.service-variant-6 {
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 65%) !important;
    border: 1px solid rgba(225, 29, 72, 0.28) !important;
}
.service-variant-6 .service-icon {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.35) !important;
}
.service-variant-6:hover { border-color: #e11d48 !important; box-shadow: 0 18px 40px rgba(225, 29, 72, 0.2) !important; }

/* ----------------------------------------------------------------
   14. STATS / METRICS SECTION
---------------------------------------------------------------- */
.stats-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number sup {
    font-size: 1.5rem;
    vertical-align: super;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----------------------------------------------------------------
   15. TESTIMONIALS
---------------------------------------------------------------- */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    min-width: calc(33.333% - 19px);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.2);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(212,175,55,0.15);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i { color: var(--gold); font-size: 0.95rem; }

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
}

.testimonial-project {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.testimonial-prev, .testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--navy);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ----------------------------------------------------------------
   16. BLOG CARDS
---------------------------------------------------------------- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }

.blog-card-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(212,175,55,0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--navy);
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.65;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.blog-card-meta span { display: flex; align-items: center; gap: 4px; }

/* ----------------------------------------------------------------
   17. WHY CHOOSE US
---------------------------------------------------------------- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.why-us-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-us-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.3rem;
}

.why-us-badge-text strong {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--navy);
    display: block;
    line-height: 1;
}

.why-us-badge-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.why-us-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.why-us-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-us-point-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.06));
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

.why-us-point-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-us-point-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ----------------------------------------------------------------
   18. CTA SECTION
---------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    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='%23d4af37' 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");
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section h2 span { color: var(--gold); }

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   19. PAGE HEADER / BREADCRUMB
---------------------------------------------------------------- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--navy-light) 100%);
    padding: 60px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(212,175,55,0.06) 0%, transparent 40%);
}

.page-header-content { position: relative; z-index: 1; }

.page-header h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--gold); }

.breadcrumb a:hover { color: var(--gold-light); }

.breadcrumb i { font-size: 0.7rem; }

/* ----------------------------------------------------------------
   20. FORMS
---------------------------------------------------------------- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(11,37,69,0.07);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-success {
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.25);
    color: var(--ready);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* ----------------------------------------------------------------
   21. MODAL
---------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7,26,50,0.75);
    backdrop-filter: blur(8px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover { background: var(--gray-200); color: var(--navy); }

.modal-header {
    text-align: center;
    margin-bottom: 28px;
    padding-right: 24px;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-header h2 i { color: var(--gold); }

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.modal-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.modal-privacy a { color: var(--navy); font-weight: 600; }

/* ----------------------------------------------------------------
   22. FLOATING ACTION BUTTONS
---------------------------------------------------------------- */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 32px;
    z-index: 8000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.fab-whatsapp, .fab-call {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    position: relative;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    animation: pulse-green 2.5s infinite;
}

.fab-call {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    animation: pulse-gold 2.5s infinite 0.5s;
}

.fab-whatsapp:hover, .fab-call:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.fab-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: var(--gray-800);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.fab-whatsapp:hover .fab-tooltip,
.fab-call:hover .fab-tooltip {
    opacity: 1;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 7999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
}

/* ----------------------------------------------------------------
   23. FOOTER
---------------------------------------------------------------- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }

.footer-top { padding: 70px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.3fr 1.5fr;
    gap: 56px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 20px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact-list a,
.footer-contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition-fast);
}

.footer-contact-list a:hover { color: var(--gold); }

.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-links a i { color: var(--gold); font-size: 0.7rem; }

.footer-hours { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-hours li:last-child { border-bottom: none; }

/* Footer Newsletter/Inquiry Form */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input,
.footer-newsletter select {
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.875rem;
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }

.footer-newsletter input:focus,
.footer-newsletter select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.09);
}

.footer-newsletter select option { background: var(--navy); color: var(--white); }

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.pagination li a:hover,
.pagination li.active span {
    background: var(--navy-dark);
    color: var(--gold);
    border-color: var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.pagination li.disabled span {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom strong { color: var(--gold); }
.footer-bottom em { color: rgba(255,255,255,0.4); }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ----------------------------------------------------------------
   24. ANIMATIONS
---------------------------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
}

@keyframes countUp {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   25. RESPONSIVE — TABLET (≤ 1024px)
---------------------------------------------------------------- */
@media (max-width: 1024px) {
    .navbar { display: none; }
    .hamburger { display: flex; }
    .logo-name { font-size: 0.9rem; }

    .hero { height: 70vh; min-height: 500px; }
    .hero-stats { gap: 24px; }
    .hero-stat { padding-right: 24px; }

    .search-form { grid-template-columns: 1fr 1fr; }
    .search-btn-wrap { grid-column: span 2; }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 32px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-us-img { max-width: 600px; margin: 0 auto; }

    .testimonial-card { min-width: calc(50% - 14px); }
}

/* ----------------------------------------------------------------
   26. RESPONSIVE — MOBILE (≤ 768px)
---------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
        --section-padding-sm: 36px;
    }

    .top-bar { display: none; }

    .header-inner { height: 64px; gap: 10px; padding: 0 8px; }
    .logo { display: flex; align-items: center; gap: 8px; min-width: 0; flex: 1; }
    .logo-text { display: flex; flex-direction: column; overflow: hidden; }
    .logo-name { font-size: 0.88rem; line-height: 1.1; font-weight: 800; color: var(--navy); white-space: nowrap; }
    .logo-tagline { font-size: 0.65rem; color: var(--gold-dark); font-weight: 600; white-space: nowrap; }
    .logo-img { width: 42px; height: 42px; flex-shrink: 0; }
    .hamburger { flex-shrink: 0; }

    .trust-bar-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .trust-bar-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; padding-bottom: 10px !important; }
    .trust-bar-item:nth-child(3), .trust-bar-item:nth-child(4) { border-bottom: none !important; padding-bottom: 0 !important; }

    .hero { height: 480px !important; min-height: 460px !important; max-height: 520px !important; }
    .hero-slide { display: flex; align-items: center; justify-content: center; padding: 20px 0; }
    .hero-content { padding: 0 16px; margin: 0 auto; }
    .hero-label { margin-bottom: 8px; font-size: 0.72rem; padding: 4px 12px; }
    .hero-title { font-size: 1.55rem !important; line-height: 1.25; margin-bottom: 8px; }
    .hero-subtitle { font-size: 0.82rem !important; line-height: 1.45; margin-bottom: 16px; max-width: 100%; }
    .hero-btns { display: flex; flex-direction: column; gap: 8px; width: 100%; margin-top: 4px; }
    .hero-btns .btn { width: 100%; justify-content: center; text-align: center; padding: 10px 16px; font-size: 0.84rem; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .hero-stat { padding-right: 16px; border-right: none; }
    .hero-stat-number { font-size: 1.6rem; }
    .hero-prev, .hero-next { display: none !important; }

    .search-card { margin-top: -32px; padding: 24px 20px; }
    .search-form { grid-template-columns: 1fr; }
    .search-btn-wrap { grid-column: span 1; }
    .search-tabs { display: none; }

    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .grid-auto { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; padding-bottom: 24px !important; }
    .stat-item:last-child { border-bottom: none !important; }

    .testimonial-card { min-width: 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .footer-bottom-links { flex-wrap: wrap; gap: 12px; }

    .modal { padding: 28px 20px; }

    .floating-actions { right: 16px; bottom: 24px; }
    .fab-whatsapp, .fab-call { width: 50px; height: 50px; font-size: 1.3rem; }

    .form-row { grid-template-columns: 1fr; }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .service-checklist-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .service-detail-card {
        padding: 24px 18px !important;
        border-radius: 18px !important;
    }
    .service-detail-card .btn {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 12px 14px !important;
        font-size: 0.85rem !important;
        box-sizing: border-box !important;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Page Headers Mobile */
    .page-header {
        padding: 40px 16px !important;
    }
    .page-header h1 {
        font-size: 1.55rem !important;
        line-height: 1.3 !important;
    }
    .page-header p {
        font-size: 0.85rem !important;
    }

    /* Property Filter Tabs Mobile Horizontal Scroll */
    .property-tabs-wrapper > div {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        -webkit-overflow-scrolling: touch;
        padding: 6px !important;
        justify-content: flex-start !important;
    }
    .prop-tab-btn {
        flex-shrink: 0 !important;
        padding: 8px 16px !important;
        font-size: 0.82rem !important;
    }

    /* Contact Page Grid Mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Property Cards Actions Mobile */
    .property-card-actions {
        display: flex !important;
        gap: 8px !important;
    }
    .property-card-actions .btn {
        flex: 1 !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 10px 8px !important;
        font-size: 0.82rem !important;
    }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-lg { padding: 16px 28px; }
}

/* ----------------------------------------------------------------
   27. RESPONSIVE — SMALL MOBILE (≤ 480px)
---------------------------------------------------------------- */
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .hero-controls { display: none; }
    .property-card-actions { flex-direction: row; gap: 8px; }
    .search-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ================================================================
   BLOG ARTICLE BODY — CKEditor Content Styling
   ================================================================ */
.blog-article-body h1,
.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4,
.blog-article-body h5,
.blog-article-body h6 {
    color: var(--navy);
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.35;
    margin: 28px 0 12px;
}
.blog-article-body h2 { font-size: 1.5rem; }
.blog-article-body h3 { font-size: 1.25rem; }
.blog-article-body h4 { font-size: 1.08rem; }

.blog-article-body p {
    margin: 0 0 18px;
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.85;
}

.blog-article-body strong, .blog-article-body b {
    color: var(--navy);
    font-weight: 700;
}

.blog-article-body em, .blog-article-body i {
    font-style: italic;
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 0 0 18px 24px;
    padding: 0;
}

.blog-article-body ul li,
.blog-article-body ol li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.blog-article-body blockquote {
    border-left: 4px solid var(--gold);
    margin: 24px 0;
    padding: 14px 24px;
    background: rgba(212,175,55,0.07);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--navy);
    font-size: 1.05rem;
}

.blog-article-body a {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 600;
}

.blog-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-article-body table th,
.blog-article-body table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 0.92rem;
}

.blog-article-body table th {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    text-align: left;
}

.blog-article-body table tr:nth-child(even) {
    background: var(--gray-50);
}
