/* ==========================================================================
   PARAS ESTATE - Luxury Residential Plotted Township
   Premium White Theme Design System
   ========================================================================== */

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

:root {
    /* Color Palette - Premium White Luxury */
    --bg-dark: #f8fafc;
    --bg-dark-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.92);
    --bg-glass-light: rgba(15, 23, 42, 0.03);

    --primary-gold: #b8860b;
    --primary-gold-hover: #966b04;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 60%, #996515 100%);
    --gold-glow: rgba(184, 134, 11, 0.2);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-gold: #996515;

    --accent-green: #059669;
    --accent-emerald: #047857;
    --border-color: rgba(184, 134, 11, 0.28);
    --border-glass: rgba(15, 23, 42, 0.08);

    /* Fonts - Ultra Luxury Real Estate Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Spacing & Transitions */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-gold: 0 8px 30px rgba(184, 134, 11, 0.18);
}

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

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

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

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Gradient Text */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Header */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid var(--border-color);
    color: var(--primary-gold);
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.35);
    color: #ffffff;
}

.btn-outline {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.glass-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-symbol {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    line-height: 1;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--primary-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--border-color);
    z-index: 1001;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Hero Section - Compact Video Background & Split Layout
   ========================================================================== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 3rem 0;
    overflow: hidden;
    background: #0f172a;
}

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

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.15);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.62) 50%, rgba(15, 23, 42, 0.92) 100%),
        radial-gradient(ellipse at center, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.85) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 3;
}

.hero-badge {
    margin-bottom: 0.75rem;
}

.hero-badge .section-tag {
    background: rgba(184, 134, 11, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    color: #f1c40f;
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.9rem;
    font-size: 0.775rem;
}

.hero-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
    color: #ffffff;
    font-weight: 800;
}

.hero-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(184, 134, 11, 0.4));
}

.hero-description {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 620px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.hero-actions .btn-outline:hover {
    background: rgba(184, 134, 11, 0.25);
    border-color: var(--primary-gold);
    color: #ffffff;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 134, 11, 0.35);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

/* Hero Right Side Form Styling - Compact */
.hero-right {
    position: relative;
    z-index: 3;
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), var(--shadow-gold);
    transition: var(--transition-smooth);
    max-width: 440px;
    margin-left: auto;
    overflow: hidden;
}

.hero-form-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(184, 134, 11, 0.3);
}

.hero-form-header {
    margin-bottom: 0.85rem;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-gold);
    font-size: 0.675rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.hero-form-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
}

.hero-form .form-group {
    margin-bottom: 0.65rem;
}

.hero-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.hero-form .form-label i {
    color: var(--primary-gold);
}

.hero-form .form-input {
    width: 100%;
    padding: 0.55rem 0.8rem;
    font-size: 0.875rem;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-primary);
    transition: var(--transition-fast);
    font-family: inherit;
}

.hero-form .form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18);
}

.btn-block {
    width: 100%;
}

.hero-submit-btn {
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    margin-top: 0.35rem;
    border-radius: var(--radius-sm);
}

.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.45rem 0;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(15, 23, 42, 0.14);
}

.form-divider::before {
    margin-right: 0.5rem;
}

.form-divider::after {
    margin-left: 0.5rem;
}

.hero-whatsapp-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    margin-top: 0;
    border-radius: var(--radius-sm);
}

.form-privacy {
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

.form-privacy i {
    color: var(--accent-emerald);
}

/* ==========================================================================
   Overview Section - Balanced Equal Height Layout
   ========================================================================== */
.overview {
    padding: 5.5rem 0;
    position: relative;
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.overview-visual {
    position: relative;
}

.overview-img-container {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    background: #f8fafc;
}

.overview-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.overview-img-container:hover img {
    transform: scale(1.02);
}

.overview-floating-card {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--primary-gold);
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
}

.floating-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(184, 134, 11, 0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.overview-content {
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overview-lead-text {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
}

.overview-minimal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.8rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.minimal-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.2rem 0;
}

.minimal-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.minimal-feature-item:hover .minimal-feature-icon {
    background: var(--gold-gradient);
    color: #ffffff;
    transform: scale(1.08);
}

.minimal-feature-title {
    font-weight: 700;
    font-size: 0.925rem;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.minimal-feature-desc {
    font-size: 0.775rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* ==========================================================================
   Interactive Plot Explorer - Compact & Premium 3-Column Layout
   ========================================================================== */
.plot-explorer {
    padding: 3.5rem 0;
    background: radial-gradient(ellipse at top, rgba(184, 134, 11, 0.06) 0%, #f8fafc 70%);
}

.plot-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
}

.filter-btn {
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.825rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-gradient);
    color: #ffffff;
    border-color: var(--primary-gold);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.plot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.plot-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.plot-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.16);
}

.plot-badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--primary-gold);
    padding: 0.15rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.675rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plot-card-header {
    margin-bottom: 0.65rem;
    padding-right: 4.5rem;
}

.plot-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.plot-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.plot-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.8rem;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    margin-bottom: 0.9rem;
}

.spec-block {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.675rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.spec-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.1rem;
}

.plot-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.price-label {
    font-size: 0.675rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
}

/* ==========================================================================
   Amenities Section - Premium Image Hover Effects & 2-Line Text
   ========================================================================== */
.amenities {
    padding: 5.5rem 0;
    position: relative;
    background: #ffffff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.amenity-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.amenity-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 18px 40px rgba(184, 134, 11, 0.18);
}

.amenity-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.amenity-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.amenity-card:hover .amenity-card-img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

.amenity-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.amenity-card-body {
    padding: 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.amenity-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.amenity-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.amenity-tags {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.775rem;
    font-weight: 600;
    margin-top: auto;
}

/* ==========================================================================
   Mid-Page WhatsApp Instant Consultation CTA Banner
   ========================================================================== */
.whatsapp-cta-section {
    padding: 3rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.whatsapp-cta-card {
    background: linear-gradient(135deg, #042f2e 0%, #0f172a 60%, #064e3b 100%);
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 28px;
    padding: 2.2rem 2.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(4, 47, 46, 0.35), 0 0 30px rgba(37, 211, 102, 0.15);
    position: relative;
    overflow: hidden;
    gap: 2rem;
}

.whatsapp-cta-left {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    max-width: 620px;
    flex-grow: 1;
}

.whatsapp-icon-pulse {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-cta-tag {
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.whatsapp-cta-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.whatsapp-cta-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.whatsapp-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    justify-content: flex-end;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .whatsapp-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .whatsapp-cta-actions {
        width: 100%;
    }

    .whatsapp-cta-actions .btn {
        flex: 1;
        justify-content: center;
    }
}

/* ==========================================================================
   Location & Strategic Matrix
   ========================================================================== */
.location {
    padding: 7rem 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.connectivity-matrix {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.matrix-item {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.matrix-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(4px);
}

.matrix-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.matrix-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(184, 134, 11, 0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.matrix-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.matrix-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.matrix-time {
    padding: 0.35rem 0.9rem;
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.location-premium-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(184, 134, 11, 0.35);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(184, 134, 11, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.location-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.location-header-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.gold-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.location-live-badge {
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: var(--primary-gold);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.725rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulseGlow 1.8s infinite;
}

.radar-visual-container {
    position: relative;
    width: 100%;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.radar-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(184, 134, 11, 0.25);
    pointer-events: none;
}

.circle-1 {
    width: 130px;
    height: 130px;
    border-style: solid;
    border-color: rgba(184, 134, 11, 0.35);
}

.circle-2 {
    width: 210px;
    height: 210px;
}

.circle-3 {
    width: 280px;
    height: 280px;
}

.radar-sweep {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(184, 134, 11, 0.2) 0deg, transparent 60deg, transparent 360deg);
    animation: rotateSweep 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateSweep {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.radar-center-pin {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.radar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.3);
    animation: radarPulse 2s ease-out infinite;
}

@keyframes radarPulse {
    0% {
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    100% {
        width: 85px;
        height: 85px;
        opacity: 0;
    }
}

.radar-pin-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.6);
    position: relative;
    z-index: 2;
}

.radar-pin-label {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid var(--primary-gold);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-sm);
    margin-top: 0.35rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.landmark-chip {
    position: absolute;
    z-index: 5;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 0.4rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.landmark-chip:hover {
    transform: scale(1.06);
    border-color: var(--primary-gold);
    background: rgba(30, 41, 59, 0.95);
}

.landmark-chip i {
    font-size: 1.05rem;
    color: var(--primary-gold);
}

.chip-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.chip-time {
    display: block;
    font-size: 0.65rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-top: 0.1rem;
}

.chip-top-left {
    top: 6%;
    left: 0%;
}

.chip-top-right {
    top: 6%;
    right: 0%;
}

.chip-bottom-left {
    bottom: 6%;
    left: 0%;
}

.chip-bottom-right {
    bottom: 6%;
    right: 0%;
}

.location-metrics-bar {
    z-index: 5;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.7rem 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
}

.metric-lbl {
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.15rem;
}

.metric-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.12);
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pin-label {
    background: #ffffff;
    border: 1px solid var(--primary-gold);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 0.8rem;
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}

/* ==========================================================================
   EMI & Investment ROI Calculator
   ========================================================================== */
.calculator {
    padding: 7rem 0;
    background: #ffffff;
}

.calc-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.input-display-val {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.custom-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

.calc-results-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.result-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.result-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.result-val.highlight {
    color: var(--primary-gold);
    font-size: 2.4rem;
}

.breakdown-bar {
    height: 12px;
    border-radius: var(--radius-full);
    background: #e2e8f0;
    overflow: hidden;
    display: flex;
}

.bar-principal {
    background: var(--gold-gradient);
    height: 100%;
    transition: var(--transition-smooth);
}

.bar-interest {
    background: var(--accent-emerald);
    height: 100%;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Multi-Category Gallery & Fullscreen Lightbox Carousel
   ========================================================================== */
.gallery {
    padding: 5.5rem 0;
    background: #f8fafc;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    background: #0f172a;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-tag {
    align-self: flex-start;
    background: rgba(184, 134, 11, 0.9);
    color: #ffffff;
    font-size: 0.675rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.gallery-caption {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.gallery-zoom-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Inline Gallery Carousel View Styles */
.gallery-carousel-wrapper {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(184, 134, 11, 0.35);
    border-radius: var(--radius-xl);
    padding: 1.8rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.4), 0 0 35px rgba(184, 134, 11, 0.12);
    margin-top: 1rem;
    animation: fadeInSlide 0.4s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-tag {
    background: var(--gold-gradient);
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.carousel-caption {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
}

.carousel-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.carousel-counter {
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.carousel-tool-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-tool-btn:hover {
    background: var(--primary-gold);
    color: #ffffff;
    border-color: transparent;
}

.carousel-stage-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 420px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.carousel-image-frame {
    flex-grow: 1;
    max-width: 82%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-active-img {
    max-width: 100%;
    max-height: 390px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--primary-gold);
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-nav-btn:hover {
    background: var(--gold-gradient);
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-thumb-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.4rem 0;
}

/* Lightbox Modal Overlay */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 15, 26, 0.96);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.lightbox-title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lightbox-category-tag {
    background: var(--gold-gradient);
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.lightbox-caption-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
}

.lightbox-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.lightbox-counter {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
}

.lightbox-tool-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.lightbox-tool-btn:hover {
    background: var(--primary-gold);
    color: #ffffff;
    transform: scale(1.08);
}

/* Lightbox Stage & Navigation Arrows */
.lightbox-body {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    overflow: hidden;
}

.lightbox-stage {
    max-width: 82vw;
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.lightbox-active-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.lightbox-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #ffffff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lightbox-nav-btn:hover {
    background: var(--gold-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
}

.nav-prev {
    margin-left: 1.5rem;
}

.nav-next {
    margin-right: 1.5rem;
}

/* Lightbox Thumbnail Strip Bar */
.lightbox-footer {
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.lightbox-thumbs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
}

.lightbox-thumb {
    width: 75px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

/* ==========================================================================
   Developer Legacy & Corporate Excellence Section
   ========================================================================== */
/* Minimalist Developer Legacy Section */
.legacy-section {
    padding: 3.5rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-glass);
}

.legacy-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.legacy-stat-card {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.legacy-stat-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.12);
}

.legacy-stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}

.legacy-stat-header i {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.legacy-stat-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.legacy-stat-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 992px) {
    .legacy-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .legacy-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section
   ========================================================================== */
.faq-section {
    padding: 5.5rem 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-glass);
}

.faq-accordion-wrapper {
    max-width: 860px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.12);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.3rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.8rem 1.4rem 1.8rem;
    display: none;
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.65;
    border-top: 1px dashed rgba(184, 134, 11, 0.2);
    padding-top: 1rem;
}

/* ==========================================================================
   Executive Site Tour & Consultation Section (After FAQ)
   ========================================================================== */
.contact-consult-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-glass);
}

.contact-consult-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.consult-left-col {
    width: 100%;
}

.consult-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.consult-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: #f8fafc;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    transition: var(--transition-fast);
}

.consult-info-item:hover {
    border-color: var(--primary-gold);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.consult-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.consult-info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.consult-info-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.consult-right-col {
    width: 100%;
}

/* Right Side Lead Form Card Styles */
.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.35);
    border-radius: 28px;
    padding: 2.2rem 2.4rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08), 0 0 25px rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.form-header {
    text-align: center;
    margin-bottom: 1.6rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}

.form-group-custom label {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1.1rem;
    color: var(--primary-gold);
    font-size: 1rem;
    pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-size: 0.925rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    border-color: var(--primary-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    margin: 1rem 0;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.or-divider span {
    padding: 0 0.75rem;
    letter-spacing: 0.05em;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .contact-consult-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   Modals & Toast Notifications
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #ffffff;
    border: 1px solid var(--primary-gold);
    border-radius: 28px;
    width: 100%;
    max-width: 520px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--primary-gold);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.form-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary-gold);
    background: #ffffff;
}

/* Toast Alert */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: #ffffff;
    border: 1px solid var(--primary-gold);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transform: translateX(120%);
    transition: transform 0.4s ease-out;
}

.toast.show {
    transform: translateX(0);
}

/* Floating Quick Action Widget */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.float-whatsapp {
    background: #25d366;
}

.float-call {
    background: var(--gold-gradient);
    color: #ffffff;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Footer Section - Deep Royal Navy Anchor
   ========================================================================== */
.footer {
    background: #0f172a;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-right {
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .overview-grid,
    .location-wrapper,
    .calc-box {
        grid-template-columns: 1fr;
    }

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

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calc-box {
        padding: 1.5rem;
    }
}