/* ===== CSS VARIABLES ===== */
:root {
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --gold-dark: #A8844A;
    --navy: #0A1628;
    --navy-light: #132240;
    --charcoal: #1A1A2E;
    --dark: #0D0D0D;
    --cream: #FAF6F0;
    --cream-dark: #EDE6DA;
    --white: #FFFFFF;
    --gray-light: #B8B8C0;
    --gray: #6E6E7A;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--charcoal);
    background: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Perspective lives on a wrapper so position:fixed elements (loader, cursor, navbar) are not broken */
.card-stack-wrapper {
    perspective: 1200px;
}

/* ===== CARD STACK / PILE OF CARDS ===== */
/* Every section = exactly one viewport card */
.snap-section {
    position: sticky;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform-origin: center top;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s ease-out, border-radius 0.15s ease-out;
    will-change: transform, filter;
    scroll-snap-align: start;
    /* Card-like appearance */
    border-radius: 18px 18px 0 0;
    box-shadow:
        0 -8px 30px rgba(0, 0, 0, 0.35),
        0 -2px 8px rgba(0, 0, 0, 0.2),
        0 4px 20px rgba(201, 169, 110, 0.04);
    overflow: hidden;
}

/* Hero handles its own flex layout */
.hero.snap-section {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.footer.snap-section {
    position: relative;
    border-radius: 18px 18px 0 0;
    box-shadow:
        0 -8px 30px rgba(0, 0, 0, 0.35),
        0 -2px 8px rgba(0, 0, 0, 0.2);
}

/* Stacking z-index — each section covers the previous */
.snap-section:nth-child(1)  { z-index: 1; }
.snap-section:nth-child(2)  { z-index: 2; }
.snap-section:nth-child(3)  { z-index: 3; }
.snap-section:nth-child(4)  { z-index: 4; }
.snap-section:nth-child(5)  { z-index: 5; }
.snap-section:nth-child(6)  { z-index: 6; }
.snap-section:nth-child(7)  { z-index: 7; }
.snap-section:nth-child(8)  { z-index: 8; }
.snap-section:nth-child(9)  { z-index: 9; }
.snap-section:nth-child(10) { z-index: 10; }
.snap-section:nth-child(11) { z-index: 11; }
.snap-section:nth-child(12) { z-index: 12; }

/* Pile peek — visible via injected child elements (avoids overflow:hidden clipping) */

::selection {
    background: var(--gold);
    color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ===== UTILITY ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--gray);
    font-weight: 300;
    font-style: italic;
    max-width: 550px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
}

/* ===== LOADING SCREEN ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Loader logo wrapper */
.loader-logo {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    animation: loaderLogoEntry 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

@keyframes loaderLogoEntry {
    0%   { opacity: 0; transform: scale(0.5) rotateY(90deg); }
    60%  { opacity: 1; transform: scale(1.08) rotateY(0deg); }
    100% { opacity: 1; transform: scale(1) rotateY(0deg); }
}

/* Loader background particles */
.loader-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.loader-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: loaderParticleRise 3s ease-in-out infinite;
}

.loader-particles span:nth-child(1) { left: 8%;  bottom: 0; animation-delay: 0s;   animation-duration: 3.5s; }
.loader-particles span:nth-child(2) { left: 22%; bottom: 0; animation-delay: 0.4s; animation-duration: 2.8s; width: 3px; height: 3px; }
.loader-particles span:nth-child(3) { left: 38%; bottom: 0; animation-delay: 0.9s; animation-duration: 3.2s; }
.loader-particles span:nth-child(4) { left: 52%; bottom: 0; animation-delay: 0.2s; animation-duration: 4s;   width: 3px; height: 3px; }
.loader-particles span:nth-child(5) { left: 65%; bottom: 0; animation-delay: 1.1s; animation-duration: 2.5s; }
.loader-particles span:nth-child(6) { left: 78%; bottom: 0; animation-delay: 0.6s; animation-duration: 3.8s; width: 4px; height: 4px; }
.loader-particles span:nth-child(7) { left: 88%; bottom: 0; animation-delay: 1.3s; animation-duration: 3s; }
.loader-particles span:nth-child(8) { left: 45%; bottom: 0; animation-delay: 0.7s; animation-duration: 3.3s; width: 3px; height: 3px; }

@keyframes loaderParticleRise {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    20%  { opacity: 0.8; }
    80%  { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1.2); }
}

/* Outer spinning ring */
.loader-logo-ring-outer {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-right-color: rgba(201, 169, 110, 0.3);
    animation: loaderRingSpin 2.5s linear infinite;
}

/* Inner counter-rotating ring */
.loader-logo-ring-inner {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: rgba(201, 169, 110, 0.6);
    border-left-color: rgba(201, 169, 110, 0.15);
    animation: loaderRingSpin 1.8s linear infinite reverse;
}

/* Pulsing ring */
.loader-logo-ring-pulse {
    position: absolute;
    inset: -42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.1);
    animation: loaderRingPulse 2s ease-in-out infinite;
}

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

@keyframes loaderRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.15); }
    50%      { transform: scale(1.08); opacity: 0.7; box-shadow: 0 0 20px 4px rgba(201, 169, 110, 0.1); }
}

/* Pulsing glow behind logo */
.loader-logo-glow {
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    animation: loaderGlow 2s ease-in-out infinite;
}

@keyframes loaderGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.15), 0 0 60px rgba(201, 169, 110, 0.05); }
    50%      { box-shadow: 0 0 40px rgba(201, 169, 110, 0.35), 0 0 100px rgba(201, 169, 110, 0.12); }
}

/* Glass card for the logo */
.loader-logo-glass {
    position: relative;
    width: 200px;
    height: 200px;
    background: rgba(201, 169, 110, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: loaderFloat 3s ease-in-out infinite;
}

@keyframes loaderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Shimmer sweep */
.loader-logo-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(201, 169, 110, 0.15) 45%,
        rgba(201, 169, 110, 0.25) 50%,
        rgba(201, 169, 110, 0.15) 55%,
        transparent 60%
    );
    animation: loaderShimmer 2.5s ease-in-out infinite;
}

@keyframes loaderShimmer {
    0%   { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Inner border accent */
.loader-logo-glass::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 19px;
    pointer-events: none;
}

.loader-logo-glass img {
    width: 150px;
    height: auto;
    border-radius: 14px;
    position: relative;
    z-index: 1;
    filter: brightness(1.1);
}

/* Brand name under loader logo */
.loader-brand {
    margin-top: 30px;
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.loader-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.loader-brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(201, 169, 110, 0.6);
    letter-spacing: 2px;
}

/* Progress bar */
.loader-bar {
    width: 220px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
    border-radius: 2px;
    margin-top: 30px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    animation: loadBar 1.4s ease 0.9s forwards;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.5);
}

@keyframes loadBar {
    to { left: 0; }
}

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

/* ===== CURSOR ===== */
.cursor {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2.5);
    background: rgba(201, 169, 110, 0.1);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar.scrolled .nav-logo-icon {
    width: 70px;
    height: 58px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 75px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    border-radius: 8px;
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    overflow: hidden;
    padding: 4px;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 500;
}

.nav-logo-text span:last-child {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

.nav-contact {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 10px 28px;
    transition: var(--transition);
}

.nav-contact:hover {
    background: var(--gold);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(26,26,46,0.75) 50%, rgba(10,22,40,0.80) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-logo-showcase {
    position: absolute;
    right: 8%;
    top: 35%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: logoReveal 1.5s ease 2.6s forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: translateY(-50%) scale(0.7); }
    60% { opacity: 1; transform: translateY(-50%) scale(1.05); }
    100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

.hero-logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer rotating ring */
.logo-ring-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--gold);
    border-right-color: rgba(201, 169, 110, 0.3);
    animation: ringRotate 8s linear infinite;
}

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

/* Inner counter-rotating ring */
.logo-ring-inner {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: var(--gold);
    border-left-color: rgba(201, 169, 110, 0.2);
    animation: ringRotate 6s linear infinite reverse;
}

/* Pulsing glow ring */
.logo-pulse-ring {
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.15);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.2), inset 0 0 30px rgba(201, 169, 110, 0.05); }
    50% { box-shadow: 0 0 30px 8px rgba(201, 169, 110, 0.15), inset 0 0 50px rgba(201, 169, 110, 0.1); }
}

/* Glass card holding the logo */
.logo-glass {
    position: relative;
    width: 180px;
    height: 180px;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(-12px) rotate(1deg); }
    50%  { transform: translateY(-18px) rotate(0deg); }
    75%  { transform: translateY(-12px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Shimmer sweep across the glass */
.logo-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(201, 169, 110, 0.12) 45%,
        rgba(201, 169, 110, 0.2) 50%,
        rgba(201, 169, 110, 0.12) 55%,
        transparent 60%
    );
    animation: logoShimmer 4s ease-in-out infinite;
}

@keyframes logoShimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Gold corner accents */
.logo-glass::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 18px;
    pointer-events: none;
}

.logo-glass img {
    width: 130px;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    filter: brightness(1.1);
}

/* Orbiting dots */
.logo-orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.6);
}

.logo-orbit-dot:nth-child(1) {
    animation: orbitDot1 8s linear infinite;
}

.logo-orbit-dot:nth-child(2) {
    animation: orbitDot2 6s linear infinite;
}

.logo-orbit-dot:nth-child(3) {
    width: 4px;
    height: 4px;
    animation: orbitDot3 10s linear infinite;
}

@keyframes orbitDot1 {
    0%   { top: 0;   left: 50%;  }
    25%  { top: 50%;  left: 100%; }
    50%  { top: 100%; left: 50%;  }
    75%  { top: 50%;  left: 0;    }
    100% { top: 0;   left: 50%;  }
}

@keyframes orbitDot2 {
    0%   { top: 50%;  left: 0;    }
    25%  { top: 0;    left: 50%;  }
    50%  { top: 50%;  left: 100%; }
    75%  { top: 100%; left: 50%;  }
    100% { top: 50%;  left: 0;    }
}

@keyframes orbitDot3 {
    0%   { top: 15%;  left: 15%;  }
    25%  { top: 15%;  left: 85%;  }
    50%  { top: 85%;  left: 85%;  }
    75%  { top: 85%;  left: 15%;  }
    100% { top: 15%;  left: 15%;  }
}

/* Brand text below logo */
.logo-brand-text {
    position: absolute;
    top: -35px;
    text-align: center;
    width: 100%;
}

.logo-brand-text span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 8%;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 8px 20px;
    margin-top: 40px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease 1.8s forwards;
}

.hero-badge span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.hero-badge i {
    color: var(--gold);
    font-size: 0.6rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 2s forwards;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(
        90deg,
        #A8844A 0%,
        #C9A96E 15%,
        #E8D5A8 30%,
        #FFF5D6 45%,
        #E8D5A8 55%,
        #C9A96E 70%,
        #D4BA8A 85%,
        #A8844A 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.4));
}

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

.hero h1 .thin {
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}

.hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    font-style: italic;
    opacity: 0;
    animation: fadeUp 1s ease 2.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 2.4s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s ease 2.6s forwards;
}

.hero-scroll span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-lr;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.5; height: 40px; }
}

.hero-stats {
    position: absolute;
    right: 8%;
    bottom: 12%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1s ease 2.6s forwards;
}

.hero-stat {
    text-align: right;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
}

.hero-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}

/* ===== FEATURED PROPERTIES ===== */
.properties {
    padding: 50px 0 30px;
    background: var(--cream);
    position: relative;
}

.properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.property-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    group: true;
}

.property-card:hover {
    /* 3D tilt handled by JS mousemove */
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

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

.property-img-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    background-size: cover;
    background-position: center;
}

/* ===== LOCATION FILTER TABS ===== */
.location-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.location-filter-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-right: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-filter-label i {
    color: var(--gold);
    font-size: 0.8rem;
}

.filter-tab {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.15);
    padding: 10px 22px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.filter-tab:hover {
    color: var(--gold);
    border-color: rgba(201, 169, 110, 0.3);
}

.filter-tab:hover::before {
    width: 60%;
}

.filter-tab.active {
    color: var(--navy);
    background: var(--gold);
    border-color: var(--gold);
}

.filter-tab.active::before {
    display: none;
}

.filter-count {
    font-size: 0.6rem;
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
}

.filter-tab.active .filter-count {
    background: rgba(10, 22, 40, 0.2);
    color: var(--navy);
}

/* Property card filter animation */
.property-card.filter-hidden {
    display: none !important;
}

.property-card.filter-enter {
    animation: filterFadeIn 0.5s ease forwards;
}

@keyframes filterFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 2.5rem;
    color: rgba(201, 169, 110, 0.3);
    margin-bottom: 16px;
    display: block;
}

.no-results p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--gray);
    font-style: italic;
}

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

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    z-index: 2;
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.property-overlay-content {
    color: var(--white);
}

.property-location {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.property-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
}

.property-info {
    padding: 16px 22px;
}

.property-features {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.property-feature span {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

.property-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.property-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 600;
}

.property-cta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.property-cta:hover {
    gap: 14px;
}

/* ===== ABOUT ===== */
.about {
    padding: 24px 0 20px;
    background: var(--white);
    justify-content: center;
    overflow-y: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-img-main {
    width: 100%;
    flex: 1;
    min-height: 340px;
    background:
        linear-gradient(145deg, rgba(10,22,40,0.15), rgba(19,34,64,0.1)),
        url('images/about-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.about-img-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,0.2), transparent);
}

.about-img-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-experience {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: var(--white);
    padding: 16px;
    text-align: center;
    z-index: 2;
}

.about-experience-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-experience-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 1.5;
}

.about-content {
    padding-right: 0;
}

.about-text {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 10px 0;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-highlight-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-highlight-icon i {
    color: var(--gold);
    font-size: 0.85rem;
}

.about-highlight-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 1px;
}

.about-highlight-text p {
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.5;
}

/* --- Founders Strip (overlays bottom of about image) --- */
.founders-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(14px);
    padding: 10px 16px;
    gap: 12px;
    z-index: 3;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.founder-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    border: 1.5px solid rgba(201, 169, 110, 0.5);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    box-shadow: 0 4px 14px rgba(201, 169, 110, 0.25);
}

.founder-card:nth-child(3) .founder-avatar {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-color: rgba(201, 169, 110, 0.4);
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.founder-role {
    font-family: 'Raleway', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.founders-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.4), transparent);
    flex-shrink: 0;
}

/* --- Philosophy Quote --- */
.about-philosophy {
    position: relative;
    padding: 10px 14px 10px 16px;
    margin-bottom: 10px;
    border-left: 2px solid var(--gold);
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.05), transparent);
}

.about-philosophy i {
    position: absolute;
    top: 6px;
    left: 16px;
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0.4;
}

.about-philosophy p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
    padding-left: 0;
}

/* --- About CTA Row --- */
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}

.about-phone i {
    font-size: 0.7rem;
}

.about-phone:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* ===== SERVICES ===== */
.services {
    padding: 40px 0 24px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(201,169,110,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(201,169,110,0.04) 0%, transparent 50%);
}

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

.services .section-subtitle {
    color: rgba(255,255,255,0.4);
}

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

.services-header .section-label {
    justify-content: center;
}

.services-header .section-label::before {
    display: none;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 20px 14px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(201, 169, 110, 0.05);
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateY(-4px);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
}

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

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

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 0;
    background: var(--cream);
    position: relative;
    justify-content: center;
    align-items: center;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Large decorative quote in background */
.testimonials::after {
    content: '\201C';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: 'Playfair Display', serif;
    font-size: 28rem;
    color: var(--gold);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonials > .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-header .section-label {
    justify-content: center;
}

.testimonials-header .section-label::before {
    display: none;
}

.testimonials-header .section-subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    position: relative;
    width: 100%;
    min-height: 200px;
}

.testimonial-card {
    background: transparent;
    padding: 0;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.testimonial-card:hover {
    box-shadow: none;
}

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

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.45;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: var(--charcoal);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 20px;
    border-top: none;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card:nth-child(1) .testimonial-avatar { background: var(--navy); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--gold); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--charcoal); }
.testimonial-card:nth-child(4) .testimonial-avatar { background: var(--gold-dark); }
.testimonial-card:nth-child(5) .testimonial-avatar { background: var(--navy-light); }

.testimonial-author-info {
    text-align: left;
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonial-role {
    font-size: 0.72rem;
    color: var(--gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 16px;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--charcoal);
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== RERA BADGE ON PROPERTY CARDS ===== */
.property-rera {
    font-family: 'Raleway', sans-serif;
    font-size: 0.58rem;
    color: var(--gray);
    letter-spacing: 0.5px;
    padding-top: 8px;
    border-top: 1px dashed rgba(0,0,0,0.06);
    margin-top: 8px;
}
.property-rera i { color: var(--gold); margin-right: 4px; font-size: 0.6rem; }

/* ===== COMBINED LOCALITY + EMI ===== */
.locality-emi-section {
    padding: 20px 0 16px;
    background: var(--cream);
    justify-content: center;
}
.emi-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 14px auto;
}

/* ===== EMI CALCULATOR ===== */
.emi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    max-width: 780px;
    margin: 0 auto;
}
.emi-form-card {
    background: var(--white);
    padding: 18px 20px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}
.emi-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--navy);
}
.emi-slider-group { margin-bottom: 10px; }
.emi-slider-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.emi-slider-label span {
    color: var(--gold);
    font-size: 0.78rem;
}
.emi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: var(--cream-dark);
    border-radius: 2px;
    outline: none;
}
.emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
}
.emi-result {
    text-align: center;
}
.emi-result-card {
    background: var(--navy);
    padding: 18px 20px;
    text-align: center;
}
.emi-result-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.emi-result-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.emi-result-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    color: var(--gray-light);
    letter-spacing: 1px;
}
.emi-breakdown {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.emi-breakdown-item { text-align: center; }
.emi-breakdown-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--gold-light);
    font-weight: 600;
}
.emi-breakdown-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.5rem;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ===== LOCALITY GUIDES ===== */
.locality-header {
    text-align: center;
    margin-bottom: 18px;
}
.locality-header .section-label { justify-content: center; }
.locality-header .section-label::before { display: none; }
.locality-header .section-subtitle { margin: 0 auto; }
.locality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.locality-card {
    background: var(--white);
    padding: 18px 16px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.locality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.locality-card:hover::before { transform: scaleX(1); }
.locality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.locality-card-zone {
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.locality-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}
.locality-card-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.locality-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-size: 0.64rem;
    color: var(--gray);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.locality-stat strong {
    color: var(--navy);
    font-weight: 600;
}
.locality-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}
.locality-tag {
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold-dark);
    padding: 3px 8px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 40px 0 24px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    padding-right: 20px;
}

.contact-text {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon i {
    color: var(--gold);
}

.contact-detail-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 0.8rem;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-text a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 14px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a i {
    color: var(--charcoal);
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-social a:hover i {
    color: var(--white);
}

.contact-form {
    background: var(--cream);
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 10px;
}

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

.form-group label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-submit {
    width: 100%;
    justify-content: center;
}

/* ===== FOOTER — IMMERSIVE FINAL CARD ===== */
.footer {
    background: var(--dark);
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* --- CTA Banner (top half) --- */
.footer-cta {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(10,22,40,0.92) 0%, rgba(13,13,13,0.88) 50%, rgba(10,22,40,0.92) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
}

.footer-cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.06) 0%, transparent 50%);
}

/* Floating particles */
.footer-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-cta-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: footerParticle 6s ease-in-out infinite;
}

.footer-cta-particles span:nth-child(1) { left: 10%; top: 80%; animation-delay: 0s; }
.footer-cta-particles span:nth-child(2) { left: 25%; top: 90%; animation-delay: 1s; width: 4px; height: 4px; }
.footer-cta-particles span:nth-child(3) { left: 50%; top: 85%; animation-delay: 2s; }
.footer-cta-particles span:nth-child(4) { left: 70%; top: 90%; animation-delay: 0.5s; width: 2px; height: 2px; }
.footer-cta-particles span:nth-child(5) { left: 85%; top: 80%; animation-delay: 1.5s; width: 4px; height: 4px; }
.footer-cta-particles span:nth-child(6) { left: 40%; top: 95%; animation-delay: 3s; }

@keyframes footerParticle {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    20%  { opacity: 0.8; }
    80%  { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}

.footer-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.footer-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.25);
    padding: 6px 18px;
    margin-bottom: 18px;
}

.footer-cta-badge span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.footer-cta-badge i {
    color: var(--gold);
    font-size: 0.6rem;
}

.footer-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.footer-cta-content h2 em {
    font-style: italic;
    background: linear-gradient(90deg, #A8844A, #C9A96E, #E8D5A8, #C9A96E, #A8844A);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

.footer-cta-content > p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.footer-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Mini stats row */
.footer-cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.footer-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-cta-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
}

.footer-cta-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}

.footer-cta-stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
}

/* --- Footer links (bottom half) --- */
.footer-links-section {
    background: var(--dark);
    border-top: 1px solid rgba(201,169,110,0.1);
    padding: 30px 0 0;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-logo {
    margin-bottom: 10px;
}

.footer-brand .nav-logo-icon {
    border-color: rgba(201, 169, 110, 0.5);
}

.footer-brand p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 280px;
}

.footer h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom p a {
    color: var(--gold);
    text-decoration: none;
}

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

.footer-bottom-links a {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: var(--white);
    font-size: 1.8rem;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--white);
    color: var(--charcoal);
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===== HERO PARTICLES ===== */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
    15% { opacity: 0.7; }
    85% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-100vh) translateX(40px) scale(1); }
}

.hero-particles .particle:nth-child(1)  { left: 5%;  bottom: -5%; width: 3px; height: 3px; animation-duration: 8s;  animation-delay: 0s; }
.hero-particles .particle:nth-child(2)  { left: 15%; bottom: -5%; width: 5px; height: 5px; animation-duration: 12s; animation-delay: 1s; }
.hero-particles .particle:nth-child(3)  { left: 25%; bottom: -5%; width: 2px; height: 2px; animation-duration: 9s;  animation-delay: 3s; }
.hero-particles .particle:nth-child(4)  { left: 35%; bottom: -5%; width: 4px; height: 4px; animation-duration: 11s; animation-delay: 2s; }
.hero-particles .particle:nth-child(5)  { left: 45%; bottom: -5%; width: 3px; height: 3px; animation-duration: 10s; animation-delay: 4s; }
.hero-particles .particle:nth-child(6)  { left: 55%; bottom: -5%; width: 6px; height: 6px; animation-duration: 13s; animation-delay: 0.5s; }
.hero-particles .particle:nth-child(7)  { left: 65%; bottom: -5%; width: 2px; height: 2px; animation-duration: 8s;  animation-delay: 5s; }
.hero-particles .particle:nth-child(8)  { left: 75%; bottom: -5%; width: 4px; height: 4px; animation-duration: 10s; animation-delay: 1.5s; }
.hero-particles .particle:nth-child(9)  { left: 85%; bottom: -5%; width: 3px; height: 3px; animation-duration: 9s;  animation-delay: 3.5s; }
.hero-particles .particle:nth-child(10) { left: 92%; bottom: -5%; width: 5px; height: 5px; animation-duration: 11s; animation-delay: 2.5s; }
.hero-particles .particle:nth-child(11) { left: 10%; bottom: -5%; width: 2px; height: 2px; animation-duration: 14s; animation-delay: 6s; }
.hero-particles .particle:nth-child(12) { left: 40%; bottom: -5%; width: 3px; height: 3px; animation-duration: 7s;  animation-delay: 4.5s; }
.hero-particles .particle:nth-child(13) { left: 60%; bottom: -5%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 7s; }
.hero-particles .particle:nth-child(14) { left: 80%; bottom: -5%; width: 2px; height: 2px; animation-duration: 9s;  animation-delay: 5.5s; }
.hero-particles .particle:nth-child(15) { left: 50%; bottom: -5%; width: 5px; height: 5px; animation-duration: 10s; animation-delay: 8s; }

/* ===== WHY CHOOSE US + OUR NETWORK (combined) ===== */
.why-choose {
    padding: 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.why-choose::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.why-choose-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0 30px;
    position: relative;
    z-index: 1;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-header .section-label {
    justify-content: center;
}

.why-choose-header .section-title {
    color: var(--white);
}

.why-choose-header .section-subtitle {
    color: var(--gray-light);
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.why-card {
    background: transparent;
    padding: 36px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    border-right: 1px solid rgba(201, 169, 110, 0.1);
    transition: var(--transition);
}

.why-card:last-child {
    border-right: none;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover::after {
    width: 60%;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.why-card-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}

.why-card-stat {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.why-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.why-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    color: var(--gray-light);
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== BUILDER PARTNERS MARQUEE (inline inside why-choose) ===== */
.partners-marquee-inline {
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    padding: 22px 0;
    flex-shrink: 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    z-index: 1;
}

/* Fade edges on the inline marquee */
.partners-marquee-inline::before,
.partners-marquee-inline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-inline::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.partners-marquee-inline::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
}

.partners-marquee-header {
    text-align: center;
    margin-bottom: 12px;
}

.partners-marquee-header .section-label {
    justify-content: center;
    margin-bottom: 6px;
    color: var(--gold);
}

.partners-marquee-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    flex-shrink: 0;
    padding: 12px 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

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

.marquee-item::after {
    content: '✦';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(201, 169, 110, 0.3);
    font-size: 0.6rem;
}

/* Old standalone partners-marquee fade edges removed — now handled by .partners-marquee-inline */

/* ===== INTERIOR DESIGN SECTION ===== */
.interior-design {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060e1a;
}

.interior-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/interior-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.interior-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 14, 26, 0.88);
}

.interior-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0;
}

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

.interior-info .section-label {
    color: var(--gold);
}

.interior-info .section-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.interior-info .section-title em {
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 0 25px rgba(201, 169, 110, 0.5), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.interior-info .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.interior-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.interior-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.interior-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.interior-feature-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.interior-feature-icon i {
    color: var(--gold);
    font-size: 0.9rem;
}

.interior-feature h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.interior-feature p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Architect showcase card */
.architect-showcase {
    position: relative;
}

.architect-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.15);
    padding: 50px;
    overflow: hidden;
}

.architect-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(201, 169, 110, 0.06) 45%,
        rgba(201, 169, 110, 0.1) 50%,
        rgba(201, 169, 110, 0.06) 55%,
        transparent 60%
    );
    animation: architectShimmer 5s ease-in-out infinite;
}

@keyframes architectShimmer {
    0%   { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.architect-image {
    width: 100%;
    height: 300px;
    background-image: url('images/bengaluru-3.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.architect-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.6), transparent 50%);
}

.architect-image-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 6px 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.architect-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(201, 169, 110, 0.12);
    line-height: 1;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
}

.architect-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.architect-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.architect-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.architect-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 16px 0;
    position: relative;
    z-index: 1;
}

.architect-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    z-index: 1;
}

.architect-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
}

.architect-stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

/* Decorative corner accents on architect card */
.architect-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.architect-corner::before,
.architect-corner::after {
    content: '';
    position: absolute;
    background: var(--gold);
}

.architect-corner.tl { top: 15px; left: 15px; }
.architect-corner.tl::before { top: 0; left: 0; width: 20px; height: 1px; }
.architect-corner.tl::after  { top: 0; left: 0; width: 1px; height: 20px; }

.architect-corner.br { bottom: 15px; right: 15px; }
.architect-corner.br::before { bottom: 0; right: 0; width: 20px; height: 1px; }
.architect-corner.br::after  { bottom: 0; right: 0; width: 1px; height: 20px; }

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-decoration: none;
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active-link {
    color: var(--gold) !important;
}

.nav-links a.active-link::after {
    width: 100% !important;
}

/* ===== FORM INPUT FOCUS ENHANCEMENT ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 2px 0 0 var(--gold);
}

/* ===== SERVICE CARD NUMBER ===== */
.service-card {
    counter-increment: service-counter;
    position: relative;
}

.service-card::before {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(201, 169, 110, 0.07);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.service-card:hover::before {
    color: rgba(201, 169, 110, 0.15);
}

.services-grid {
    counter-reset: service-counter;
}

/* ===== TYPEWRITER ===== */
.typewriter-line {
    display: inline;
    border-right: 2px solid var(--gold);
    animation: typeBlink 0.7s step-end infinite;
}

.typewriter-line.done {
    border-right-color: transparent;
    animation: none;
}

@keyframes typeBlink {
    50% { border-right-color: transparent; }
}

/* ===== SOCIAL MODAL ===== */
.social-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.social-modal {
    position: relative;
    max-width: 480px;
    width: 90%;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(145deg, var(--navy), #0f2035);
    border: 1px solid rgba(201, 169, 110, 0.25);
    transform: scale(0.8) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

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

.social-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(201,169,110,0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(201,169,110,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.social-modal-sparkle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.social-modal-sparkle span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.social-modal-sparkle span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.social-modal-sparkle span:nth-child(2) { top: 25%; right: 15%; animation-delay: 0.5s; }
.social-modal-sparkle span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.social-modal-sparkle span:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 1.5s; }
.social-modal-sparkle span:nth-child(5) { top: 50%; left: 5%; animation-delay: 0.7s; width: 3px; height: 3px; }
.social-modal-sparkle span:nth-child(6) { top: 10%; right: 30%; animation-delay: 1.2s; width: 5px; height: 5px; }

@keyframes sparkleFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0) scale(1); }
    50% { opacity: 1; transform: translateY(-12px) scale(1.5); }
}

.social-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.social-modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
}

.social-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: modalPulseRing 2s ease infinite;
}

@keyframes modalPulseRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.3); }
    50% { box-shadow: 0 0 0 14px rgba(201, 169, 110, 0); }
}

.social-modal-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.social-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.social-modal h3 em {
    color: var(--gold);
    font-style: italic;
}

.social-modal p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.social-modal-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.social-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 8px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

/* ===== VERTICAL DOT NAVIGATION ===== */
.dot-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.dot-nav.visible {
    opacity: 1;
}

.dot-nav a {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    background: transparent;
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
}

.dot-nav a::before {
    content: attr(data-label);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-50%) translateX(8px);
}

.dot-nav a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.dot-nav a:hover {
    border-color: var(--gold);
    transform: scale(1.3);
}

.dot-nav a.active-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.5);
}

/* ===== GOLD GRADIENT TEXT ===== */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services .section-title,
.partners-marquee-header h3,
.why-choose-header .section-title {
    background: linear-gradient(135deg, #FFFFFF 0%, #D4BA8A 50%, #C9A96E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== GLASSMORPHISM SERVICE CARDS ===== */
.service-card {
    padding: 20px 14px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(201, 169, 110, 0.06) 45%,
        rgba(201, 169, 110, 0.1) 50%,
        rgba(201, 169, 110, 0.06) 55%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
    animation: glassShimmer 1.5s ease forwards;
}

@keyframes glassShimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.service-card:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 169, 110, 0.1);
}

/* ===== 3D TILT PROPERTY CARDS ===== */
.property-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.property-card:hover {
    /* 3D tilt handled by JS mousemove for interactive tracking */
    box-shadow:
        0 35px 60px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(201, 169, 110, 0.08);
}

.property-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.5s ease;
    pointer-events: none;
    z-index: 3;
}

.property-card:hover::after {
    border-color: rgba(201, 169, 110, 0.3);
}

/* ===== CARD TOP EDGE ACCENT ===== */
.snap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 5%, rgba(201,169,110,0.15) 15%, var(--gold) 50%, rgba(201,169,110,0.15) 85%, transparent 95%);
    z-index: 10;
    opacity: 0.7;
    border-radius: 18px 18px 0 0;
}

.hero.snap-section::before {
    display: none;
}

/* Card corner fold — subtle triangular fold on top-right */
.snap-section .card-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 11;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 18px 0 0;
}

.snap-section .card-fold::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(201, 169, 110, 0.08) transparent transparent;
}

.hero .card-fold {
    display: none;
}

/* ===== ENHANCED TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: transparent;
    padding: 0;
    position: relative;
    transition: opacity 0.6s ease, transform 0.6s ease;
    border: none;
}

/* ===== WHY-CARD GLOW PULSE ===== */
.why-card:hover .why-card-icon {
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.08));
    border-color: rgba(201, 169, 110, 0.4);
}

.why-card-stat {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
    .services-grid { grid-template-columns: repeat(5, 1fr); }
    .why-choose-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(5, 1fr); }
    .properties-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { gap: 30px; }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .interior-grid { grid-template-columns: 1fr; gap: 50px; }
    .interior-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .navbar { padding: 16px 24px; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-links.active { right: 0; }

    .nav-contact {
        display: none;
    }

    .card-stack-wrapper { perspective: none; }
    .snap-section {
        position: relative;
        height: auto;
        max-height: none;
        min-height: auto;
        box-shadow: none;
        transform: none !important;
        border-radius: 0;
        filter: none !important;
        overflow: visible;
    }
    .snap-section::before { display: none; }
    .snap-section::after { display: none; }
    .snap-section .card-fold { display: none; }
    .card-pile-indicator { display: none !important; }

    /* Hero mobile layout — stack vertically */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 40px;
    }

    .hero.snap-section {
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    .hero-logo-showcase { display: none; }
    .hero-pattern { display: none; }

    /* Interior Design — mobile */
    .interior-design {
        min-height: auto;
        height: auto;
    }

    .interior-content {
        padding: 60px 0;
    }

    .interior-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .interior-features {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin: 30px 0;
    }

    .interior-feature-icon {
        width: 36px;
        height: 36px;
    }

    .interior-feature-icon i {
        font-size: 0.8rem;
    }

    .interior-feature h4 {
        font-size: 0.75rem;
    }

    .interior-feature p {
        font-size: 0.8rem;
    }

    .interior-text {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .interior-bg {
        background-attachment: scroll;
    }

    /* Architect card — mobile */
    .architect-card {
        padding: 24px;
    }

    .architect-image {
        height: 200px;
        margin-bottom: 20px;
    }

    .architect-quote {
        font-size: 2rem;
    }

    .architect-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .architect-name {
        font-size: 1.15rem;
    }

    .architect-stats {
        gap: 20px;
        margin-top: 20px;
        padding-top: 18px;
    }

    .architect-stat-num {
        font-size: 1.3rem;
    }

    .architect-stat-label {
        font-size: 0.55rem;
    }

    .architect-corner.tl { top: 10px; left: 10px; }
    .architect-corner.br { bottom: 10px; right: 10px; }

    .hero-content {
        padding: 0 24px;
        max-width: 100%;
    }

    .hero-badge {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.7rem;
    }

    .hero-stats {
        position: static;
        flex-direction: row;
        gap: 12px;
        padding: 30px 24px 0;
        opacity: 1;
        animation: none;
    }

    .hero-stat {
        text-align: center;
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(201, 169, 110, 0.15);
        padding: 16px 8px;
        border-radius: 8px;
    }

    .hero-stat-num {
        font-size: 1.4rem;
    }

    .hero-stat-label {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
        margin-top: 4px;
    }

    .hero-scroll { display: none; }

    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card {
        border-right: 1px solid rgba(201, 169, 110, 0.1);
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }
    .why-card:nth-child(2n) { border-right: none; }
    .why-card:nth-last-child(-n+2) { border-bottom: none; }

    .properties-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .testimonials::after { font-size: 14rem; }
    .testimonials-grid { min-height: 160px; }
    .testimonial-quote { font-size: 3rem; }
    .testimonial-text { font-size: 1.1rem; line-height: 1.8; }
    .testimonial-avatar { width: 44px; height: 44px; font-size: 1.1rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* About section — mobile overhaul */
    .about { padding: 30px 0 24px; }
    .about-grid { gap: 30px; }
    .about-content { padding-right: 0; }
    .about-img-main { height: 280px; }
    .about-img-accent { display: none; }

    /* Founders strip — flow below image instead of overlapping */
    .founders-strip {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
    }
    .founders-divider {
        width: 80%;
        height: 1px;
        align-self: center;
    }
    .founder-avatar { width: 36px; height: 36px; min-width: 36px; font-size: 0.8rem; }
    .founder-name { font-size: 0.82rem; }
    .founder-role { font-size: 0.52rem; }

    /* Experience badge — flow below founders strip */
    .about-experience {
        position: relative;
        top: auto;
        right: auto;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        margin: 0;
    }
    .about-experience-num { font-size: 1.1rem; }
    .about-experience-text { margin-top: 0; }
    .about-text { font-size: 0.82rem; line-height: 1.7; margin-bottom: 12px; }
    .about-philosophy { padding: 10px 14px 10px 16px; margin-bottom: 12px; }
    .about-philosophy p { font-size: 0.88rem; }
    .about-highlights { grid-template-columns: 1fr 1fr; gap: 10px; }
    .about-highlight { gap: 10px; }
    .about-highlight-icon { width: 32px; height: 32px; min-width: 32px; }
    .about-highlight-icon i { font-size: 0.85rem; }
    .about-highlight-text h4 { font-size: 0.82rem; }
    .about-highlight-text p { font-size: 0.7rem; }
    .about-cta-row { flex-direction: column; gap: 14px; }
    .about-cta-row .btn { width: 100%; justify-content: center; }
    .about-phone { justify-content: center; }

    /* New sections mobile */
    .locality-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .emi-grid { grid-template-columns: 1fr; gap: 24px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; right: 20px; }
    .whatsapp-tooltip { display: none; }

    /* Properties section mobile */
    .properties { padding: 36px 0 24px; }
    .properties-header { margin-bottom: 20px; }

    /* Location filter — wrap into rows on mobile */
    .location-filter {
        flex-wrap: wrap;
        margin-bottom: 24px;
        gap: 8px;
    }
    .location-filter-label {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2px;
    }
    .filter-tab {
        flex: 1 1 auto;
        text-align: center;
        padding: 10px 12px;
        font-size: 0.68rem;
    }

    /* Property card mobile — disable 3D transforms that break background-image on mobile WebKit */
    .property-card {
        border-radius: 8px;
        transform-style: flat !important;
        perspective: none !important;
        transform: none !important;
    }
    .property-card:hover { transform: none !important; }
    .property-card::after { display: none; }
    .property-img { height: 200px; }
    .property-img-bg {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .property-info { padding: 14px 16px; }
    .property-features { gap: 16px; }
    .property-overlay { padding: 14px; }
    .property-name { font-size: 1.05rem; }

    /* Testimonials mobile */
    .testimonial-quote { font-size: 1.6rem; }

    /* Contact mobile */
    .contact-form { padding: 30px; }
    .contact-info { padding-right: 0; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer CTA mobile */
    .footer-cta-content { padding: 0 24px; }
    .footer-cta-stats { gap: 16px; flex-wrap: wrap; }
    .footer-cta-actions { flex-direction: column; gap: 12px; }
    .footer-cta-actions .btn { width: 100%; justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    .cursor { display: none; }
    .dot-nav { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero { padding: 80px 0 30px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-badge span { font-size: 0.6rem; letter-spacing: 2px; }
    .hero-stat-num { font-size: 1.2rem; }
    .hero-stat { padding: 12px 6px; }
    .hero-content { padding: 0 16px; }
    .hero-stats { padding: 24px 16px 0; }
    .footer-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 1.4rem; }
    .section-subtitle { font-size: 0.95rem; }
    .section-label { font-size: 0.65rem; letter-spacing: 3px; }

    /* Properties on small screens */
    .properties { padding: 28px 0 20px; }
    .properties-header { margin-bottom: 16px; }
    .property-img { height: 220px; }
    .property-info { padding: 12px 14px; }
    .property-features { gap: 12px; }
    .property-feature span { font-size: 0.72rem; }
    .property-price { font-size: 1.05rem; }
    .property-cta { font-size: 0.6rem; padding: 6px 12px; }
    .filter-tab { padding: 8px 14px; font-size: 0.62rem; letter-spacing: 1px; }
    .filter-count { font-size: 0.55rem; padding: 1px 5px; }

    /* Services grid — single column on small phones */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 24px 16px; }
    .service-card h3 { font-size: 0.95rem; }
    .service-icon { width: 40px; height: 40px; }
    .service-icon i { font-size: 1rem; }

    .testimonials::after { font-size: 10rem; }
    .testimonial-text { font-size: 0.95rem; line-height: 1.7; }
    .testimonial-quote { font-size: 2.5rem; }
    .testimonial-avatar { width: 40px; height: 40px; font-size: 1rem; }
    .testimonial-name { font-size: 0.95rem; }
    .testimonial-role { font-size: 0.6rem; }

    .contact-form { padding: 20px 16px; }

    .why-choose-grid { grid-template-columns: 1fr; }
    .why-card { padding: 24px 16px; border-right: none; border-bottom: 1px solid rgba(201, 169, 110, 0.1); }
    .why-card:last-child { border-bottom: none; }
    .why-card-stat { font-size: 1.8rem; }
    .why-card-icon { width: 44px; height: 44px; }

    /* Footer CTA small phones */
    .footer-cta-content { padding: 0 16px; }
    .footer-cta-stats { gap: 12px; }
    .footer-cta-stat-num { font-size: 1.3rem; }

    /* New sections small phones */
    .locality-grid { grid-template-columns: 1fr; }
    .locality-card h3 { font-size: 0.95rem; }
    .emi-form-card { padding: 24px 18px; }
    .emi-result-amount { font-size: 2rem; }
    .emi-breakdown { flex-direction: column; gap: 12px; }

    /* About on small phones */
    .about { padding: 24px 0 20px; }
    .about-grid { gap: 20px; }
    .about-img-main { height: 200px; }
    .about-experience { padding: 12px 14px; }
    .about-experience-num { font-size: 1rem; }
    .about-experience-text { font-size: 0.5rem; }
    .about-text { font-size: 0.78rem; margin-bottom: 10px; }
    .about-philosophy p { font-size: 0.82rem; }
    .about-highlights { grid-template-columns: 1fr; gap: 10px; }
    .about-highlight-text h4 { font-size: 0.78rem; }
    .about-highlight-text p { font-size: 0.68rem; }
    .founders-strip { padding: 10px 12px; gap: 8px; }
    .founder-avatar { width: 32px; height: 32px; min-width: 32px; font-size: 0.72rem; }
    .founder-name { font-size: 0.78rem; }
    .founder-role { font-size: 0.48rem; letter-spacing: 1px; }
    .filter-tab { padding: 8px 10px; font-size: 0.62rem; }

    /* Interior — small mobile */
    .interior-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .interior-content {
        padding: 40px 0;
    }

    .architect-card {
        padding: 18px;
    }

    .architect-image {
        height: 170px;
        margin-bottom: 16px;
    }

    .architect-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .architect-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero { padding: 70px 0 24px; min-height: auto; }
    .hero h1 { font-size: 1.5rem; }
    .hero-desc { font-size: 0.88rem; }
    .hero-content { padding: 0 12px; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 0.65rem; }
    .hero-stat-num { font-size: 1rem; }
    .hero-stat-label { font-size: 0.45rem; }

    .section-title { font-size: 1.25rem; }
    .section-subtitle { font-size: 0.88rem; }

    /* About — ultra small */
    .about { padding: 20px 0 16px; }
    .about-grid { gap: 18px; }
    .about-img-main { height: 180px; }
    .about-experience { padding: 12px; gap: 8px; }
    .about-experience-num { font-size: 0.9rem; }
    .about-text { font-size: 0.75rem; line-height: 1.65; }
    .about-philosophy { padding: 8px 10px 8px 14px; }
    .about-philosophy p { font-size: 0.78rem; }
    .about-highlight-icon { width: 28px; height: 28px; min-width: 28px; }
    .about-highlight-icon i { font-size: 0.75rem; }
    .founder-avatar { width: 28px; height: 28px; min-width: 28px; font-size: 0.65rem; }
    .founder-name { font-size: 0.72rem; }

    .properties { padding: 24px 0 16px; }
    .property-img { height: 180px; }
    .property-info { padding: 10px 12px; }
    .property-name { font-size: 0.95rem; }
    .property-features { gap: 8px; }
    .property-feature span { font-size: 0.65rem; }
    .property-feature i { font-size: 0.7rem; }
    .property-price { font-size: 0.95rem; }

    .filter-tab { padding: 7px 10px; font-size: 0.58rem; }

    .navbar { padding: 12px 16px; }
    .nav-logo { font-size: 0.95rem; }

    .footer-cta-content { padding: 0 12px; }
    .contact-form { padding: 16px 12px; }
    .testimonial-card { padding: 20px 14px; }
    .why-card { padding: 20px 14px; }
    .service-card { padding: 20px 14px; }
}

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* 1. SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    background-size: 300% 100%;
    animation: progressShimmer 2s linear infinite;
    z-index: 10001;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.5), 0 0 4px rgba(201, 169, 110, 0.3);
    pointer-events: none;
}

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

/* 2. MAGNETIC HOVER — handled via JS transform, just need base */
.btn {
    transition: var(--transition), transform 0.2s ease-out;
}

/* 3. PROPERTY CARD 3D TILT — base styles */
.property-card {
    transform-style: preserve-3d;
}

.property-card .property-img-bg {
    transition: transform 0.6s ease;
}

/* 4. ANIMATED COUNTERS — handled by JS */

/* 5. TEXT REVEAL — cinematic clip-path reveal on section titles */
.reveal-text {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s ease;
}

.reveal-text.active {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

/* Stagger for subtitle after title */
.reveal-text-delay {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s,
                opacity 0.6s ease 0.15s;
}

.reveal-text-delay.active {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

/* 6. PROPERTY IMAGE PARALLAX — subtle shift */
.property-card:hover .property-img-bg {
    transition: transform 0.1s ease-out;
}

/* 7. NAVBAR LOGO GLOW on scroll */
.navbar.scrolled .nav-logo-icon {
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.25), 0 0 4px rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.6);
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

/* 8. GOLD RIPPLE on button click */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.35);
    transform: scale(0);
    animation: btnRipple 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes btnRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 9. SMOOTH ENTRANCE for property badge */
.property-card:hover .property-badge {
    animation: badgePop 0.4s ease;
}

@keyframes badgePop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* 10. ABOUT IMAGE HOVER ZOOM with grain */
.about-img-main {
    transition: all 0.6s ease;
}

.about-visual:hover .about-img-main {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-visual:hover .about-experience {
    transform: translateX(-4px) translateY(-4px);
    box-shadow: 8px 8px 30px rgba(201, 169, 110, 0.25);
    transition: all 0.4s ease;
}

/* ===== 11. TESTIMONIAL CAROUSEL ===== */
.testimonials-grid {
    position: relative;
}

.testimonial-card {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: transparent;
    color: var(--gold);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.25);
    cursor: pointer;
    transition: all 0.4s ease;
}

.testimonial-dot.active {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
    transform: scale(1.3);
}

/* ===== 12. MOUSE-FOLLOW GLOW ===== */
.mouse-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.mouse-glow.visible {
    opacity: 1;
}

/* ===== 13. TEXT SCRAMBLE on section labels ===== */
.label-scramble {
    display: inline-block;
}

/* ===== 14. PROPERTY DETAIL MODAL ===== */
.property-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 26, 0.92);
    backdrop-filter: blur(8px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 40px;
}

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

.property-modal {
    background: var(--white);
    max-width: 920px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

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

.property-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    z-index: 2;
}

.property-modal-img {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

.property-modal-overlay.active .property-modal-img img {
    transform: scale(1.05);
}

.property-modal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 40%);
}

.property-modal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    z-index: 1;
}

.property-modal-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.property-modal-location {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-modal-location i {
    font-size: 0.75rem;
}

.property-modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.property-modal-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 18px;
}

.property-modal-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 24px;
}

.property-modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.property-modal-feature {
    text-align: center;
    padding: 14px 8px;
    background: var(--cream);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.property-modal-feature i {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 6px;
}

.property-modal-feature span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--navy);
}

.property-modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.property-modal-price span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--gray);
    margin-left: 6px;
}

.property-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.property-modal-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.property-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
    border-radius: 50%;
}

.property-modal-close:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: rotate(90deg);
}

/* ===== 15. CTA ROTATING TEXT ===== */
.cta-rotating-wrapper {
    height: 1.3em;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    min-width: 200px;
}

.cta-rotating-text {
    display: block;
    color: var(--gold);
    font-style: italic;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* ===== 16. SERVICE CARD TILT ===== */
.service-card {
    transform-style: preserve-3d;
}

/* ===== 17. REVEAL DIRECTION ===== */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .testimonials-controls { margin-top: 24px; }
    .mouse-glow { display: none; }
    .property-modal-overlay { padding: 12px; }
    .property-modal {
        grid-template-columns: 1fr;
        max-height: 94vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .property-modal-img { min-height: 220px; max-height: 250px; }
    .property-modal-content { padding: 28px 24px; }
    .property-modal-name { font-size: 1.4rem; }
    .property-modal-desc { font-size: 0.98rem; }
    .property-modal-features { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .property-modal-feature { padding: 10px 6px; }
    .property-modal-price { font-size: 1.3rem; }
    .property-modal-close { top: 10px; right: 10px; width: 34px; height: 34px; }
    .property-modal-cta { width: 100%; justify-content: center; padding: 14px 24px; }
    .cta-rotating-wrapper { min-width: 150px; }
}

@media (max-width: 480px) {
    .property-modal-overlay { padding: 8px; }
    .property-modal { max-height: 96vh; }
    .property-modal-img { min-height: 180px; max-height: 210px; }
    .property-modal-content { padding: 22px 18px; }
    .property-modal-name { font-size: 1.2rem; margin-bottom: 12px; }
    .property-modal-desc { font-size: 0.92rem; margin-bottom: 18px; line-height: 1.6; }
    .property-modal-features { gap: 6px; }
    .property-modal-feature { padding: 8px 4px; }
    .property-modal-feature i { font-size: 0.85rem; margin-bottom: 4px; }
    .property-modal-feature span { font-size: 0.65rem; }
    .property-modal-price { font-size: 1.15rem; margin-bottom: 16px; }
    .property-modal-cta { font-size: 0.68rem; padding: 12px 20px; }
    .property-modal-badge { font-size: 0.58rem; padding: 5px 12px; top: 14px; left: 14px; }
    .property-modal-location { font-size: 0.62rem; }
}

@media (max-width: 360px) {
    .property-modal-overlay { padding: 4px; }
    .property-modal-img { min-height: 160px; max-height: 180px; }
    .property-modal-content { padding: 18px 14px; }
    .property-modal-name { font-size: 1.1rem; }
    .property-modal-desc { font-size: 0.85rem; margin-bottom: 14px; }
    .property-modal-features { grid-template-columns: repeat(3, 1fr); gap: 4px; }
    .property-modal-feature span { font-size: 0.6rem; }
    .property-modal-price { font-size: 1.05rem; }
    .property-modal-cta { font-size: 0.62rem; padding: 11px 16px; }
}

/* ===== BUYING JOURNEY TIMELINE (placeholder — quiz section removed) ===== */

/* Legacy quiz styles removed */
.quiz-cta-section {
    display: none;
}
.quiz-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.quiz-cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}
.quiz-cta-content .section-subtitle { color: var(--gray-light); margin: 0 auto 24px; }
.quiz-cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
}
.quiz-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.quiz-start-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.35);
}

/* Quiz Modal */
.quiz-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}
.quiz-modal-overlay.active { opacity: 1; visibility: visible; }

.quiz-modal {
    background: var(--white);
    max-width: 560px;
    width: 100%;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.quiz-modal-overlay.active .quiz-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.quiz-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light));
}
.quiz-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}
.quiz-close:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.quiz-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
}
.quiz-progress-step {
    flex: 1;
    height: 3px;
    background: var(--cream-dark);
    border-radius: 2px;
    transition: background 0.4s ease;
}
.quiz-progress-step.active { background: var(--gold); }
.quiz-progress-step.done { background: var(--gold-dark); }

.quiz-step {
    display: none;
    animation: quizFadeIn 0.4s ease;
}
.quiz-step.active { display: block; }
@keyframes quizFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.quiz-step-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.quiz-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 20px;
}
.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.quiz-option {
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.quiz-option i {
    font-size: 1.2rem;
    color: var(--gold);
}
.quiz-option:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}
.quiz-option.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}
.quiz-option.selected i { color: var(--white); }

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}
.quiz-nav-btn {
    padding: 10px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.quiz-nav-btn.prev {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--cream-dark);
}
.quiz-nav-btn.prev:hover { border-color: var(--gold); color: var(--gold); }
.quiz-nav-btn.next {
    background: var(--gold);
    color: var(--white);
}
.quiz-nav-btn.next:hover { background: var(--gold-dark); }
.quiz-nav-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Quiz Result */
.quiz-result {
    text-align: center;
}
.quiz-result-icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
}
.quiz-result h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.quiz-result p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}
.quiz-result-zone {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 28px;
    margin-bottom: 16px;
}
.quiz-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.quiz-result-cta:hover { background: var(--navy-light); }

/* ===== BUYING JOURNEY TIMELINE ===== */
.journey-section {
    padding: 40px 0 30px;
    background: var(--cream);
    justify-content: center;
}
.journey-header {
    text-align: center;
    margin-bottom: 36px;
}
.journey-header .section-label { justify-content: center; }
.journey-header .section-label::before { display: none; }
.journey-header .section-subtitle { margin: 0 auto; }

.journey-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
}
.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 130px;
}
.journey-step-icon {
    width: 54px;
    height: 54px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.journey-step:hover .journey-step-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}
.journey-step-num {
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.journey-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}
.journey-step p {
    font-size: 0.65rem;
    color: var(--gray);
    line-height: 1.5;
}
.journey-step-days {
    margin-top: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-dark);
    background: rgba(201, 169, 110, 0.1);
    padding: 3px 10px;
    border-radius: 10px;
}

/* Timeline responsive */
@media (max-width: 768px) {
    .journey-timeline {
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: flex-start;
    }
    .journey-timeline::before {
        top: 0; bottom: 0;
        left: 31px; right: auto;
        width: 2px; height: auto;
    }
    .journey-step {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
        gap: 16px;
        padding: 12px 0;
    }
    .journey-step-icon {
        width: 48px; height: 48px;
        min-width: 48px;
        font-size: 1rem;
        margin-bottom: 0;
    }
    .journey-step h4 { font-size: 0.82rem; }

}
@media (max-width: 480px) {
    .journey-step-icon { width: 40px; height: 40px; min-width: 40px; font-size: 0.85rem; }
    .journey-step h4 { font-size: 0.78rem; }
    .journey-step p { font-size: 0.6rem; }
}

/* ================================================================
   PREMIUM DEVELOPER SHOWCASE ENHANCEMENTS
   High-impact visual upgrades for a stunning portfolio presentation
   ================================================================ */

/* --- Noise texture overlay removed (was causing z-index issues with floating elements) --- */

/* --- Premium Hero Headline Upgrades --- */
.hero h1 {
    text-shadow: 0 2px 30px rgba(201, 169, 110, 0.15), 0 0 60px rgba(255, 255, 255, 0.05);
}

.hero h1 em {
    color: var(--gold-light);
    text-shadow: 0 0 40px rgba(201, 169, 110, 0.3), 0 0 80px rgba(201, 169, 110, 0.1);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: premiumUnderlineGlow 3s ease infinite;
}

@keyframes premiumUnderlineGlow {
    0%, 100% { opacity: 0.4; transform: scaleX(0.6); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* --- Premium Button Enhancements --- */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5), 0 0 40px rgba(201, 169, 110, 0.15), inset 0 1px 0 rgba(255,255,255,0.2);
    letter-spacing: 1px;
}

.btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--gold);
    transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-outline:hover::after {
    height: 100%;
}

.btn-outline:hover {
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

/* --- Premium Card Hover Depth --- */
.why-card,
.service-card,
.property-card,
.locality-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(201, 169, 110, 0.06);
}

.why-card:hover,
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(201, 169, 110, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 110, 0.2);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.25);
}

/* --- Premium Property Card Image Effects --- */
.property-card .property-image img {
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 0.8s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.12);
    filter: brightness(1.05) contrast(1.05);
}

.property-card .property-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.85) 100%);
    transition: opacity 0.6s ease;
}

.property-card:hover .property-image::after {
    opacity: 0.7;
}

/* --- Premium Section Title Reveals --- */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title:hover::after,
.reveal.revealed .section-title::after {
    width: 120px;
}

/* --- Premium Stat Number Counter Effect --- */
.hero-stat-num,
.why-card-stat {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* --- Premium Glassmorphism Enhancement --- */
.navbar.scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 22, 40, 0.82);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

/* --- Premium Service Card Icon Glow --- */
.service-card-icon {
    position: relative;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-5deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-card-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: premiumIconGlow 2s ease infinite;
}

@keyframes premiumIconGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* --- Premium Testimonial Card Depth --- */
.testimonial-card {
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-card:hover,
.testimonial-card.active {
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(201, 169, 110, 0.06);
}

/* --- Premium Contact Form Floating Labels --- */
.contact-input:focus,
.contact-input:not(:placeholder-shown) {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1), 0 4px 12px rgba(0,0,0,0.08);
}

.contact-input:focus ~ label,
.contact-select:focus {
    color: var(--gold);
}

/* --- Premium Scroll Indicator Pulse --- */
.hero-scroll {
    animation: premiumScrollBounce 2.5s ease-in-out infinite;
}

@keyframes premiumScrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* --- Premium Footer CTA Glow --- */
.footer-cta {
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: premiumCtaGlow 6s ease infinite;
}

@keyframes premiumCtaGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* --- Premium Marquee Enhancement --- */
.partners-marquee-inline {
    position: relative;
}

.partners-marquee-inline::before,
.partners-marquee-inline::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-inline::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}

.partners-marquee-inline::after {
    right: 0;
    background: linear-gradient(270deg, var(--navy) 0%, transparent 100%);
}

/* --- Premium WhatsApp Button Glow --- */
.whatsapp-float {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 60px rgba(37, 211, 102, 0.2);
}

/* --- Premium Back-to-Top Button --- */
.back-to-top {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    border-color: var(--gold);
}

/* --- Premium Dot Navigation Glow --- */
.dot-nav a.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.3) 0%, transparent 70%);
    animation: premiumDotGlow 2s ease infinite;
}

@keyframes premiumDotGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

/* --- Premium Modal Backdrop --- */
.property-modal-overlay,
.social-modal-overlay {
    backdrop-filter: blur(8px) saturate(120%);
}

/* --- Premium Loading States --- */
.loader {
    background: radial-gradient(ellipse at center, var(--navy-light) 0%, var(--dark) 70%);
}

/* --- Premium Focus States for Accessibility --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --- Premium Smooth Selection --- */
::selection {
    background: var(--gold);
    color: var(--navy);
    text-shadow: none;
}

/* --- Premium Image Reveal on Scroll --- */
.reveal img {
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease;
}

.reveal.revealed img {
    transform: scale(1);
    opacity: 1;
}

/* --- Premium EMI Calculator Enhancement --- */
.emi-result {
    position: relative;
    overflow: hidden;
}

.emi-result::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 169, 110, 0.05), transparent);
    animation: premiumEmiSpin 8s linear infinite;
}

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

/* --- Premium About Section Founders Strip --- */
.founders-strip {
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* --- Premium Interiors Architect Card --- */
.architect-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.architect-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(201, 169, 110, 0.08);
}

/* --- Premium Journey Timeline Enhancement --- */
.journey-step:hover .journey-step-icon {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(201, 169, 110, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Premium Smooth Page Entrance --- */
@keyframes premiumPageReveal {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

body.loaded .card-stack-wrapper {
    animation: premiumPageReveal 0.8s ease-out forwards;
}

/* --- Premium Nav Link Hover Underline --- */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

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


/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    background-size: 300% 100%;
    animation: progressShimmer 3s ease infinite;
    z-index: 100000;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.5), 0 0 30px rgba(201, 169, 110, 0.2);
    transition: width 0.1s linear;
}

/* --- Typing Effect --- */
.typed-word {
    color: var(--gold-light);
    font-weight: 600;
    border-right: 2px solid var(--gold);
    padding-right: 2px;
    animation: typeCursorBlink 0.8s ease infinite;
}

@keyframes typeCursorBlink {
    0%, 100% { border-color: var(--gold); }
    50% { border-color: transparent; }
}

/* --- 3D Property Card Tilt --- */
.property-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.property-card .property-info {
    transform: translateZ(20px);
}

.property-card .property-badge {
    transform: translateZ(30px);
}

/* --- Mouse Glow on Sections --- */
.why-choose,
.services,
.about {
    position: relative;
}

.why-choose::after,
.services::after,
.about::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    left: var(--glow-x, 50%);
    top: var(--glow-y, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose:hover::after,
.services:hover::after,
.about:hover::after {
    opacity: 1;
}

/* --- Hero Parallax Depth --- */
.hero-bg {
    will-change: transform;
    transform: scale(1.1);
}

.hero-content {
    will-change: transform, opacity;
}

/* --- Theme Toggle Button --- */
.theme-toggle {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}

/* --- Light Mode Theme --- */
body.light-mode {
    --navy: #F5F0E8;
    --navy-light: #EDE6DA;
    --charcoal: #2A2A3E;
    --dark: #FAF6F0;
    --cream: #FFFFFF;
    --cream-dark: #F0EBE3;
    --gray-light: #6E6E7A;
    --gray: #4A4A5A;
}

body.light-mode .navbar {
    background: rgba(245, 240, 232, 0.9);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

body.light-mode .navbar.scrolled {
    background: rgba(245, 240, 232, 0.95);
}

body.light-mode .nav-links a,
body.light-mode .nav-logo-text span {
    color: var(--charcoal);
}

body.light-mode .hero-content h1,
body.light-mode .hero-desc,
body.light-mode .hero-stat-label {
    color: var(--charcoal);
}

body.light-mode .hero h1 {
    text-shadow: 0 2px 20px rgba(201, 169, 110, 0.1);
}

body.light-mode .section-title {
    color: var(--charcoal);
}

body.light-mode .why-card,
body.light-mode .service-card,
body.light-mode .locality-card {
    background: var(--cream);
    border-color: rgba(201, 169, 110, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.light-mode .why-card h3,
body.light-mode .service-card h3 {
    color: var(--charcoal);
}

body.light-mode .property-card {
    background: var(--cream);
}

body.light-mode .contact-input,
body.light-mode .contact-select {
    background: var(--cream);
    color: var(--charcoal);
    border-color: rgba(42, 42, 62, 0.15);
}

body.light-mode .footer {
    background: #1A1A2E;
}

body.light-mode .footer * {
    color: var(--white);
}

body.light-mode * {
    transition: background-color 0.5s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* --- Floating Gold Particles Canvas --- */
.gold-particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99997;
}

/* --- Cinematic Scroll Reveal --- */
.scroll-reveal-target {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-reveal-target.scroll-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Alternate left/right reveals for about section */
.about-visual.scroll-reveal-target {
    transform: translateX(-60px);
}
.about-visual.scroll-revealed {
    transform: translateX(0);
}

.about-content.scroll-reveal-target {
    transform: translateX(60px);
}
.about-content.scroll-revealed {
    transform: translateX(0);
}

.interiors-content.scroll-reveal-target {
    transform: translateX(-60px);
}
.interiors-content.scroll-revealed {
    transform: translateX(0);
}

.interiors-visual.scroll-reveal-target {
    transform: translateX(60px);
}
.interiors-visual.scroll-revealed {
    transform: translateX(0);
}

.contact-info.scroll-reveal-target {
    transform: translateX(-40px);
}
.contact-info.scroll-revealed {
    transform: translateX(0);
}

.contact-form-wrap.scroll-reveal-target {
    transform: translateX(40px);
}
.contact-form-wrap.scroll-revealed {
    transform: translateX(0);
}

/* --- Sticky Mobile CTA Bar --- */
.sticky-cta-bar {
    position: fixed;
    bottom: -70px;
    left: 0; right: 0;
    z-index: 9999;
    display: flex;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 8px 12px;
    transition: bottom 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(16px);
}

.sticky-cta-bar.visible { bottom: 0; }
.sticky-cta-bar.hidden { bottom: -70px; }

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sticky-cta-call {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.sticky-cta-visit {
    background: var(--gold);
    color: var(--navy);
    margin: 0 6px;
}

.sticky-cta-wa {
    background: #25D366;
    color: white;
    flex: 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* --- Press Trust Bar --- */
.press-trust-bar {
    padding: 30px 0;
    background: var(--navy);
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    text-align: center;
}

.press-trust-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.press-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.press-logo {
    opacity: 0.35;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    cursor: default;
}

.press-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 1px;
}

.press-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.press-logo:hover span {
    color: var(--gold);
}

/* --- Chatbot Widget --- */
.chatbot-trigger {
    position: fixed;
    bottom: 96px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chatbot-trigger:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(201, 169, 110, 0.5); }
.chatbot-trigger.pulse { animation: chatPulse 2s ease infinite; }
@keyframes chatPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(201,169,110,0.4); } 50% { box-shadow: 0 4px 30px rgba(201,169,110,0.7), 0 0 40px rgba(201,169,110,0.2); } }

.chatbot-badge {
    position: absolute;
    top: -2px; right: -2px;
    width: 18px; height: 18px;
    background: #ff4757;
    border-radius: 50%;
    font-size: 0.6rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chatbot-widget {
    position: fixed;
    bottom: 166px;
    left: 24px;
    width: 360px;
    max-height: 480px;
    background: var(--navy-light);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 169, 110, 0.15);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.chatbot-widget.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--navy);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.chatbot-header-info { display: flex; align-items: center; gap: 10px; }

.chatbot-avatar {
    width: 36px; height: 36px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem;
}

.chatbot-name { color: var(--white); font-weight: 600; font-size: 0.85rem; }
.chatbot-status { color: var(--gray-light); font-size: 0.7rem; display: flex; align-items: center; gap: 4px; }
.chatbot-status span { width: 6px; height: 6px; background: #2ecc71; border-radius: 50%; }

.chatbot-close {
    background: none; border: none; color: var(--gray-light); cursor: pointer;
    font-size: 1rem; padding: 4px; transition: color 0.3s;
}
.chatbot-close:hover { color: var(--gold); }

.chatbot-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-msg p {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 85%;
}

.chatbot-msg.bot p {
    background: rgba(201, 169, 110, 0.1);
    color: var(--cream);
    border-bottom-left-radius: 4px;
}

.chatbot-msg.user p {
    background: var(--gold);
    color: var(--navy);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chatbot-options {
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.chatbot-opt {
    padding: 8px 14px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-opt:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* --- Property Wishlist Hearts --- */
.property-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.property-heart:hover { background: rgba(0, 0, 0, 0.7); transform: scale(1.15); }
.property-heart.liked { color: #ff4757; background: rgba(255, 71, 87, 0.15); }
.property-heart.liked i { animation: heartPop 0.3s ease; }
@keyframes heartPop { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }

/* --- Premium Responsive Enhancements --- */
@media (max-width: 768px) {
    .hero h1 {
        background-size: 200% 200%;
    }


    .btn-primary:hover,
    .btn-outline:hover {
        transform: translateY(-2px);
    }

    .scroll-progress {
        height: 2px;
    }

    .gold-particles-canvas {
        display: none;
    }

    .trail-dot {
        display: none !important;
    }

    .theme-toggle {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .scroll-reveal-target {
        transform: translateY(25px) !important;
    }

    .scroll-revealed {
        transform: translateY(0) !important;
    }

    .why-choose::after,
    .services::after,
    .about::after {
        display: none;
    }

    .sticky-cta-bar { display: flex; }
    .whatsapp-float { bottom: 78px; right: 16px; }
    .chatbot-trigger { bottom: 140px; left: 16px; right: auto; width: 48px; height: 48px; font-size: 1.1rem; }
    .chatbot-widget { bottom: 200px; left: 12px; right: 12px; width: auto; max-height: 340px; }
    .press-trust-logos { gap: 20px; }
    .press-logo span { font-size: 0.8rem; }
}

@media (min-width: 769px) {
    .sticky-cta-bar { display: none !important; }
}
