/* ==========================================
   NIRANTARREALTY — Independent Builder Floors
   Color Palette: Orange #E5391C, Dark #1A1A2E, Charcoal #2D2D2D
   ========================================== */

:root {
    --orange: #E5391C;
    --orange-dark: #C62828;
    --orange-rgb: 229,57,28;
    --orange-light: rgba(var(--orange-rgb),0.12);
    --dark: #1A1A2E;
    --dark2: #16213E;
    --charcoal: #2D2D2D;
    --text: #1a1a1a;
    --text-muted: #666;
    --white: #ffffff;
    --light-bg: #f7f8fa;
    --border: #e8e8e8;
    --danger: #d32f2f;
    --success: #2e7d32;
    --font-head: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-body: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --section-pad: 80px 0;
    --radius: 12px;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
img { max-width: 100%; }
a { text-decoration: none; }

/* ==========================================
   TOP BAR
   ========================================== */
.topbar {
    background: var(--dark);
    color: var(--orange);
    text-align: center;
    padding: 10px 20px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--orange);
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-block { display: flex; align-items: center; gap: 12px; }

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

/* Header brand image (kept in check so it doesn't blow up layout) */
.site-logo {
    height: 44px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

.logo-name {
    display: block;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-tag {
    display: block;
    font-size: 0.7rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-nav { display: flex; align-items: center; gap: 6px; }

.header-nav a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.2s;
}

.header-nav a:hover { color: var(--orange); background: var(--orange-light); }

.nav-cta {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}

.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

/* ==========================================
   CTA BUTTON
   ========================================== */
@keyframes pulse-orange {
   0%   { box-shadow: 0 0 0 0 rgba(var(--orange-rgb),0.5); }
   70%  { box-shadow: 0 0 0 14px rgba(var(--orange-rgb),0); }
   100% { box-shadow: 0 0 0 0 rgba(var(--orange-rgb),0); }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.5px;
    text-decoration: none;
    animation: pulse-orange 2s infinite;
}

.cta-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    animation-play-state: paused;
    color: #fff;
}

.secondary-cta {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
    color: #fff !important;
    animation: none !important;
}

.secondary-cta:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: #fff !important;
}

/* ==========================================
   SECTION COMMON
   ========================================== */
.section-label {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(var(--orange-rgb),0.25);
    margin-bottom: 14px;
}

.light-label {
    background: rgba(var(--orange-rgb),0.15);
    color: var(--orange);
    border-color: rgba(var(--orange-rgb),0.3);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.light-title { color: #fff; }

.section-header { margin-bottom: 50px; }

.highlight-orange { color: var(--orange); }

.bg-grid {
    background-image:
        linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
    background-size: 28px 28px;
}

.bg-dark { background: var(--dark); }
.bg-dark-subtle { background: #f4f4f6; }

/* ==========================================
   SCARCITY CARD
   ========================================== */
.scarcity-card {
    background: #fff8f0;
    border: 1px solid #ffd4a0;
    border-radius: var(--radius);
    padding: 18px 20px;
    max-width: 580px;
    margin: 15px auto 0;
    width: 100%;
}

.sc-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    align-items: center;
}

.sc-count { color: var(--danger); font-weight: 800; }

.sc-track {
    background: #e8e8e8;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.sc-fill {
    height: 100%;
    background: var(--orange);
    transition: width 1.5s ease;
    width: 0%;
    border-radius: 10px;
}

.sc-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #999;
    font-weight: 600;
}

.cta-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.cta-center .cta-btn { max-width: 450px; width: 100%; font-size: 1.1rem; padding: 18px 40px; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #0f3460 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(var(--orange-rgb),0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--orange-rgb),0.05) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--orange-rgb),0.15);
    border: 1px solid rgba(var(--orange-rgb),0.4);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-flex;
}

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-subline {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-badges-row span {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-badges-row .fa-check-circle { color: var(--orange); }

.hero-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(var(--orange-rgb),0.12);
    border: 1px solid rgba(var(--orange-rgb),0.3);
    padding: 12px 24px;
    border-radius: 10px;
    margin-bottom: 28px;
}

.price-from { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.price-amount { color: var(--orange); font-family: var(--font-head); font-size: 2rem; font-weight: 900; }
.price-onwards { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-ctas .cta-btn { flex: 1; min-width: 200px; }

.scarcity-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.scarcity-fire { font-size: 1.2rem; }

.mini-progress {
    flex: 1;
    background: rgba(255,255,255,0.15);
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.mini-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 10px;
    transition: width 1.5s ease;
}

/* Hero Form */
.hero-form-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.form-card-header {
    background: var(--orange);
    padding: 22px 28px;
    text-align: center;
}

.form-card-header h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.form-card-header p {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}

.lead-form { padding: 24px; }

.form-field { margin-bottom: 14px; }

.form-field input,
.form-field select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fafafa;
    color: var(--text);
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: #999;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.field-err {
    display: none;
    color: var(--danger);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 5px;
}

.form-success {
    background: #e8f5e9;
    color: var(--success);
    border: 1px solid #a5d6a7;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    margin-top: 12px;
}

/* ==========================================
   TRUST BAND
   ========================================== */
.trust-band {
    background: var(--dark);
    border-bottom: 3px solid var(--orange);
    padding: 20px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px;
}

.t-emoji { font-size: 1.4rem; }

/* ==========================================
   HIGHLIGHTS
   ========================================== */
.section-highlights { padding: var(--section-pad); }

/* Make the "WHY THESE FLOORS" header read better */
.section-highlights .section-header {
    margin-bottom: 42px;
    padding: 18px 22px;
    border-radius: 16px;
    border: 1px solid rgba(var(--orange-rgb),0.22);
    background: rgba(26,26,46,0.92);
    box-shadow: var(--shadow);
}

.section-highlights .section-label {
    margin-bottom: 12px;
}

.section-highlights .section-title {
    color: #fff;
    margin-bottom: 8px;
}

.highlights-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.prop-img-box {
    background: #f4f4f6;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.prop-img-placeholder {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    position: relative;
}

.prop-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28);
    z-index: 1;
}

.prop-highlight-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.prop-img-placeholder i { font-size: 3rem; color: var(--orange); opacity: 0.6; }
.prop-img-placeholder span { font-weight: 700; font-size: 1rem; color: rgba(255,255,255,0.8); }
.prop-img-placeholder small { font-size: 0.78rem; }

.prop-img-placeholder i,
.prop-img-placeholder span,
.prop-img-placeholder small {
    position: relative;
    z-index: 2;
}

.download-plan-btn {
    display: block;
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.2s;
    animation: none;
    border-radius: 0;
}

.download-plan-btn:hover { background: var(--orange-dark); color: #fff; transform: none; }

.prop-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.highlights-box {
    background: rgba(var(--orange-rgb),0.12);
    border: 1px solid rgba(var(--orange-rgb),0.30);
    border-left: 5px solid var(--orange);
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 24px;
    box-shadow: 0 14px 42px rgba(0,0,0,0.10);
}

.highlights-box h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlights-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.highlights-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.highlights-box li .fa-check { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.prop-image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.prop-thumb {
    background: var(--dark);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.prop-thumb i { font-size: 1.4rem; color: var(--orange); }
.prop-thumb:hover { background: var(--charcoal); transform: translateY(-2px); }

/* ==========================================
   AMENITIES
   ========================================== */
.section-amenities { padding: var(--section-pad); background: var(--light-bg); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.amenity-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: default;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}

.amenity-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(var(--orange-rgb),0.12);
}

.amenity-img {
    width: 52px;
    height: 52px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange-dark);
    transition: 0.3s;
}

.amenity-card:hover .amenity-img { background: var(--orange); color: #fff; }

/* ==========================================
   FLOOR PLANS
   ========================================== */
.section-floor-plans { padding: var(--section-pad); }

.plan-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border: 2px solid var(--orange);
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.plan-tab {
    flex: 1;
    padding: 14px;
    background: #fff;
    border: none;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    color: var(--text);
    letter-spacing: 0.5px;
}

.plan-tab.active { background: var(--orange); color: #fff; }
.plan-tab:hover:not(.active) { background: var(--orange-light); }

.plan-panel { display: none; }
.plan-panel.active { display: block; }

.plan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.bhk-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.best-badge { background: var(--dark); }

.plan-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.plan-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }

.plan-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.spec-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.spec-row i { color: var(--orange); width: 18px; text-align: center; }
.spec-row span { color: var(--text); }

.plan-price-block {
    background: var(--orange-light);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-price {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange-dark);
}

.plan-price-note { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

.plan-cta-btn { width: 100%; animation: none; }

/* Floor Plan Diagram */
.floorplan-display {
    background: var(--dark);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-diagram { width: 100%; }

.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 6px;
}

.fp-room {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: default;
    transition: 0.2s;
}

.fp-room span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    line-height: 1.3;
}

.fp-room.master { background: rgba(var(--orange-rgb),0.18); border-color: rgba(var(--orange-rgb),0.4); grid-column: span 2; }
.fp-room.master span { color: var(--orange); font-weight: 700; }
.fp-room.living { background: rgba(var(--orange-rgb),0.1); border-color: rgba(var(--orange-rgb),0.2); grid-column: span 2; }
.fp-room.living span { color: rgba(255,255,255,0.8); }

.fp-grid-350 { grid-template-columns: repeat(4, 1fr); }
.fp-grid-500 { grid-template-columns: repeat(4, 1fr); }

/* Features Row */
.plan-features-row {
    background: var(--dark);
    border-radius: 16px;
    padding: 28px 32px;
}

.feat-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
}

.feat-item .fa-check { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

/* ==========================================
   WHY / COMPARISON
   ========================================== */
.section-why { padding: var(--section-pad); }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.comp-card {
    border-radius: 16px;
    padding: 32px;
}

.comp-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.comp-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.comp-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}

.red-card { background: rgba(211,47,47,0.08); border: 1px solid rgba(211,47,47,0.2); }
.red-card h3 { color: #ff6b6b; }
.red-card li { color: rgba(255,255,255,0.65); }
.red-card .fa-times { color: #ff6b6b; margin-top: 2px; }

.green-card { background: rgba(var(--orange-rgb),0.1); border: 2px solid var(--orange); }
.green-card h3 { color: var(--orange); }
.green-card li { color: rgba(255,255,255,0.9); font-weight: 600; }
.green-card .fa-check { color: var(--orange); margin-top: 2px; }

.logic-chain {
    background: var(--orange);
    color: #fff;
    text-align: center;
    font-family: var(--font-head);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 800;
    padding: 16px 24px;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}

/* ==========================================
   LOCATION ADVANTAGE
   ========================================== */
.section-location-adv { padding: var(--section-pad); }

.loc-adv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.map-placeholder {
    background: var(--dark);
    border-radius: 16px;
    padding: 0;
    height: 280px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-mock {
    text-align: center;
    position: relative;
    z-index: 1;
}

.map-pin { color: var(--orange); font-size: 2.5rem; margin-bottom: 8px; }

.map-label {
    color: #fff;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.map-routes { display: flex; flex-direction: column; gap: 6px; }

.route {
    background: rgba(var(--orange-rgb),0.15);
    border: 1px solid rgba(var(--orange-rgb),0.3);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
}

.loc-adv-box {
    background: var(--orange-light);
    border: 1px solid rgba(var(--orange-rgb),0.25);
    border-left: 4px solid var(--orange);
    border-radius: 10px;
    padding: 20px 22px;
}

.loc-adv-box h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.loc-adv-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.loc-adv-box li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
}

.loc-adv-box .fa-check { color: var(--orange); margin-top: 3px; }

.loc-why-col h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 28px;
}

.why-points { display: flex; flex-direction: column; gap: 22px; }

.why-pt {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.why-pt:last-child { border-bottom: none; padding-bottom: 0; }

.why-icon {
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-pt h5 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.why-pt p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.why-pt strong { color: var(--text); }

/* ==========================================
   GALLERY
   ========================================== */
.section-gallery { padding: var(--section-pad); background: var(--dark); }
.section-gallery .section-title { color: #fff; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 12px;
    grid-template-areas:
        "big big top-right"
        "big big bottom-right"
        "small-left small-middle small-right";
}

.gallery-item { border-radius: 12px; overflow: hidden; }

.slot-big { grid-area: big; }
.slot-top-right { grid-area: top-right; }
.slot-bottom-right { grid-area: bottom-right; }
.slot-small-left { grid-area: small-left; }
.slot-small-middle { grid-area: small-middle; }
.slot-small-right { grid-area: small-right; }

.slot-big .gallery-placeholder { aspect-ratio: 4/3; }
.slot-small-left .gallery-placeholder,
.slot-small-middle .gallery-placeholder,
.slot-small-right .gallery-placeholder { aspect-ratio: 1/1; }

.gallery-placeholder {
    aspect-ratio: 3/2;
    display: block;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.gallery-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: var(--font-head);
    padding: 8px 12px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255,255,255,0.12);
}

.gallery-placeholder:hover { transform: scale(1.02); }

.gp1 { background: linear-gradient(135deg, #1a2a4a, #2d3a5a); }
.gp2 { background: linear-gradient(135deg, #2a1a1a, #4a2d2d); }
.gp3 { background: linear-gradient(135deg, #1a2a1a, #2a4a2a); }
.gp4 { background: linear-gradient(135deg, #2a2a1a, #4a4a2d); }
.gp5 { background: linear-gradient(135deg, #1a1a2a, #2d2d4a); }
.gp6 { background: linear-gradient(135deg, #2a1a2a, #4a2d4a); }

.gp1:hover .gallery-caption, .gp2:hover .gallery-caption, .gp3:hover .gallery-caption,
.gp4:hover .gallery-caption, .gp5:hover .gallery-caption, .gp6:hover .gallery-caption { border-color: rgba(var(--orange-rgb),0.6); }

.gallery-note {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-style: italic;
}

/* ==========================================
   METRICS
   ========================================== */
.section-metrics { padding: 60px 0; background: #fff; }

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(var(--orange-rgb),0.2);
    box-shadow: var(--shadow-lg);
}

.metric-col {
    padding: 36px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.metric-col:last-child { border-right: none; }
.m-icon { font-size: 2rem; line-height: 1; color: var(--orange); }
.m-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.m-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================
   FAQ
   ========================================== */
.section-faq { padding: var(--section-pad); }

.faq-list { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s;
}

.faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    transition: 0.2s;
    gap: 15px;
}

.faq-q:hover { background: #fafafa; }

.faq-q i { color: var(--orange); font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; }

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-inner {
    padding: 4px 0 22px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-item.active { border-color: var(--orange); }
.faq-item.active .faq-q { background: var(--orange-light); color: var(--orange-dark); }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-item.active .faq-a { max-height: 500px; }

/* ==========================================
   CONTACT SECTION
   ========================================== */
.section-contact { padding: var(--section-pad); background: var(--light-bg); }

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-subtitle { color: var(--text-muted); margin-bottom: 28px; }

.contact-form { padding: 0; }

.contact-form .form-field input,
.contact-form .form-field select {
    padding: 15px 16px;
    font-size: 1rem;
    background: #fff;
}

#contactSendBtn {
    background: var(--orange);
    padding: 16px;
    font-size: 1.1rem;
}

.project-address-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.project-address-card h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.project-address-card p { color: rgba(255,255,255,0.75); line-height: 1.7; font-size: 0.92rem; }

.contact-links { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.92rem;
    transition: 0.2s;
}

.contact-link:hover { color: #fff; }

.office-timings {
    margin-top: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links { display: flex; gap: 10px; }

.social-btn {
    flex: 1;
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.08);
}

.social-btn:hover { background: var(--orange); color: #fff; }

/* ==========================================
   ABOUT DEVELOPER
   ========================================== */
.section-about-dev { padding: 60px 0; }

.about-dev-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.dev-img-placeholder {
    background: var(--dark);
    aspect-ratio: 4/5;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
}

.dev-img-placeholder i { font-size: 4rem; color: var(--orange); opacity: 0.5; }
.dev-img-placeholder span { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,0.7); }

.dev-content-col h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.dev-content-col p { color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; font-size: 0.95rem; }
.dev-content-col strong { color: var(--text); }

.dev-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.ds {
    background: var(--orange-light);
    border: 1px solid rgba(var(--orange-rgb),0.2);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ds strong { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--orange-dark); }
.ds span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { background: var(--dark); padding: 50px 0 0; color: rgba(255,255,255,0.7); }

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo .logo-icon { background: var(--orange); }
.footer-logo span { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: #fff; }

.footer-col p { font-size: 0.88rem; line-height: 1.7; }

.footer-col h5 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content:space-around;
    padding: 20px 24px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom p a{
    font-family: var(--font-head);
    color: white;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a { color: rgba(255,255,255,0.4); font-size: 1rem; transition: 0.2s; }
.footer-social a:hover { color: var(--orange); }

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    background: #fff;
    max-width: 460px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s;
    position: relative;
}

.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(0,0,0,0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.2s;
}

.modal-close:hover { background: rgba(0,0,0,0.3); }

.modal-header {
    background: var(--orange);
    padding: 28px 28px 22px;
    text-align: center;
}

.modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 14px;
}

.modal-header h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.modal-header p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

.modal-card .lead-form { padding: 24px 28px 28px; }

/* ==========================================
   MOBILE STICKY BAR
   ========================================== */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: #fff;
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    gap: 10px;
}

.sticky-call {
    flex: 1;
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
}

.sticky-call:hover { background: var(--charcoal); color: #fff; }

.sticky-visit {
    flex: 2;
    padding: 13px;
    font-size: 0.95rem;
    animation: none;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    :root { --section-pad: 60px 0; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-card { max-width: 480px; margin: 0 auto; }
    .highlights-layout { grid-template-columns: 1fr; }
    .plan-layout { grid-template-columns: 1fr; }
    .floorplan-display { min-height: 250px; }
    .feat-grid { grid-template-columns: 1fr 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .loc-adv-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .about-dev-layout { grid-template-columns: 1fr; }
    .dev-img-placeholder { aspect-ratio: 16/5; }
    .footer-inner { grid-template-columns: 1fr; }
    .dev-stats { grid-template-columns: repeat(2, 1fr); }
    .metrics-row { grid-template-columns: repeat(2, 1fr); }
    .metric-col:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    body { padding-bottom: 80px; }
    .mobile-sticky { display: flex; }
    .header-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas:
            "big big"
            "top-right bottom-right"
            "small-left small-middle"
            "small-right small-right";
    }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .cta-btn { min-width: unset; width: 100%; }
    .prop-image-row { grid-template-columns: repeat(3, 1fr); }
    .plan-tabs { max-width: 100%; }
    .feat-grid { grid-template-columns: 1fr; }
    .fp-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-grid-350, .fp-grid-500 { grid-template-columns: repeat(2, 1fr); }
    .fp-room.master { grid-column: span 2; }
    .fp-room.living { grid-column: span 2; }
    .social-links { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto auto;
        grid-template-areas:
            "big"
            "top-right"
            "bottom-right"
            "small-left"
            "small-middle"
            "small-right";
    }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .topbar { font-size: 0.72rem; }
    .dev-stats { grid-template-columns: repeat(2, 1fr); }
    .metrics-row { grid-template-columns: repeat(2, 1fr); }
    .prop-image-row { grid-template-columns: repeat(3, 1fr); }
    .hero-badges-row { gap: 6px; }
    .hero-badges-row span { font-size: 0.75rem; padding: 4px 8px; }
}

.text-white{
    color: rgba(255, 255, 255, 0.7);
}
