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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #f59e0b;
    --dark: #0f172a;
    --gray: #64748b;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1e293b; background: #f8faff; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.highlight { background: linear-gradient(135deg, #2563eb, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #0f172a, #1e1b4b, #2563eb);
    color: white; padding: 8px 0; font-size: 13px; font-weight: 600;
    position: sticky; top: 0; z-index: 101;
    border-bottom: 1px solid rgba(124,58,237,0.4);
}
.urgency-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.urgency-blink { animation: blink 1s infinite; font-size: 16px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.countdown { background: rgba(0,0,0,0.25); padding: 2px 10px; border-radius: 4px; font-family: monospace; font-size: 14px; letter-spacing: 2px; }
.urgency-btn { background: var(--accent); color: var(--dark); border: none; padding: 4px 14px; border-radius: 20px; font-weight: 700; font-size: 12px; cursor: pointer; transition: transform 0.2s; }
.urgency-btn:hover { transform: scale(1.05); }
.urgency-call { color: #fde68a; font-weight: 700; font-size: 12px; text-decoration: none; white-space: nowrap; }
.urgency-call:hover { text-decoration: underline; }

/* Breadcrumb */
.breadcrumb-bar {
    background: #f8faff; border-bottom: 1px solid #e2e8f0;
    padding: 8px 0; font-size: 12px;
}
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: #2563eb; text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #94a3b8; }
.bc-current { color: #0f172a; font-weight: 600; }

/* Page Meta */
.page-meta { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.page-meta strong { color: #0f172a; }

/* Highlights Grid */
.highlights-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0 20px;
}
.hl-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: #f8faff; border: 1px solid #e2e8f0;
    border-radius: 10px; padding: 12px 14px;
}
.hl-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.hl-item strong { display: block; font-size: 13px; color: #0f172a; margin-bottom: 2px; }
.hl-item p { font-size: 12px; color: var(--gray); margin: 0; line-height: 1.4; }

/* Media Quick Links */
.media-quicklinks { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.mql-btn {
    padding: 8px 16px; border: 1.5px solid #e2e8f0; border-radius: 20px;
    background: white; font-size: 13px; font-weight: 600; color: #0f172a;
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.mql-btn:hover { border-color: #2563eb; background: #eff6ff; color: #2563eb; }

/* Config Table */
.config-table-wrap { overflow-x: auto; margin: 16px 0; }
.config-table {
    width: 100%; border-collapse: collapse; background: white;
    border-radius: 10px; overflow: hidden;
    border: 1px solid #e2e8f0; font-size: 13px;
}
.config-table th {
    background: #f8faff; color: #475569; padding: 11px 14px;
    text-align: left; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}
.config-table td { padding: 13px 14px; border-bottom: 1px solid #f1f5f9; color: #334155; }
.config-table tr:last-child td { border-bottom: none; }
.config-table tr:hover td { background: #f8faff; }
.ctbl-price { color: #16a34a; font-weight: 800; font-size: 14px; }
.ctbl-btn {
    padding: 6px 16px; background: #2563eb; color: white;
    border: none; border-radius: 6px; font-size: 12px;
    font-weight: 700; cursor: pointer; white-space: nowrap;
    transition: background 0.2s;
}
.ctbl-btn:hover { background: #1d4ed8; }

.scarcity-bar {
    margin-top: 12px; padding: 10px 16px;
    background: #fff7ed; border: 1.5px solid #fed7aa;
    border-radius: 8px; font-size: 13px; color: #92400e;
    text-align: center;
}
.scarcity-bar a { color: #c2410c; font-weight: 700; text-decoration: none; }
.scarcity-bar a:hover { text-decoration: underline; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 16px 0; font-size: 14px; font-weight: 600; color: #0f172a;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
}
.faq-q:hover { color: var(--primary); }
.faq-arrow { font-size: 16px; color: var(--gray); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    display: none; padding: 0 0 16px; font-size: 13px;
    color: #475569; line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Explore Section */
.explore-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 8px; }
.explore-col h4 { font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.explore-col a {
    display: block; font-size: 13px; color: #2563eb;
    text-decoration: none; padding: 4px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s;
}
.explore-col a:hover { color: #1d4ed8; text-decoration: underline; }

/* Responsive additions */
@media (max-width: 768px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .explore-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .config-table th, .config-table td { padding: 10px; font-size: 12px; }
}
@media (max-width: 480px) {
    .explore-grid { grid-template-columns: 1fr; }
    .media-quicklinks { gap: 6px; }
    .mql-btn { font-size: 12px; padding: 7px 12px; }
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card {
    background: white; border-radius: var(--radius); padding: 20px;
    box-shadow: var(--shadow); border: 1.5px solid #e2e8f0;
    transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.testi-text { font-size: 13px; color: #475569; line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.testi-verified { margin-left: auto; font-size: 11px; color: #15803d; font-weight: 700; }
.testi-date { font-size: 11px; color: var(--gray); margin-top: 8px; }
.testi-avatar {
    width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 13px; color: #0f172a; }
.testi-author span { font-size: 11px; color: var(--gray); }

/* EMI Calculator */
.emi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 20px; }
.emi-field { margin-bottom: 16px; }
.emi-field label { display: block; font-size: 12px; font-weight: 600; color: #475569; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.emi-field input[type=range] { width: 100%; accent-color: #2563eb; cursor: pointer; }
.emi-val { display: inline-block; margin-top: 4px; font-size: 14px; font-weight: 700; background: linear-gradient(135deg,#2563eb,#7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.emi-result { display: flex; flex-direction: column; justify-content: center; }
.emi-result-box { background: linear-gradient(135deg,#2563eb,#7c3aed); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 16px; }
.emi-label { display: block; color: rgba(255,255,255,0.8); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.emi-amount { font-size: 32px; font-weight: 800; color: white; }
.emi-breakdown { margin-bottom: 16px; }
.emi-bd-item { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #e2e8f0; font-size: 13px; }
.emi-bd-item span:last-child { font-weight: 700; color: #2563eb; }

/* Bank Logos */
.bank-logos { text-align: center; margin-top: 8px; }
.bank-title { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-weight: 600; }
.bank-grid { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.bank-item { background: white; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 8px 18px; font-size: 13px; font-weight: 700; color: #0f172a; box-shadow: var(--shadow); }

/* Navbar */
.navbar {
    position: sticky; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    border-bottom: 2px solid #ede9fe; padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--dark); }
.logo-icon { font-size: 26px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.nav-links { display: flex; list-style: none; gap: 24px; }
.nav-links a { text-decoration: none; color: var(--gray); font-weight: 500; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.nav-active { color: var(--primary); font-weight: 600; }
.btn-nav {
    background: var(--primary); color: white; border: none; padding: 10px 20px;
    border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 13px; transition: background 0.2s;
}
.btn-nav:hover { background: var(--primary-dark); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.3s; }

/* Hero */
.hero {
    padding-top: 0; position: relative;
    background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(30,27,75,0.75) 40%, rgba(37,99,235,0.7) 100%), url('media/back.png') center/cover no-repeat;
    min-height: auto;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,160L60,170.7C120,181,240,203,360,192C480,181,600,139,720,128C840,117,960,139,1080,154.7C1200,171,1320,181,1380,186.7L1440,192L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 40px;
    padding: 48px 0 56px; position: relative;
}
.hero-content { color: white; }
.hero-badges { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.badge {
    padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.badge-new { background: var(--accent); color: var(--dark); }
.badge-rera { background: rgba(255,255,255,0.15); color: white; backdrop-filter: blur(4px); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 44px; line-height: 1.15; margin-bottom: 12px; }
.hero-location { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.hero-builder { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.hero-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.hero-hl {
    display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1);
    padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
    backdrop-filter: blur(4px);
}
.hero-hl span { font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
    background: var(--accent); color: var(--dark); border: none; padding: 14px 28px;
    border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.btn-outline {
    background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
    cursor: pointer; transition: border-color 0.2s;
}
.btn-outline:hover { border-color: white; }

/* Sticky Form */
.hero-form-wrap { position: relative; }
.sticky-form {
    background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg);
    position: sticky; top: 20px;
}
.sticky-form .form-header { margin-bottom: 20px; }
.sticky-form .form-header h3 { font-size: 18px; color: var(--dark); margin-bottom: 4px; }
.sticky-form .form-header p { font-size: 13px; color: var(--gray); }
.sticky-form input, .sticky-form select {
    width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; margin-bottom: 12px; font-family: inherit; transition: border-color 0.2s;
}
.sticky-form input:focus, .sticky-form select:focus { outline: none; border-color: var(--primary); }
.sticky-form .btn-submit {
    width: 100%; padding: 14px; background: var(--primary); color: white; border: none;
    border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: background 0.2s;
}
.sticky-form .btn-submit:hover { background: var(--primary-dark); }
.form-trust { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray); }

/* Quick Bar */
.quick-bar { background: linear-gradient(90deg, #0f172a, #1e1b4b, #1e3a5f); border-bottom: none; padding: 20px 0; }
.quick-bar-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.qb-item { text-align: center; }
.qb-label { display: block; font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.qb-value { font-size: 14px; font-weight: 700; color: #fff; }

/* Sections */
.section { padding: 40px 0; background: #ffffff; }
.section-dark { background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%) !important; }
.section-alt { background: #f8faff; }
.section-tag {
    display: inline-block; font-weight: 700; font-size: 11px;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    border-left: 3px solid #2563eb; padding-left: 8px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 8px; color: #0f172a; }
.section-sub { color: var(--gray); font-size: 13px; margin-bottom: 20px; }

/* Content Grid (overview with sticky form space) */
.content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
.content-side { display: block; }

/* Overview */
.overview-text p { color: #475569; font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.overview-text h3 { font-size: 17px; margin: 16px 0 10px; color: #0f172a; font-weight: 700; }
.price-note { font-size: 12px; color: var(--gray); font-style: italic; }

/* Pricing Tabs (Dwello style) */
.pricing-section { background: #fff; }
.ptab-row { display: flex; gap: 0; border-bottom: 2px solid #e2e8f0; margin-bottom: 24px; }
.ptab {
    padding: 12px 28px; background: none; border: none; border-bottom: 3px solid transparent;
    font-size: 15px; font-weight: 600; color: #64748b; cursor: pointer;
    margin-bottom: -2px; transition: color 0.2s, border-color 0.2s;
}
.ptab:hover { color: #0f172a; }
.ptab.active { color: #0f172a; border-bottom-color: #2563eb; }

/* Info bar */
.pinfo-bar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    background: #f8faff; border: 1px solid #e2e8f0; border-radius: 8px;
    padding: 10px 16px; margin-bottom: 20px; font-size: 13px;
}
.pinfo-item { color: #475569; font-weight: 500; }
.pinfo-green { color: #15803d; font-weight: 700; }
.pinfo-orange { color: #c2410c; font-weight: 700; }
.pinfo-sep { color: #cbd5e1; }

/* Config Tiles (Dwello style) */
.config-tiles { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.config-tile {
    flex: 1; min-width: 180px; max-width: 260px;
    border: 1.5px solid #e2e8f0; border-radius: 10px;
    padding: 18px 20px; background: #fff; cursor: pointer;
    position: relative; transition: border-color 0.2s, box-shadow 0.2s;
}
.config-tile:hover { border-color: #2563eb; box-shadow: 0 4px 16px rgba(37,99,235,0.1); }
.config-tile-hot { border-color: #2563eb; }
.ctile-hot-label {
    position: absolute; top: -11px; left: 16px;
    background: #2563eb; color: #fff;
    font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px;
}
.ctile-type { font-size: 18px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.ctile-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.ctile-icon { font-size: 13px; color: #94a3b8; }
.ctile-area { font-size: 13px; color: #475569; }
.ctile-price { font-size: 15px; font-weight: 800; color: #16a34a; }
.ctile-tag {
    margin-top: 10px; font-size: 11px; font-weight: 600;
    color: #2563eb; background: #eff6ff; border-radius: 4px;
    padding: 3px 8px; display: inline-block;
}

/* Enquire button */
.enquire-btn {
    margin-top: 4px; padding: 12px 32px;
    background: #2563eb; color: #fff; border: none;
    border-radius: 8px; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: background 0.2s;
}
.enquire-btn:hover { background: #1d4ed8; }

.pricing-panel { display: none; animation: fadeIn 0.3s ease; }
.pricing-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.pc-btn {
    width: 100%; padding: 10px; background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white; border: none; border-radius: 8px; font-weight: 700;
    font-size: 13px; cursor: pointer; transition: opacity 0.2s;
}
.pc-btn:hover { opacity: 0.9; }
.payment-plan { margin-top: 16px; padding-top: 16px; border-top: 1px solid #e2e8f0; }
.payment-plan h4 { font-size: 13px; margin-bottom: 10px; color: var(--gray); }
.plan-steps { display: flex; gap: 10px; flex-wrap: wrap; }
.plan-step {
    background: linear-gradient(135deg, #eff6ff, #f5f3ff); padding: 10px 16px; border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 90px;
    border: 1.5px solid #dbeafe;
}
.plan-pct { font-size: 18px; font-weight: 800; background: linear-gradient(135deg, #2563eb, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-step span:last-child { font-size: 11px; color: var(--gray); }

/* Floor plan sub price */
.fp-price-sub { font-size: 16px; font-weight: 600; color: var(--gray); margin-bottom: 16px; }

/* Amenities */
.amenities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.amenity-card {
    background: white; padding: 16px 10px; border-radius: var(--radius);
    text-align: center; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    border: 1.5px solid #e2e8f0; box-shadow: 0 2px 8px rgba(37,99,235,0.05);
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(37,99,235,0.15); border-color: var(--primary); background: linear-gradient(135deg, #eff6ff, #f5f3ff); }
.amenity-card span { font-size: 26px; display: block; margin-bottom: 6px; }
.amenity-card p { font-size: 12px; font-weight: 500; color: var(--dark); }

/* Floor Plans */
.floorplan-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.fp-tab {
    padding: 10px 28px; border: 2px solid #e2e8f0; border-radius: 8px; background: white;
    font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.2s;
}
.fp-tab.active { background: var(--primary); color: white; border-color: var(--primary); }
.fp-panel { display: none; }
.fp-panel.active { display: block; }
.fp-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; background: white;
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.fp-image { background: #fff; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.fp-details { padding: 20px; }
.fp-details h3 { font-size: 17px; margin-bottom: 10px; }
.fp-details ul { list-style: none; margin-bottom: 14px; }
.fp-details li { padding: 4px 0; font-size: 13px; color: var(--gray); border-bottom: 1px solid #f1f5f9; }
.fp-details li::before { content: '• '; color: var(--primary); font-weight: 700; }
.fp-price { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }

/* Location */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.location-map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.location-map { height: 420px; background: #e2e8f0; }
.location-map iframe { display: block; }
.directions-btn {
    display: block; width: 100%; padding: 13px 16px;
    background: var(--primary); color: white; text-align: center;
    font-size: 14px; font-weight: 700; text-decoration: none;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: background 0.2s;
}
.directions-btn:hover { background: var(--primary-dark); }
.location-list { padding: 4px 0; }
.location-list h3 { font-size: 12px; margin: 14px 0 6px; color: var(--dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.location-list h3:first-child { margin-top: 0; }
.loc-items { display: flex; flex-direction: column; }
.loc-item {
    display: flex; justify-content: space-between; padding: 4px 0;
    border-bottom: 1px solid #f1f5f9; font-size: 12px;
}
.loc-dist { color: var(--primary); font-weight: 700; white-space: nowrap; font-size: 11px; }

/* Builder */
.builder-grid { display: block; }
.builder-info p { color: var(--gray); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.builder-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.bs-item { text-align: center; background: white; padding: 12px 20px; border-radius: 10px; border: 1.5px solid #e2e8f0; min-width: 100px; }
.bs-num { display: block; font-size: 22px; font-weight: 800; background: linear-gradient(135deg, #2563eb, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bs-item span:last-child { font-size: 11px; color: var(--gray); }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-card {
    background: white; padding: 20px 16px; border-radius: var(--radius);
    text-align: center; transition: transform 0.25s, box-shadow 0.25s;
    border: 1.5px solid #e2e8f0;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 24px rgba(37,99,235,0.12); border-color: var(--primary); background: linear-gradient(135deg, #eff6ff, #f5f3ff); }
.benefit-card span { font-size: 28px; display: block; margin-bottom: 8px; }
.benefit-card h3 { font-size: 14px; margin-bottom: 4px; }
.benefit-card p { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 50%, #db2777 100%);
    padding: 40px 0; text-align: center; color: white;
}
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 8px; }
.cta-content p { font-size: 14px; opacity: 0.9; margin-bottom: 18px; }
.btn-large { padding: 14px 32px; font-size: 15px; }
.cta-phone { margin-top: 12px; font-size: 13px; }
.cta-phone a { color: var(--accent); text-decoration: none; font-weight: 700; }

/* Footer */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 32px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.footer-col h3, .footer-col h4 { color: white; margin-bottom: 12px; }
.footer-col h3 { font-family: 'Playfair Display', serif; font-size: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 6px; font-size: 13px; }
.footer-col a:hover { color: white; }
.footer-col p { font-size: 13px; margin-bottom: 6px; }
.footer-bottom { margin-top: 32px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer-bottom p { font-size: 12px; margin-bottom: 4px; }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.disclaimer { font-size: 11px !important; color: rgba(255,255,255,0.4); margin-top: 8px; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* Popup */
.popup-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 1000; align-items: center; justify-content: center;
}
.popup-overlay.active { display: flex; }
.popup-card {
    background: white; border-radius: var(--radius); padding: 36px; max-width: 420px;
    width: 90%; position: relative; animation: popIn 0.3s ease;
}
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close {
    position: absolute; top: 12px; right: 16px; background: none; border: none;
    font-size: 28px; cursor: pointer; color: var(--gray); line-height: 1;
}
.popup-header { text-align: center; margin-bottom: 24px; }
.popup-tag {
    display: inline-block; background: #fef3c7; color: #92400e; padding: 4px 14px;
    border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.popup-header h2 { font-size: 24px; margin-bottom: 4px; }
.popup-header p { font-size: 14px; color: var(--gray); }
.form-group { margin-bottom: 12px; }
.form-group input, .form-group select {
    width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; font-family: inherit;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.btn-submit {
    width: 100%; padding: 14px; background: var(--primary); color: white; border: none;
    border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--primary-dark); }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 12px; }
.form-success { text-align: center; padding: 20px 0; }
.success-icon {
    width: 56px; height: 56px; background: #22c55e; color: white; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; font-size: 28px;
    font-weight: 700; margin-bottom: 12px;
}
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 14px; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 20px; width: 56px; height: 56px;
    background: #25d366; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 28px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 99; transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Sticky Bottom (Mobile) */
.sticky-bottom {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: white; padding: 10px 16px; box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 99; gap: 10px;
}
.sticky-bottom button, .sticky-bottom a {
    flex: 1; padding: 12px; border: none; border-radius: 8px; font-weight: 700;
    font-size: 14px; text-align: center; text-decoration: none; cursor: pointer;
}
.sticky-bottom button { background: var(--primary); color: white; }
.sticky-bottom a { background: #25d366; color: white; }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

/* Gallery Slider */
.gslider-wrap {
    position: relative; background: #0f172a;
    border-radius: 12px; overflow: hidden; margin-bottom: 8px;
}
.gslider-track {
    display: flex; transition: transform 0.4s ease;
}
.gslide {
    min-width: 100%; cursor: zoom-in;
    background: #0f172a;
    height: 340px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.gslide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: blur(2px) brightness(1) saturate(1);
    transform: scale(1.1);
    z-index: 0;
}
.gslide img {
    max-width: 100%; max-height: 340px;
    width: auto; height: auto;
    object-fit: contain; display: block;
    user-select: none; position: relative; z-index: 1;
}
.gslider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; font-size: 16px; padding: 10px 14px;
    cursor: pointer; border-radius: 8px; transition: background 0.2s; z-index: 2;
}
.gslider-btn:hover { background: rgba(255,255,255,0.3); }
.gslider-prev { left: 12px; }
.gslider-next { right: 12px; }
.gslider-counter {
    position: absolute; bottom: 12px; right: 14px;
    background: rgba(0,0,0,0.55); color: white;
    font-size: 12px; font-weight: 600; padding: 3px 10px;
    border-radius: 20px; backdrop-filter: blur(4px);
}
/* Thumbnail Strip */
.gthumb-strip {
    display: flex; gap: 6px; overflow-x: auto;
    padding-bottom: 4px; scrollbar-width: none;
}
.gthumb-strip::-webkit-scrollbar { display: none; }
.gthumb {
    min-width: 80px; height: 56px; border-radius: 6px;
    overflow: hidden; cursor: pointer; flex-shrink: 0;
    border: 2px solid transparent; opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s;
}
.gthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gthumb.active { border-color: var(--primary); opacity: 1; }
.gslide-video { cursor: default; height: 340px; display: flex; align-items: center; }
.gslide-video video { width: 100%; max-height: 340px; display: block; }
.gthumb-video {
    background: #0f172a; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2px;
}
.gthumb-video span { font-size: 18px; color: white; line-height: 1; }
.gthumb-video small { font-size: 9px; color: rgba(255,255,255,0.7); font-weight: 600; }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
    z-index: 2000; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lb-close {
    position: absolute; top: 16px; right: 24px; background: none; border: none;
    color: white; font-size: 36px; cursor: pointer;
}
.lb-prev, .lb-next {
    position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15);
    border: none; color: white; font-size: 28px; padding: 12px 16px; cursor: pointer;
    border-radius: 8px; transition: background 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-form-wrap { display: none; }
    .content-grid { grid-template-columns: 1fr; }
    .content-side { display: none; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .urgency-inner { font-size: 11px; gap: 8px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .emi-wrap { grid-template-columns: 1fr; }
    .config-tiles { flex-direction: column; }
    .config-tile { max-width: 100%; }
    .ptab { padding: 10px 16px; font-size: 13px; }
    .nav-links { 
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: white; flex-direction: column; padding: 16px 20px; gap: 12px;
        box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .btn-nav { display: none; }
    
    .hero h1 { font-size: 30px; }
    .hero-highlights { grid-template-columns: 1fr; }
    .hero-grid { padding: 32px 0 40px; }
    
    .quick-bar-grid { flex-direction: column; gap: 12px; }
    .qb-item { display: flex; justify-content: space-between; text-align: left; }
    
    .section { padding: 32px 0; }
    .section-title { font-size: 22px; }
    
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    
    .fp-card { grid-template-columns: 1fr; }
    .fp-image { min-height: 200px; }
    .fp-details { padding: 20px; }
    
    .location-grid { grid-template-columns: 1fr; }
    .location-map { height: 300px; }
    .loc-item { padding: 8px 0; font-size: 13px; }
    .loc-dist { font-size: 12px; }
    
    .builder-stats { gap: 20px; }
    .bs-num { font-size: 22px; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .gslide { height: 220px; }
    .gslide img { max-height: 220px; }
    .gslide-video { height: 220px; }
    .gthumb { min-width: 60px; height: 44px; }
    
    .sticky-bottom { display: flex; }
    .whatsapp-float { bottom: 80px; }
    
    .cta-content h2 { font-size: 26px; }
    .btn-large { padding: 14px 28px; font-size: 15px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero-actions { flex-direction: column; }
    .hero-actions button, .hero-actions a { width: 100%; text-align: center; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .amenity-card { padding: 16px 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .floorplan-tabs { flex-wrap: wrap; }
}
