/* ============================================================
   Lord Krishna Properties — Premium CSS
   Theme: Cinematic Luxury
   Palette: Deep Slate + Gold (#c9a24b) + Warm White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
    --primary:       #0a0f1e;
    --primary-mid:   #0f172a;
    --secondary:     #1a2744;
    --gold:          #c9a24b;
    --gold-light:    #e5c97e;
    --gold-dim:      rgba(201, 162, 75, 0.15);
    --gold-glow:     rgba(201, 162, 75, 0.35);
    --teal:          #0d9488;
    --white:         #ffffff;
    --off-white:     #f8f6f0;
    --text-muted:    rgba(255,255,255,0.65);
    --text-dark:     #1e293b;
    --text-mid:      #475569;
    --glass-bg:      rgba(255,255,255,0.06);
    --glass-border:  rgba(255,255,255,0.12);
    --glass-light:   rgba(255,255,255,0.90);
    --shadow-sm:     0 4px 16px rgba(0,0,0,0.12);
    --shadow-md:     0 12px 40px rgba(0,0,0,0.18);
    --shadow-gold:   0 8px 32px rgba(201,162,75,0.25);
    --radius:        16px;
    --radius-sm:     8px;
    --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Outfit', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

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

ul { list-style: none; }

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

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-mid);
}

h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--primary-mid);
}

.text-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-mid);
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
}

.title-underline {
    position: relative;
    display: inline-block;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 99px;
}

.title-underline.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ─── Layout ────────────────────────────────────────────── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--primary-mid);
}

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Custom Cursor ─────────────────────────────────────── */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201,162,75,0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
}

body.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    background: rgba(201,162,75,0.08);
    border-color: var(--gold);
}

body.cursor-hover .cursor-dot {
    opacity: 0;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary) !important;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white) !important;
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    color: var(--gold) !important;
}

/* Legacy compatibility */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary::after { display: none !important; }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary) !important;
}

/* ─── Header / Navbar (Clean Luxury Design) ──────────────── */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: 0 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform var(--transition);
}

.logo-container:hover {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

/* Scrolled state */
.header.scrolled {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 75, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}



.nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width var(--transition);
    border-radius: 99px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    z-index: 1001;
}

.mobile-menu-btn:hover { color: var(--gold); }

/* ─── Hero Section ──────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Light Theme Hero overrides */
.hero.hero-light {
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2075&q=80') center/cover no-repeat;
    background-attachment: fixed;
}
.hero.hero-light .hero-overlay {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero.hero-light h1 {
    color: var(--primary-mid);
    text-shadow: 0 4px 24px rgba(201, 162, 75, 0.25);
}
.hero.hero-light .hero-subtitle {
    color: var(--text-mid);
}
.hero.hero-light .hero-eyebrow {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 162, 75, 0.3);
}
.hero.hero-light .scroll-indicator {
    color: var(--primary-mid);
}

/* Header link overrides for light hero */
.light-hero-header:not(.scrolled) .nav-links a:not(.btn) {
    color: var(--primary-mid);
    font-weight: 500;
}
.light-hero-header:not(.scrolled) .nav-links a:not(.btn):hover {
    color: var(--gold);
}

/* Light mode search bar overrides */
.hero.hero-light .search-bar {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 162, 75, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}
.hero.hero-light .search-bar input {
    color: var(--text-dark);
}
.hero.hero-light .search-bar select {
    color: var(--text-dark);
    border-right-color: rgba(0,0,0,0.1);
}
.hero.hero-light .search-bar input::placeholder {
    color: rgba(0,0,0,0.4);
}

@keyframes kenBurns {
    0%   { transform: scale(1)    translate(0, 0); }
    33%  { transform: scale(1.06) translate(-1%, 0.5%); }
    66%  { transform: scale(1.04) translate(1%, -0.8%); }
    100% { transform: scale(1.08) translate(-0.5%, 1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,15,30,0.82) 0%,
        rgba(10,15,30,0.68) 50%,
        rgba(10,15,30,0.90) 100%
    );
    z-index: 1;
}

.hero-overlay-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 860px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,162,75,0.35);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    background: rgba(201,162,75,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 0.2s forwards;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s 0.4s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.9s 0.6s forwards;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Search Bar */
.search-bar {
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 10px 10px 16px;
    border-radius: 80px;
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s 0.85s forwards;
}

.search-bar select,
.search-bar input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    outline: none;
    transition: background var(--transition);
}

.search-bar select option {
    background: var(--primary-mid);
    color: var(--white);
}

.search-bar select:focus,
.search-bar input:focus {
    background: rgba(255,255,255,0.18);
}

.search-bar input::placeholder { color: rgba(255,255,255,0.5); }

.search-bar .btn-gold {
    flex-shrink: 0;
    border-radius: 50px;
    padding: 12px 28px;
    white-space: nowrap;
}

.search-bar .btn-gold:hover {
    box-shadow: 0 0 24px rgba(201,162,75,0.5);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    z-index: 10;
    opacity: 0;
    animation: heroFadeUp 0.8s 1.2s forwards;
}

.scroll-indicator span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.scroll-indicator i {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%       { transform: translateY(8px); opacity: 1; }
}

/* Hero floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

/* ─── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 0;
    position: relative;
    z-index: 2;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(201,162,75,0.15);
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(201,162,75,0.15);
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.6s ease;
}

.stat-item:hover::before { width: 100%; }
.stat-item:hover { background: rgba(201,162,75,0.04); }

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── Section Intro Block ───────────────────────────────── */
.section-intro {
    max-width: 600px;
}

.section-intro.center {
    margin: 0 auto;
    text-align: center;
}

.section-intro.center .section-subtitle {
    margin: 0 auto;
}

/* ─── Property Cards ────────────────────────────────────── */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 3rem;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    will-change: transform;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

.property-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

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

/* Hover overlay */
.property-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,15,30,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.property-card:hover .property-img-overlay {
    opacity: 1;
}

.property-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.property-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10,15,30,0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
}

.property-details {
    padding: 22px 24px;
}

.property-price {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.property-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

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

.property-location i { color: var(--gold); }

.property-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.82rem;
    color: var(--text-mid);
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-features i { color: var(--teal); font-size: 0.75rem; }

/* ─── Service Cards ─────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 42px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -60%; left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    border: 1px solid rgba(201,162,75,0.25);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 8px 24px rgba(201,162,75,0.4);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--gold);
    transition: color var(--transition);
}

.service-card:hover .service-icon {
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-mid);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ─── Testimonials (Swiper) ─────────────────────────────── */
.testimonials-section {
    background: var(--primary-mid);
    padding: 6rem 0;
    overflow: hidden;
}

.swiper-testimonials {
    overflow: visible;
    padding-bottom: 60px;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 36px 32px;
    color: var(--white);
    transition: background var(--transition);
}

.swiper-slide-active .testimonial-card {
    background: rgba(201,162,75,0.08);
    border-color: rgba(201,162,75,0.3);
}

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

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

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 24px !important;
    border-radius: 99px !important;
}

/* ─── AI Matchmaker ─────────────────────────────────────── */
.ai-matchmaker-section {
    background: linear-gradient(160deg, var(--primary) 0%, #0d1f3c 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ai-matchmaker-section .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.ai-match-container {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 48px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ai-step { width: 100%; animation: fadeIn 0.5s ease; }

.radar-spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(201,162,75,0.15);
    border-top-color: var(--gold);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Page Header (inner pages) ─────────────────────────── */
.page-header {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    background: var(--primary);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,15,30,0.6) 0%, rgba(10,15,30,0.9) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 0.6rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.65rem; }

/* ─── Property Filter ───────────────────────────────────── */
.filter-strip {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.filter-inner {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.12);
    background: transparent;
    color: var(--text-dark);
    transition: all var(--transition);
    font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
}

/* ─── Contact ───────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(160deg, var(--primary-mid) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.contact-info-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,162,75,0.12);
    border: 1px solid rgba(201,162,75,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.info-item:hover .info-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.info-item:hover .info-icon i { color: var(--primary); }

.info-icon i {
    color: var(--gold);
    font-size: 1rem;
    transition: color var(--transition);
}

.info-item h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-item p, .info-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-item a:hover { color: var(--gold); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-form-card h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--primary-mid);
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    color: var(--text-dark);
    transition: all var(--transition);
    background: var(--off-white);
}

.form-control:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,162,75,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* ─── About Page ────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.about-img-wrapper:hover img { transform: scale(1.04); }

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.stat-mini-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.stat-mini-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.stat-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.stat-mini-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini-label {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-top: 4px;
}

/* ─── CTA Section ───────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1f3c 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.55);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(201,162,75,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 1.5px;
    background: var(--gold);
}

.footer-col p { font-size: 0.88rem; line-height: 1.8; }

.footer-links li { margin-bottom: 10px; }

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

.footer-links a::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition);
    flex-shrink: 0;
}

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

.footer-links a:hover::before { opacity: 1; }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom span { color: var(--gold); }

/* ─── AI Chat Button ────────────────────────────────────── */
.ai-chat-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(201,162,75,0.45);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.ai-chat-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 36px rgba(201,162,75,0.6);
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold);
    animation: aiPulse 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes aiPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* Chat Panel */
.ai-chatbot-container {
    position: fixed;
    bottom: 104px;
    right: 32px;
    width: 360px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.5);
    z-index: 1000;
    overflow: hidden;
    transform: scale(0.88) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.ai-chatbot-container.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ai-chatbot-header {
    background: linear-gradient(135deg, var(--primary-mid), var(--secondary));
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
}

.ai-chatbot-body {
    height: 280px;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.ai-message {
    background: #f0f4f8;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.user-message {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.ai-chatbot-input {
    padding: 14px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    gap: 10px;
}

.ai-chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition);
}

.ai-chatbot-input input:focus {
    border-color: var(--gold);
}

.ai-chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.ai-chatbot-input button:hover { transform: scale(1.08); }

/* ─── Utility / Helpers ─────────────────────────────────── */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

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

/* GSAP initial state */
.gs-reveal { opacity: 0; }

/* ─── Prefers Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; }
    .ai-pulse { animation: none; }
    .scroll-indicator i { animation: none; }
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ─── Multi-Color Mesh Gradient ───────────────────────────── */
.mesh-gradient-bg {
    background-color: var(--primary);
    background-image: 
        radial-gradient(at 0% 0%, rgba(13, 148, 136, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(201, 162, 75, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(107, 33, 168, 0.4) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(190, 24, 93, 0.3) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(37, 99, 235, 0.3) 0px, transparent 50%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 50%; }
}

/* ─── Property Carousel ──────────────────────────────────── */
.property-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.property-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-indicators {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

/* ─── WhatsApp Floater ──────────────────────────────────── */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

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

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header {
        top: 12px;
    }
    .header .container {
        padding: 8px 16px;
        border-radius: 40px;
    }
    .header.scrolled {
        top: 8px;
    }
    .header.scrolled .container {
        padding: 6px 16px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(10,15,30,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.3rem;
        letter-spacing: 0.08em;
        color: var(--white) !important;
    }

    .mobile-menu-btn { display: block; }

    .hero h1 { font-size: 2.4rem; }

    .search-bar {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 16px;
    }

    .search-bar .btn-gold { width: 100%; justify-content: center; }

    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }

    .services-grid { grid-template-columns: 1fr 1fr; }

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

    .section { padding: 4rem 0; }

    .ai-chatbot-container { width: calc(100vw - 32px); right: 16px; bottom: 90px; }
    .ai-chat-btn { right: 16px; bottom: 20px; }
    
    .emi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats-mini-grid { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 580px; }
}