/* ==========================================================================
   SkyMarx Horizon One - Custom Luxury Design System
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --bg-primary: #080C14;
    --bg-secondary: #0D1422;
    --bg-card: rgba(20, 29, 47, 0.55);
    --bg-glass: rgba(8, 12, 20, 0.75);
    
    --gold-primary: #C5A880;
    --gold-secondary: #E5C595;
    --gold-gradient: linear-gradient(135deg, #C5A880 0%, #E5C595 100%);
    --gold-glow: rgba(197, 168, 128, 0.35);
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    --border-glass: rgba(197, 168, 128, 0.12);
    --border-glass-active: rgba(197, 168, 128, 0.4);
    --border-white-glass: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --shadow-luxury: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    --shadow-gold-glow: 0 0 25px rgba(197, 168, 128, 0.15);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

button, input, select, textarea {
    font-family: var(--font-body);
    outline: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

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

.text-gold {
    color: var(--gold-primary);
}

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

/* Scrollbar Layout */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: var(--radius-sm);
}

/* Global Grid Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ==========================================================================
   Buttons Component
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-icon {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0A0F1A;
    box-shadow: 0 10px 20px -10px var(--gold-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px var(--gold-primary), var(--shadow-gold-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    background: rgba(197, 168, 128, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-wide {
    min-width: 220px;
}

/* ==========================================================================
   Frosted Sticky Header Navigation
   ========================================================================== */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.navbar-header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-white-glass);
    padding: 14px 0;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.scrolled .brand-logo-img {
    height: 34px;
}

.brand-text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text-white {
    color: var(--text-primary);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.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: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1010;
}

.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 40%, rgba(8, 12, 20, 0.65) 0%, rgba(8, 12, 20, 0.98) 85%);
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 24px;
}

.rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid var(--border-glass);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 64px;
}

.hero-cta-group .btn-secondary svg {
    margin-right: 8px;
}

.hero-cta-group .btn-secondary:hover svg {
    transform: translateY(2px);
}

/* Quick Info Bar Component */
.quick-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    padding: 24px;
    box-shadow: var(--shadow-luxury);
    text-align: left;
}

.quick-info-bar .info-item {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}

.quick-info-bar .info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.quick-info-bar .info-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.quick-info-bar .divider {
    width: 1px;
    background: var(--border-glass);
    height: 100%;
}

/* ==========================================================================
   Section Header Utility
   ========================================================================== */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
}

/* ==========================================================================
   Growth Hub Section Layout
   ========================================================================== */
.growth-section {
    background-color: var(--bg-secondary);
}

.growth-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.growth-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.growth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.growth-card:hover {
    transform: translateX(10px);
    border-color: var(--gold-primary);
    background: rgba(20, 29, 47, 0.8);
    box-shadow: var(--shadow-luxury);
}

.card-icon-wrapper {
    background: rgba(197, 168, 128, 0.1);
    color: var(--gold-primary);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.growth-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.growth-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Premium Showcase Card */
.growth-showcase {
    background: radial-gradient(circle at 0% 0%, rgba(20, 29, 47, 0.95) 0%, rgba(8, 12, 20, 0.98) 100%);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxury), var(--shadow-gold-glow);
}

.growth-showcase::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.growth-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: #0A0F1A;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.showcase-title {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.showcase-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 36px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.stat-box {
    border-left: 2px solid var(--gold-primary);
    padding-left: 16px;
}

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

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-top: 6px;
    text-transform: uppercase;
}

.growth-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-secondary);
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    margin-top: 24px;
}

/* ==========================================================================
   Clubhouse Highlight Section
   ========================================================================== */
.clubhouse-highlight {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    margin-bottom: 60px;
}

.clubhouse-image-wrapper {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.clubhouse-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.clubhouse-highlight:hover .clubhouse-img {
    transform: scale(1.05);
}

.image-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 50%, var(--bg-secondary) 100%);
}

.clubhouse-content {
    padding: 48px;
}

.clubhouse-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

.clubhouse-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

.clubhouse-highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clubhouse-highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.icon-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Tabbed Layout Component */
.amenity-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.amenity-tab-headers {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
}

.tab-header {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 24px;
    position: relative;
    transition: var(--transition-fast);
}

.tab-header:hover {
    color: var(--text-primary);
}

.tab-header.active {
    color: var(--gold-secondary);
}

.tab-header::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

.tab-header.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-pane.active {
    display: block;
}

.amenities-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-white-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-luxury);
    background: var(--bg-card);
}

.amenity-img-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    overflow: hidden;
}

.amenity-card-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-white-glass);
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-card-img {
    transform: scale(1.08);
    border-color: var(--gold-primary);
}

.amenity-card-content {
    padding: 24px;
    position: relative;
    text-align: left;
}

.amenity-icon {
    font-size: 1.6rem;
    position: absolute;
    top: -24px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass-active);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    background: var(--bg-card);
    transform: scale(1.05);
}

.amenity-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
}

.amenity-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==========================================================================
   Plot Sizing Calculator Section Layout
   ========================================================================== */
.calculator-section {
    background-color: var(--bg-secondary);
}

.calculator-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

/* Calc Selector Sidebar */
.calc-selector {
    background: rgba(8, 12, 20, 0.4);
    padding: 48px 36px;
    border-right: 1px solid var(--border-glass);
}

.calc-selector h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.calc-helper {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.plot-options-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plot-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-white-glass);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
}

.plot-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(197, 168, 128, 0.05);
}

.plot-btn.active {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #0A0F1A;
    box-shadow: 0 10px 20px -10px var(--gold-primary);
}

.plot-size-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.plot-size-unit {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: -4px;
}

.plot-label-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: right;
    justify-self: end;
}

/* Calc Display main panel */
.calc-display {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
}

.display-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.display-header h3 {
    font-size: 1.8rem;
}

.plot-badge-tag {
    background: rgba(197, 168, 128, 0.1);
    color: var(--gold-secondary);
    border: 1px solid var(--border-glass);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

.plot-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 30px;
}

/* Blueprint CSS Visualizer Layout */
.plot-blueprint {
    aspect-ratio: 1;
    border: 1px dashed var(--gold-primary);
    background: rgba(197, 168, 128, 0.03);
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blueprint-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.blueprint-grid-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/plot.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px);
    opacity: 0.35;
    transform: scale(1.15);
    z-index: 1;
}

.blueprint-grid-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(197, 168, 128, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 168, 128, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 2;
}

.blueprint-label {
    position: relative;
    z-index: 5;
    background: rgba(8, 12, 20, 0.65);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.blueprint-dimensions {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-secondary);
    z-index: 2;
    background: var(--bg-secondary);
    padding: 2px 8px;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
}

.blueprint-dimensions.top {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.blueprint-dimensions.right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.blueprint-inner {
    z-index: 2;
    text-align: center;
}

.blueprint-inner span {
    display: block;
}

#bp-label-sqyd {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.blueprint-label-sub {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 4px;
}

/* Specs details list */
.plot-specs-details h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 8px;
    font-size: 0.95rem;
}

.spec-label {
    color: var(--text-secondary);
}

.spec-value {
    font-weight: 600;
    color: var(--text-primary);
}

.plot-benefits-footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.benefit-tag span {
    font-size: 1rem;
}

/* ==========================================================================
   Location Advantages Layout
   ========================================================================== */
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-info-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.advantage-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.advantage-bullet {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 168, 128, 0.05);
}

.advantage-desc h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.advantage-desc p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Scenic visuals column */
.location-visual-column {
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.park-visual-wrapper {
    position: relative;
}

.park-visual-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.park-caption {
    padding: 32px;
}

.park-caption h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.park-caption p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Inquiry Card Section Layout
   ========================================================================== */
.inquiry-section {
    background-color: var(--bg-secondary);
}

.inquiry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.inquiry-card-glow {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.inquiry-card .section-header {
    margin-bottom: 40px;
}

/* Forms components */
.contact-form {
    position: relative;
    z-index: 2;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(8, 12, 20, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    background: rgba(8, 12, 20, 0.8);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='20' height='20' fill='%23C5A880'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-submit-wrapper {
    margin-top: 36px;
}

/* ==========================================================================
   Footer Layout
   ========================================================================== */
.footer-wrapper {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-white-glass);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-column .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 20px;
}

.footer-brand-column .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-pitch {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 360px;
}

.rera-badge-footer {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-white-glass);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    width: fit-content;
}

.rera-badge-footer span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.rera-badge-footer strong {
    font-size: 0.9rem;
    color: var(--gold-secondary);
    margin-top: 4px;
}

.footer-links-column h4,
.footer-contact-column h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.address-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.contact-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--gold-secondary);
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--border-white-glass);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Lead Capture Modal Component
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 14, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 24px;
}

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

.modal-card {
    background: radial-gradient(circle at 0% 0%, #151F32 0%, #090E17 100%);
    border: 1px solid var(--border-glass-active);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxury), var(--shadow-gold-glow);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    line-height: 1;
}

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

.modal-glow-back {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.modal-body-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.modal-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.modal-body-content h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.modal-body-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-form-element {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-form-element input {
    background: rgba(8, 12, 20, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-primary);
    width: 100%;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.modal-form-element input:focus {
    border-color: var(--gold-primary);
    background: rgba(8, 12, 20, 0.8);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
}

.modal-secure-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Toast Notification Component
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: #0D1B2A;
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    color: var(--text-primary);
    box-shadow: var(--shadow-luxury), var(--shadow-gold-glow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 300px;
    animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.success {
    border-left: 5px solid #2ECC71;
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */

/* Zooming hero image */
@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}

/* Standard keyframe reveals */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal helper classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   Responsive Breakpoints / Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .quick-info-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-info-bar .divider {
        display: none;
    }
    
    .growth-grid, .clubhouse-highlight, .calculator-box, .location-layout {
        grid-template-columns: 1fr;
    }
    
    .clubhouse-image-wrapper {
        height: 320px;
    }
    
    .image-overlay-glow {
        background: linear-gradient(to bottom, transparent 40%, var(--bg-secondary) 100%);
    }
    
    .calc-selector {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }
    
    .plot-preview-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plot-blueprint {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        display: none; /* Handled dynamically in mobile mode */
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .quick-info-bar {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 16px;
    }
    
    .quick-info-bar .info-item {
        padding: 10px 0;
    }
    
    .amenities-card-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .calc-display {
        padding: 24px;
    }
    
    .inquiry-card {
        padding: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-column {
        grid-column: span 1;
    }
    
    /* Dynamic Mobile Navigation active mode styles */
    .navbar-header.mobile-active {
        background: var(--bg-primary);
        height: 100vh;
    }
    
    .navbar-header.mobile-active .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        gap: 24px;
        padding: 40px 24px;
        background: var(--bg-primary);
        border-top: 1px solid var(--border-white-glass);
    }
    
    .navbar-header.mobile-active .mobile-toggle .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-header.mobile-active .mobile-toggle .bar:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-header.mobile-active .mobile-toggle .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

@media (max-width: 480px) {
    .amenities-card-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-header {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Fixed Contact Action Buttons (Floating FAB)
   ========================================================================== */
.fixed-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1500;
}

.action-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    position: relative;
}

.call-fab {
    background: var(--gold-gradient);
    color: #0A0F1A;
}

.whatsapp-fab {
    background: #25D366;
    color: #FFFFFF;
}

.action-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.whatsapp-fab:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.call-fab:hover {
    box-shadow: 0 0 25px rgba(197, 168, 128, 0.6);
}

.action-btn .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(8, 12, 20, 0.92);
    border: 1px solid var(--border-glass-active);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    transform: translateX(10px);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-luxury);
}

.action-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .fixed-action-buttons {
        bottom: 24px;
        right: 24px;
        gap: 12px;
    }
    
    .action-btn {
        width: 50px;
        height: 50px;
    }
    
    .action-btn .tooltip {
        display: none; /* Hide tooltips on touch devices */
    }
}

/* Footer CTA Component */
.footer-cta {
    margin-bottom: 48px;
}

.footer-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.footer-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.footer-divider {
    height: 1px;
    background: var(--border-white-glass);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    #btn-footer-call {
        flex-direction: column;
        height: auto;
        padding: 14px 28px;
        text-align: center;
        line-height: 1.4;
    }
    
    #btn-footer-call .btn-icon {
        margin-right: 0;
        margin-bottom: 6px;
    }
    
    #btn-footer-call .tel-no {
        display: block;
        margin-top: 4px;
        font-weight: 700;
    }
}
