/* ═══════════════════════════════════════════════════════════════
   INDIA DEVELOPERS - OFFICIAL STYLESHEET (style.css)
   Panvel's #1 Most Trusted Real Estate Developer Brand
   Leadership: Mr. Ajit Jadhav (Builders & Developers)
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   1. CSS VARIABLES & DESIGN SYSTEM
   ══════════════════════════════════════════════════ */
:root {
    --primary-navy: #0b132b;
    --secondary-navy: #141d38;
    --card-navy: #192444;
    --card-navy-hover: #202d54;
    --saffron: #f97316;
    --saffron-dark: #ea580c;
    --saffron-light: #fb923c;
    --gold: #f59e0b;
    --emerald: #10b981;
    --emerald-dark: #059669;
    --royal-blue: #1d4ed8;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-subtle: #e2e8f0;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-slate: #cbd5e1;
    --text-dark: #1e293b;
    --text-body: #475569;
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 25px 60px rgba(249, 115, 22, 0.2);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════════════════
   2. RESET & GLOBAL STYLES
   ══════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--primary-navy);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

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

/* ══════════════════════════════════════════════════
   3. TOP CONTACT BAR
   ══════════════════════════════════════════════════ */
.top-bar {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    color: var(--text-body);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.top-item i {
    color: var(--saffron);
    font-size: 0.85rem;
}

.top-item a {
    color: var(--text-dark);
    font-weight: 700;
}

.top-item a:hover {
    color: var(--saffron);
}

.top-badge {
    background: #ecfdf5;
    color: var(--emerald-dark);
    border: 1px solid #a7f3d0;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════
   4. MAIN NAVBAR & BRAND LOGO
   ══════════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

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

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

.brand-logo-img:hover {
    transform: scale(1.03);
}

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

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.4rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--saffron);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

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

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

.btn-site-visit {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.4);
    transition: var(--transition-smooth);
}

.btn-site-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.55);
}

.mobile-menu-btn {
    display: none;
    background: #f1f5f9;
    border: 1px solid var(--border-subtle);
    color: var(--primary-navy);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════════════
   5. PAGE BANNER HEADER (Internal Pages)
   ══════════════════════════════════════════════════ */
.page-header {
    padding: 4.5rem 0 3.5rem 0;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #0b132b 0%, #121c3b 100%);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.page-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--text-slate);
    max-width: 720px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   6. HERO SECTION
   ══════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    padding: 5rem 0 6rem 0;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0b132b 0%, #111a36 100%);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--saffron);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
}

.text-gradient-saffron {
    background: linear-gradient(135deg, #ff9933 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-slate);
    line-height: 1.7;
    max-width: 90%;
}

.hero-desc strong {
    color: #ffffff;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 22px rgba(249, 115, 22, 0.45);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--saffron);
    color: var(--saffron);
    transform: translateY(-3px);
}

.hero-highlights-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-slate);
}

.hero-highlight-item i {
    color: var(--emerald);
    font-size: 1.1rem;
}

.hero-right {
    position: relative;
}

.hero-showcase-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--card-navy);
    height: 480px;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-showcase-card:hover .hero-banner-img {
    transform: scale(1.05);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 19, 43, 0.95) 70%, #0b132b 100%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-card-badge {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.hero-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-slate);
    flex-wrap: wrap;
}

.hero-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-card-meta i {
    color: var(--saffron);
}

/* ══════════════════════════════════════════════════
   7. STATS & LEGACY COUNTERS
   ══════════════════════════════════════════════════ */
.stats-section {
    background: #080e22;
    padding: 2.8rem 0;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 0.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--saffron);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════
   8. SECTION COMMONS
   ══════════════════════════════════════════════════ */
.section-padding {
    padding: 5.5rem 0;
}

.section-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem auto;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: var(--saffron);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.section-title span {
    color: var(--saffron);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   9. ABOUT COMPANY SECTION
   ══════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

.about-img-box {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    z-index: 10;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.about-floating-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(11, 19, 43, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
}

.about-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.about-content p {
    color: var(--text-slate);
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.pillars-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 1.8rem 0;
}

.pillar-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.pillar-card i {
    color: var(--saffron);
    font-size: 1.3rem;
    margin-top: 3px;
}

.pillar-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

.pillar-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* About Page Specific Story, Values & Timeline */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin: 5rem 0;
}

.story-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    height: 440px;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.story-content p {
    color: var(--text-slate);
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-section {
    background: #080e22;
    padding: 5rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.value-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.4);
}

.value-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline-section {
    padding: 5rem 0;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.8rem;
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.8rem;
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--saffron);
    flex-shrink: 0;
    width: 90px;
}

.timeline-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.timeline-info p {
    font-size: 0.88rem;
    color: var(--text-slate);
    margin: 0;
}

/* ══════════════════════════════════════════════════
   10. REALEXA PROJECTS CATEGORY SHOWCASE
   ══════════════════════════════════════════════════ */
.projects-section {
    background: #090f24;
    position: relative;
}

.realexa-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.realexa-project-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.realexa-card-link-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: block;
}

.realexa-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(249, 115, 22, 0.15);
}

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

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

.realexa-project-card:hover .realexa-img-box img {
    transform: scale(1.1);
}

.realexa-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(8px);
    color: var(--saffron-light);
    border: 1px solid rgba(249, 115, 22, 0.3);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.realexa-status-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--emerald);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.realexa-card-content {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.realexa-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.realexa-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.realexa-card-title a:hover {
    color: var(--saffron);
}

.realexa-card-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.realexa-card-specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: var(--text-slate);
    margin-bottom: 1rem;
}

.realexa-card-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.realexa-card-specs i {
    color: var(--saffron);
}

.realexa-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.realexa-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--saffron);
}

.realexa-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.realexa-project-card:hover .realexa-arrow-btn {
    background: var(--saffron);
    color: #ffffff;
    transform: rotate(45deg);
}

.btn-view-all-box {
    text-align: center;
    margin-top: 3.5rem;
}

/* Projects Page Catalogue & Filter */
.filter-wrap {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 3rem 0 2rem 0;
}

.filter-btn {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    color: var(--text-slate);
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #ffffff;
    border-color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.project-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: var(--shadow-hover);
}

.project-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-badge-status {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--saffron);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.project-badge-rera {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(8px);
    color: #34d399;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.project-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.project-location {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.project-specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: var(--text-slate);
    margin-bottom: 1.2rem;
}

.project-specs i {
    color: var(--saffron);
}

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

.price-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.btn-card-enquire {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--saffron-light);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-card-enquire:hover {
    background: var(--saffron);
    color: #ffffff;
}

/* ══════════════════════════════════════════════════
   11. FEATURED PROPERTIES YOU'LL LOVE (Realexa Exact Style)
   ══════════════════════════════════════════════════ */
.featured-list-section {
    background: #ffffff;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    color: #1e293b;
    padding: 6rem 0;
}

.feat-subtitle-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.feat-subtitle-top::before,
.feat-subtitle-top::after {
    content: "—";
    color: #94a3b8;
}

.feat-main-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
    text-align: left;
}

.feat-main-heading span {
    font-weight: 800;
    color: #0f172a;
}

.feat-main-heading em {
    font-style: italic;
    font-weight: 400;
    color: #1e293b;
}

.featured-realexa-block {
    display: grid;
    grid-template-columns: 1.18fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto 4rem auto;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-realexa-block:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.featured-realexa-block:last-child {
    margin-bottom: 0;
}

/* Reverse Staggered / Zigzag Row */
.featured-realexa-block.reverse {
    grid-template-columns: 1fr 1.18fr;
}

.featured-realexa-block.reverse .featured-details-box {
    order: 1;
}

.featured-realexa-block.reverse .featured-dual-images {
    order: 2;
    grid-template-columns: 1.28fr 0.72fr;
}

.featured-dual-images {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 1.25rem;
    align-items: stretch;
    height: 470px;
}

/* Parallax Narrow Image Container */
.feat-narrow-img-box {
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.feat-narrow-img-box img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    transition: transform 0.15s cubic-bezier(0, 0, 0.2, 1);
    will-change: transform;
    margin-top: -10%;
}

.featured-realexa-block:hover .feat-narrow-img-box img {
    filter: brightness(1.03);
}

.feat-main-img-box {
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feat-main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-realexa-block:hover .feat-main-img-box img {
    transform: scale(1.05);
}

.feat-loc-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.feat-loc-badge i {
    color: var(--saffron);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.feat-loc-badge span {
    line-height: 1.35;
}

.featured-details-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.feat-cat-pill {
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
    display: block;
}

.feat-apartment-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.feat-description {
    font-size: 0.94rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feat-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.feat-spec-row {
    display: grid;
    grid-template-columns: 24px 115px 20px 1fr;
    align-items: center;
    font-size: 0.92rem;
    color: #334155;
}

.feat-spec-row i {
    color: var(--saffron);
    font-size: 1rem;
}

.feat-spec-row .spec-name {
    color: #64748b;
    font-weight: 500;
}

.feat-spec-row .spec-colon {
    color: #94a3b8;
    text-align: center;
}

.feat-spec-row .spec-val {
    color: #0f172a;
    font-weight: 700;
}

.btn-feat-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 0.6rem 0.5rem 1.6rem;
    border-radius: 999px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
}

.btn-feat-more:hover {
    background: var(--saffron);
    color: #ffffff;
    border-color: var(--saffron);
}

.feat-circle-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-feat-more:hover .feat-circle-arrow {
    background: #ffffff;
    color: var(--saffron);
    transform: rotate(45deg);
}

/* Fallback & Additional Properties block */
.featured-property-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 2.5rem;
    transition: var(--transition-smooth);
    color: #1e293b;
}

.featured-property-block:hover {
    border-color: var(--saffron);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.featured-property-block.reversed {
    grid-template-columns: 1fr 1.15fr;
}

.featured-img-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    position: relative;
}

.featured-img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    position: relative;
    background: #f1f5f9;
}

.featured-img-card.second {
    height: 320px;
}

.featured-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.img-location-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #ffffff;
    font-weight: 600;
}

.img-location-badge i {
    color: var(--saffron);
    font-size: 0.9rem;
}

.featured-content-block {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.featured-subtitle {
    color: var(--saffron);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.featured-text {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
}

.realexa-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    margin: 0.6rem 0 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
}

.realexa-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
}

.realexa-list-item i {
    color: var(--saffron);
    font-size: 0.95rem;
    width: 18px;
}

.realexa-list-item .ftr-title {
    color: #64748b;
    font-weight: 500;
}

.realexa-list-item .separetor {
    color: #cbd5e1;
}

.realexa-list-item .value {
    color: #0f172a;
    font-weight: 700;
}

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

/* ══════════════════════════════════════════════════
   11B. 8 CIRCULAR AMENITIES DISCS (High-Contrast Luxury Style)
   ══════════════════════════════════════════════════ */
.feature-circles-section {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #ffffff 70%, #f1f5f9 100%);
    padding: 5.5rem 0 5.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

/* Explicit high-contrast typography for light background */
.feature-circles-section .section-pill {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #ea580c;
    font-weight: 700;
}

.feature-circles-section .section-title {
    color: #0b132b;
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.feature-circles-section .section-title span {
    color: var(--saffron);
}

.feature-circles-section .section-subtitle {
    color: #475569;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}

.feature-circles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: start;
    gap: 3.2rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.feature-circle-disc {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 25px -4px rgba(11, 19, 43, 0.08), 0 4px 10px -2px rgba(11, 19, 43, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.feature-circle-disc i {
    font-size: 2.4rem;
    color: #0b132b;
    margin-bottom: 0.85rem;
    transition: var(--transition-smooth);
}

.feature-circle-disc .circle-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-circle-item:hover .feature-circle-disc {
    border-color: var(--saffron);
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -5px rgba(249, 115, 22, 0.25), 0 8px 16px -4px rgba(249, 115, 22, 0.12);
    background: #ffffff;
}

.feature-circle-item:hover .feature-circle-disc i {
    color: var(--saffron);
    transform: scale(1.15);
}

.feature-circle-item:hover .feature-circle-disc .circle-label {
    color: #ea580c;
}

/* Button override for light background */
.feature-circles-section .btn-secondary {
    background: #0b132b;
    border: 1.5px solid #0b132b;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(11, 19, 43, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition-smooth);
}

.feature-circles-section .btn-secondary:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
}

.feature-circles-section .btn-secondary i {
    color: var(--saffron-light);
    transition: var(--transition-smooth);
}

.feature-circles-section .btn-secondary:hover i {
    color: #ffffff;
}

@media (max-width: 991px) {
    .feature-circles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .feature-circles-section {
        padding: 3.5rem 0 3.2rem 0;
    }

    .feature-circles-section .section-title {
        font-size: 1.85rem;
    }

    .feature-circles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.5rem;
    }

    .feature-circle-disc {
        width: 145px;
        height: 145px;
        padding: 1rem 0.5rem;
    }

    .feature-circle-disc i {
        font-size: 1.9rem;
        margin-bottom: 0.5rem;
    }

    .feature-circle-disc .circle-label {
        font-size: 0.82rem;
    }
}

/* ══════════════════════════════════════════════════
   12. PRIME LOCATION & CONNECTIVITY (Realexa White Theme)
   ══════════════════════════════════════════════════ */
.location-split-section {
    padding: 0;
    background: #ffffff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    overflow: hidden;
}

.location-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

@media (max-width: 991px) {
    .location-split-grid {
        grid-template-columns: 1fr;
    }
}

.location-split-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    background: #f1f5f9;
}

.location-split-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.location-split-grid:hover .location-split-img-box img {
    transform: scale(1.04);
}

.location-split-dark-box {
    background: #ffffff;
    padding: 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #0f172a;
    position: relative;
}

@media (max-width: 991px) {
    .location-split-dark-box {
        padding: 3.5rem 2rem;
    }

    .location-split-img-box {
        min-height: 380px;
    }
}

.loc-neighborhood-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.loc-neighborhood-tag::before {
    content: "—";
    color: var(--saffron);
}

.loc-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.loc-proximity-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loc-proximity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
    position: relative;
}

.loc-proximity-item:hover {
    border-bottom-color: var(--saffron);
    transform: translateX(6px);
}

.loc-item-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.loc-diamond {
    color: var(--saffron);
    font-size: 0.75rem;
}

.loc-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.loc-item-sub {
    font-size: 0.84rem;
    color: #64748b;
}

.loc-item-distance {
    font-size: 0.82rem;
    font-weight: 700;
    color: #c2410c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.loc-hover-thumb {
    width: 60px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: none;
}

@media (min-width: 1200px) {
    .loc-hover-thumb {
        display: block;
    }
}

.loc-hover-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════
   12B. HOMEOWNERS SLIDER & PHOTO GALLERY (No text over photo)
   ══════════════════════════════════════════════════ */
.homeowner-slider-wrap {
    overflow: hidden;
    position: relative;
    padding: 1rem 0 2rem 0;
}

.homeowner-slide-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.homeowner-photo-card {
    flex: 0 0 calc(25% - 1.125rem);
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.homeowner-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.homeowner-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.homeowner-photo-card:hover img {
    transform: scale(1.06);
}

.clean-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .clean-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .clean-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
}

/* Gallery Grid - Responsive, Clean & Fast */
.clean-gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    display: block;
}

.clean-gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--saffron);
    box-shadow: 0 14px 35px rgba(249, 115, 22, 0.15);
}

.clean-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.clean-gallery-item:hover img {
    transform: scale(1.06);
}

.clean-gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    width: 44px;
    height: 44px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.clean-gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.clean-gallery-item.gallery-lazy-item {
    display: block;
}

.gallery-scroll-sentinel {
    text-align: center;
    padding: 3rem 0 1.5rem 0;
}

.gallery-all-done {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.08);
}

.floor-tab-btn {
    border: 1px solid var(--border-light);
    color: var(--text-slate);
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floor-tab-btn:hover,
.floor-tab-btn.active {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* ══════════════════════════════════════════════════
   12. REALEXA FLOOR PLANS SECTION (2-at-a-time Slider)
   ══════════════════════════════════════════════════ */
.floorplan-realexa-section {
    background: #f8fafc;
    padding: 6.5rem 0 7.5rem 0;
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.floorplan-header-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.floorplan-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.85rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-top: 0.6rem;
    letter-spacing: -0.5px;
}

.floorplan-main-title em {
    font-family: 'Tiro Devanagari Marathi', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: #0f172a;
}

.floorplan-tabs-pills {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.floorplan-tab-pill {
    background: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1.6rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.floorplan-tab-pill:hover,
.floorplan-tab-pill.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.floorplan-bg-banner {
    position: relative;
    width: 100%;
    max-width: 1240px;
    height: 480px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background-image: url('img/floorplan/floor-1bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.floorplan-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.15);
    border-radius: var(--radius-lg);
}

/* Floating White Card Overlapping the Banner */
.floorplan-floating-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
    max-width: 1140px;
    margin: -240px auto 0 auto;
    padding: 3rem 2.8rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3.2rem;
    align-items: center;
}

/* Left Slider Container - 2 Images Per Slide */
.fp-slider-left-wrap {
    position: relative;
    overflow: hidden;
    padding: 6px 0;
}

.fp-slides-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.fp-slide-pair {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.fp-img-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.fp-img-card:hover {
    border-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
}

.fp-img-card img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.fp-img-card:hover img {
    transform: scale(1.05);
}

.fp-img-card .fp-badge {
    position: absolute;
    bottom: 10px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.fp-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.4rem;
    padding: 0 0.5rem;
}

.fp-nav-arrows {
    display: flex;
    gap: 0.6rem;
}

.fp-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fp-arrow-btn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #ffffff;
    transform: scale(1.08);
}

.fp-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.fp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fp-dot.active {
    background: var(--saffron);
    width: 22px;
    border-radius: 999px;
}

/* Right Content Box - Fixed */
.fp-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 1.2rem;
    border-left: 1px solid #f1f5f9;
}

.fp-right-title {
    font-family: 'Tiro Devanagari Marathi', Georgia, serif;
    font-size: 2.2rem;
    font-style: italic;
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.fp-right-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.fp-spec-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: capitalize;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 0.2px;
}

.fp-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.4rem;
    margin-bottom: 2.2rem;
}

.fp-spec-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.fp-spec-bullet i {
    color: var(--saffron);
    font-size: 0.65rem;
}

.btn-fp-action {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 0.55rem 0.7rem 0.55rem 1.5rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.35s ease;
    width: fit-content;
}

.btn-fp-action .fp-btn-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #a3623b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.35s ease;
}

.btn-fp-action:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.btn-fp-action:hover .fp-btn-icon {
    background: var(--saffron);
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .floorplan-floating-card {
        grid-template-columns: 1fr;
        margin-top: -120px;
        padding: 2.2rem 1.6rem;
        gap: 2.5rem;
    }

    .fp-right-content {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-top: 2rem;
    }

    .floorplan-bg-banner {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .fp-slide-pair {
        grid-template-columns: 1fr;
    }

    .fp-img-card {
        height: 250px;
    }

    .floorplan-main-title {
        font-size: 2.1rem;
    }
}

/* ══════════════════════════════════════════════════
   13. AMENITIES SECTION
   ══════════════════════════════════════════════════ */
.amenities-section {
    background: #0b132b;
}

.category-title-wrap {
    margin: 4rem 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title-wrap h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.category-line {
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.amenity-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.4);
    background: var(--card-navy-hover);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--saffron);
    margin: 0 auto 1.2rem auto;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    background: var(--saffron);
    color: #ffffff;
    transform: scale(1.1);
}

.amenity-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.amenity-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.amenity-cta-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(29, 78, 216, 0.15) 100%), var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    margin: 4rem 0 6rem 0;
}

.amenity-cta-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.amenity-cta-box p {
    color: var(--text-slate);
    max-width: 650px;
    margin: 0 auto 2rem auto;
    font-size: 1rem;
}

/* ══════════════════════════════════════════════════
   14. EMI CALCULATOR
   ══════════════════════════════════════════════════ */
.emi-section,
.emi-main-wrap {
    background: #080d1f;
    padding: 5rem 0;
}

.emi-container-box {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.slider-group {
    margin-bottom: 2rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.slider-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-slate);
}

.slider-value-display {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--saffron);
}

.custom-range {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #23305a;
    outline: none;
    -webkit-appearance: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--saffron);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.7);
    transition: transform 0.2s;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.emi-result-card {
    background: linear-gradient(145deg, #1e284a 0%, #151d38 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.emi-monthly-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.emi-monthly-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.emi-monthly-amount span {
    color: var(--saffron);
}

.emi-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 0.7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-slate);
}

.emi-breakdown-row strong {
    color: #ffffff;
}

.btn-apply-loan {
    width: 100%;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    font-weight: 800;
    padding: 0.9rem;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-apply-loan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.5);
}

.bank-table-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.bank-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.bank-table th {
    background: rgba(11, 19, 43, 0.8);
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    color: var(--saffron);
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid var(--border-light);
}

.bank-table td {
    padding: 1.1rem 1.2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-slate);
}

.bank-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ══════════════════════════════════════════════════
   15. CLIENT TESTIMONIALS & PHOTO WALL
   ══════════════════════════════════════════════════ */
.clients-slider-section {
    background: #090e21;
    position: relative;
    overflow: hidden;
}

.slider-controls-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slider-arrow-btn {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.slider-arrow-btn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: scale(1.1);
}

.btn-view-all-homeowners {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.12);
    color: var(--saffron);
    border: 1px solid rgba(249, 115, 22, 0.4);
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-view-all-homeowners:hover {
    background: var(--saffron);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.client-carousel-container,
.homeowner-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 10px 0 25px 0;
}

.client-carousel-track,
.homeowner-slide-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.client-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.client-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 16px 35px rgba(249, 115, 22, 0.15);
}

.client-photo-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #000000;
    cursor: pointer;
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.client-photo-wrap:hover .client-photo {
    transform: scale(1.06);
}

.client-handover-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11, 19, 43, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--saffron-light);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.client-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.client-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    display: flex;
    gap: 3px;
}

.client-quote {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.client-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.8rem;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.client-flat {
    font-size: 0.78rem;
    color: var(--emerald);
    font-weight: 600;
}

.testimonials-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .testimonials-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Showcase Box */
.video-showcase-box,
.video-box-wrap {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%),
        var(--card-navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-box-left h3,
.video-box-wrap h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.video-box-left p,
.video-box-wrap p {
    color: var(--text-slate);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-wrapper,
.video-player-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: #000000;
}

.video-wrapper video,
.video-player-container video {
    width: 100%;
    height: auto;
    max-height: 320px;
    display: block;
    object-fit: cover;
}

/* Client Gallery Grid (Photo Wall on clients.html) */
.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    background: #000000;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--saffron);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #ffffff;
}

/* ══════════════════════════════════════════════════
   16. LOCATION ADVANTAGE & MAP
   ══════════════════════════════════════════════════ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-points-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.loc-point-item {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: var(--transition-smooth);
}

.loc-point-item:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateX(6px);
}

.loc-time-badge {
    background: rgba(249, 115, 22, 0.15);
    color: var(--saffron);
    border: 1px solid rgba(249, 115, 22, 0.3);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.loc-point-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.loc-point-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.location-map-card,
.map-card-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    height: auto;
}

/* ══════════════════════════════════════════════════
   17. CONTACT PAGE CARDS & LAYOUT
   ══════════════════════════════════════════════════ */
.contact-section-wrap {
    padding: 5rem 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--saffron);
}

.contact-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem auto;
}

.contact-info-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-slate);
    line-height: 1.5;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: stretch;
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE STORY, VALUES & TIMELINE
   ══════════════════════════════════════════════════ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: stretch;
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-card);
}

.story-img-wrap {
    height: 100%;
    min-height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #0b132b;
    display: flex;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.story-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.story-content p {
    font-size: 0.98rem;
    color: var(--text-slate);
    line-height: 1.7;
}

.values-section,
.timeline-section {
    padding: 5rem 0;
}

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

.value-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--saffron);
    box-shadow: var(--shadow-card);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.4rem auto;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--saffron);
    color: #ffffff;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-slate);
    line-height: 1.6;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    max-width: 850px;
    margin: 0 auto;
}

.timeline-item {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-smooth);
}

.timeline-item:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateX(8px);
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--saffron);
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.timeline-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.timeline-info p {
    font-size: 0.88rem;
    color: var(--text-slate);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   18. SITE VISIT BOOKING & LEAD FORM
   ══════════════════════════════════════════════════ */
.booking-section {
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.08) 0%, transparent 60%),
        var(--primary-navy);
}

.booking-card {
    background: rgba(22, 30, 54, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.booking-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.booking-info p {
    color: var(--text-slate);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #ffffff;
}

.perk-item i {
    color: var(--emerald);
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-slate);
}

.form-control {
    background: rgba(11, 19, 43, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-control:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

/* Date Picker Full-Clickable */
input[type="date"],
input[type="date"].form-control {
    cursor: pointer !important;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer !important;
    padding: 4px;
    filter: invert(0.85);
}

.btn-submit-form {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #ffffff;
    font-weight: 800;
    padding: 0.95rem;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    transition: var(--transition-smooth);
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.6);
}

/* Contact Page Dedicated Card */
.contact-form-container-card {
    background: rgba(22, 30, 54, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0.6rem 0 0.4rem 0;
}

.contact-form-header p {
    font-size: 0.92rem;
    color: var(--text-slate);
    margin: 0;
}

/* ══════════════════════════════════════════════════
   19. COMPREHENSIVE WHITE THEME FOOTER
   ══════════════════════════════════════════════════ */
.footer {
    background: #ffffff;
    border-top: 1px solid var(--border-subtle);
    padding: 4.5rem 0 2rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
}

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

.footer-about,
.footer-col.brand-col {
    display: flex;
    flex-direction: column;
}

.footer-about .brand-logo-wrap,
.footer-col.brand-col .footer-logo,
.footer-col .brand-logo-wrap {
    margin-bottom: 1.35rem;
    display: inline-block;
}

.footer-about p,
.footer-col.brand-col p {
    margin: 0 0 1.6rem 0;
    line-height: 1.75;
    color: #475569;
    font-size: 0.88rem;
}

.footer-about .social-icons,
.footer-col.brand-col .social-icons {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.2rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid var(--border-subtle);
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-col h4,
.footer h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after,
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--saffron);
}

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

.footer-links a {
    color: var(--text-body);
    font-size: 0.86rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.86rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-body);
}

.footer-contact-item i {
    color: var(--saffron);
    margin-top: 4px;
}

.rera-disclaimer {
    background: #f8fafc;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    font-size: 0.78rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.8rem;
    font-size: 0.82rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom strong {
    color: var(--text-dark);
}

.footer-bottom a {
    color: #64748b;
}

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

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--saffron);
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════
   20. FLOATING ACTION BUTTONS
   ══════════════════════════════════════════════════ */
.floating-action-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.float-btn.whatsapp {
    background: #25D366;
    position: relative;
    animation: pulseWhatsApp 2s infinite ease-in-out;
}

.float-btn.whatsapp:hover {
    transform: scale(1.12);
    animation: none;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

.float-btn.call {
    background: #1d4ed8;
    position: relative;
    animation: pulseCall 2s infinite ease-in-out 1s;
}

.float-btn.call:hover {
    transform: scale(1.12);
    animation: none;
    box-shadow: 0 12px 35px rgba(29, 78, 216, 0.65);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 25px rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.35);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }
}

@keyframes pulseCall {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7), 0 8px 25px rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(29, 78, 216, 0), 0 8px 25px rgba(0, 0, 0, 0.35);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(29, 78, 216, 0), 0 8px 25px rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }
}

.float-btn.back-to-top {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.float-btn.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ══════════════════════════════════════════════════
   21. MODAL POPUPS & LIGHTBOX
   ══════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 8, 20, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

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

.modal-card {
    background: #151e3a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--saffron);
}

.image-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 2rem;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background: #ffffff;
    padding: 10px;
}

/* ══════════════════════════════════════════════════
   22. HELPER UTILITY CLASSES
   ══════════════════════════════════════════════════ */
.text-saffron {
    color: var(--saffron) !important;
}

.text-saffron-light {
    color: var(--saffron-light) !important;
}

.text-white {
    color: #ffffff !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-slate {
    color: var(--text-slate) !important;
}

.text-emerald {
    color: var(--emerald) !important;
}

.font-outfit {
    font-family: 'Outfit', sans-serif !important;
}

.font-marathi {
    font-family: 'Tiro Devanagari Marathi', serif !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

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

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

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

.w-100 {
    width: 100% !important;
}

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

.gap-05 {
    gap: 0.5rem !important;
}

.gap-08 {
    gap: 0.8rem !important;
}

.gap-1 {
    gap: 1rem !important;
}

.gap-15 {
    gap: 1.5rem !important;
}

.gap-2 {
    gap: 2rem !important;
}

.mb-05 {
    margin-bottom: 0.5rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-15 {
    margin-bottom: 1.5rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-25 {
    margin-bottom: 2.5rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mt-05 {
    margin-top: 0.5rem !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-15 {
    margin-top: 1.5rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-35 {
    margin-top: 3.5rem !important;
}

/* ══════════════════════════════════════════════════
   23. RESPONSIVE MEDIA QUERIES
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .story-grid,
    .floorplan-box,
    .location-grid,
    .booking-card,
    .emi-container-box,
    .video-showcase-box,
    .video-box-wrap,
    .contact-main-grid,
    .featured-property-block,
    .featured-property-block.reversed,
    .featured-realexa-block,
    .location-split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-box {
        position: static;
        top: auto;
    }

    .clean-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .homeowner-photo-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .feature-circles-grid {
        justify-content: center;
        gap: 2rem;
    }

    .realexa-projects-grid,
    .projects-grid,
    .amenities-grid,
    .client-gallery-grid,
    .values-grid,
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .feat-main-heading {
        font-size: 2.1rem;
        margin-bottom: 2rem;
    }

    .feat-apartment-title {
        font-size: 1.65rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .realexa-projects-grid,
    .projects-grid,
    .amenities-grid,
    .client-gallery-grid,
    .values-grid,
    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .clean-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .homeowner-photo-card {
        flex: 0 0 calc(100% - 0.5rem);
        height: 300px;
    }

    .location-split-dark-box {
        padding: 3rem 1.5rem;
    }

    .loc-main-title {
        font-size: 2rem;
    }

    .featured-dual-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .feat-narrow-img-box {
        display: none;
    }

    .feat-main-img-box {
        height: 340px;
    }

    .featured-img-grid {
        grid-template-columns: 1fr;
    }

    .featured-img-card.second {
        display: none;
    }

    .client-card {
        flex: 0 0 100%;
    }

    .pillars-list,
    .form-grid,
    .flor-feature-list,
    .realexa-features-list,
    .fp-spec-list {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .btn-submit-form {
        grid-column: span 1;
    }

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

    .booking-card,
    .emi-container-box,
    .floorplan-box,
    .featured-property-block,
    .featured-realexa-block,
    .video-showcase-box,
    .video-box-wrap {
        padding: 1.5rem;
    }

    .brand-logo-img {
        height: 42px;
    }

    .bank-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .clean-gallery-grid {
        grid-template-columns: 1fr;
    }

    .feature-circle-disc {
        width: 150px;
        height: 150px;
    }
}

/* ══════════════════════════════════════════════════
   FEATURED PROPERTIES YOU'LL LOVE (REALEXA EXACT PARALLAX STYLE)
   ══════════════════════════════════════════════════ */
.featured-list-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.feat-header-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.feat-subtitle-top {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.feat-subtitle-top::before,
.feat-subtitle-top::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #cbd5e1;
}

.feat-main-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

.feat-main-heading em {
    font-family: 'Tiro Devanagari Marathi', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--saffron);
}

/* Row Block */
.featured-realexa-block {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5.5rem;
    position: relative;
}

.featured-realexa-block:last-child {
    margin-bottom: 0;
}

.featured-realexa-block.reverse {
    grid-template-columns: 1fr 1.15fr;
}

/* Single Main Image Box */
.featured-dual-images {
    display: block;
    width: 100%;
    height: 480px;
    position: relative;
    padding: 0;
}

.feat-main-img-box {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.feat-main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-realexa-block:hover .feat-main-img-box img {
    transform: scale(1.04);
}

.feat-loc-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: transform 0.3s ease;
}

.feat-loc-badge i {
    color: var(--saffron);
    font-size: 1rem;
}

.featured-realexa-block:hover .feat-loc-badge {
    transform: translateY(-4px);
}

/* White Luxury Details Card */
.featured-details-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 3rem 2.8rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.featured-details-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.feat-cat-pill {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 0.6rem;
}

.feat-apartment-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    margin: 0 0 1.2rem 0;
}

.feat-description {
    font-size: 0.94rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.feat-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.2rem;
}

.feat-spec-row {
    display: grid;
    grid-template-columns: 24px 110px 15px 1fr;
    align-items: center;
    font-size: 0.92rem;
    color: #475569;
}

.feat-spec-row i {
    color: var(--saffron);
    font-size: 0.95rem;
}

.feat-spec-row .spec-name {
    font-weight: 500;
    color: #64748b;
}

.feat-spec-row .spec-colon {
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
}

.feat-spec-row .spec-val {
    font-weight: 700;
    color: #0f172a;
}

/* Button More About Us with Circle Arrow */
.btn-feat-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 0.5rem 0.6rem 0.5rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-feat-more .feat-circle-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #a3623b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.35s ease;
}

.btn-feat-more:hover {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.btn-feat-more:hover .feat-circle-arrow {
    background: var(--saffron);
    transform: translateX(4px);
}

@media (max-width: 992px) {

    .featured-realexa-block,
    .featured-realexa-block.reverse {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        margin-bottom: 3.5rem;
    }

    .featured-dual-images {
        height: 380px;
    }
}

@media (max-width: 640px) {

    .featured-realexa-block,
    .featured-realexa-block.reverse {
        gap: 1.8rem;
        margin-bottom: 3rem;
    }

    .featured-dual-images {
        height: 270px;
        width: 100%;
    }

    .feat-main-img-box {
        height: 100%;
        width: 100%;
    }

    .featured-details-box {
        padding: 1.8rem 1.4rem;
    }

    .feat-main-heading {
        font-size: 1.95rem;
    }
}

/* ══════════════════════════════════════════════════
   13. PROPERTY OPPORTUNITIES CAROUSEL SLIDER (HOMEPAGE)
   ══════════════════════════════════════════════════ */
.opp-slider-wrap {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.opp-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 4px 24px 4px;
}

.opp-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.opp-slider-track .realexa-project-card {
    flex: 0 0 calc((100% - 4.5rem) / 4);
    min-width: 275px;
    margin: 0;
}

@media (max-width: 1280px) {
    .opp-slider-track .realexa-project-card {
        flex: 0 0 calc((100% - 3rem) / 3);
    }
}

@media (max-width: 992px) {
    .opp-slider-track .realexa-project-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 640px) {
    .opp-slider-track .realexa-project-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.opp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f172a;
    border: 2px solid var(--saffron);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.opp-nav-btn:hover {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
}

.opp-nav-btn.prev {
    left: -22px;
}

.opp-nav-btn.next {
    right: -22px;
}

@media (max-width: 768px) {
    .opp-nav-btn.prev {
        left: 4px;
    }

    .opp-nav-btn.next {
        right: 4px;
    }
}

/* ══════════════════════════════════════════════════
   14. PROJECT TITLE + VIEW MORE / DETAILS BUTTONS
   ══════════════════════════════════════════════════ */
.project-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.btn-view-details-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.85rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(249, 115, 22, 0.5);
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.25);
}

.btn-view-details-pill:hover {
    background: #ffffff;
    color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.45);
}

.btn-view-details-pill i {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.btn-view-details-pill:hover i {
    transform: translateX(3px);
}

/* Project Card Config Box */
.project-card-config-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: var(--text-slate);
}

.project-card-config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 4px;
}

.project-card-rera-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.74rem;
    padding-top: 5px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 4px;
}

/* ══════════════════════════════════════════════════
   15. DEDICATED PROJECT DETAIL PAGES
   ══════════════════════════════════════════════════ */
.project-hero-banner {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 4rem 0 3rem 0;
    margin-bottom: 2.5rem;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 16, 32, 0.4) 0%, rgba(10, 16, 32, 0.95) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.breadcrumb-nav a {
    color: var(--saffron);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.project-detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.project-detail-meta-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.project-detail-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.project-detail-meta-row i {
    color: var(--saffron);
}

/* Quick Specs Ribbon */
.specs-ribbon {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: -3.5rem;
    position: relative;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.spec-ribbon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-ribbon-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.spec-ribbon-label {
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.spec-ribbon-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

/* Detail Content Layout */
.project-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .project-detail-grid {
        grid-template-columns: 1fr;
    }
}

.detail-section-card {
    background: var(--card-navy);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.detail-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.detail-section-title i {
    color: var(--saffron);
    font-size: 1.2rem;
}

/* Pricing & Configuration Table */
.config-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0 1.5rem 0;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.4);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.config-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.config-table th {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 2px solid var(--saffron);
}

.config-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    white-space: nowrap;
}

.config-table tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

.config-table .highlight-price {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
}

.tax-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.4rem;
}

/* Amenities Grid on Detail Page */
.detail-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.detail-amenity-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.detail-amenity-card:hover {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-3px);
}

.detail-amenity-card i {
    font-size: 1.25rem;
    color: var(--saffron);
    flex-shrink: 0;
}

.detail-amenity-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f1f5f9;
}

/* Sidebar VIP Card */
.sidebar-vip-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid rgba(249, 115, 22, 0.4);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: sticky;
    top: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.sidebar-price-tag {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-price-val {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0.2rem 0 1.2rem 0;
}

.rera-verified-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.rera-verified-box i {
    font-size: 1.6rem;
    color: #10b981;
    flex-shrink: 0;
}

.rera-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
}

.rera-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    font-family: monospace;
}

/* Brochure Download Card */
.btn-download-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-download-brochure:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   21. MASTER COMPREHENSIVE MOBILE RESPONSIVENESS SUITE
   ══════════════════════════════════════════════════ */

/* Global Mobile Overflow Safeguard */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

/* Tablet & Mobile Breakpoint (<= 991px) */
@media (max-width: 991px) {
    .client-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }

    .video-showcase-box {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        padding: 2.5rem 2rem;
    }

    .emi-container-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.2rem 1.8rem;
    }

    .project-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar-vip-card {
        position: static;
        top: auto;
        margin-top: 1rem;
    }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {

    /* Top Bar - hide on mobile to free up precious vertical viewport */
    .top-bar {
        display: none !important;
    }

    /* Container Padding */
    .container {
        padding: 0 1.1rem;
    }

    /* Navbar Mobile Optimization */
    .navbar-inner {
        padding: 0.55rem 0;
    }

    .brand-logo-img {
        height: 42px;
        max-width: 160px;
    }

    .nav-actions {
        gap: 0.6rem;
    }

    .btn-site-visit {
        padding: 0.48rem 0.85rem;
        font-size: 0.78rem;
        gap: 0.35rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
        border-radius: 10px;
    }

    /* Compact Floating Action Bar - Never blocks mobile content */
    .floating-action-bar {
        bottom: 16px;
        right: 12px;
        gap: 8px;
        z-index: 990;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    }

    /* Project Details Hero & Ribbon */
    .project-detail-hero {
        padding: 4rem 0 3rem 0;
    }

    .project-detail-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .project-detail-meta-row {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .specs-ribbon {
        margin-top: 1.5rem;
        padding: 1.25rem 1.1rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .spec-ribbon-item {
        gap: 0.65rem;
    }

    .spec-ribbon-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .spec-ribbon-label {
        font-size: 0.72rem;
    }

    .spec-ribbon-value {
        font-size: 0.95rem;
    }

    /* Detail Section Cards & Content */
    .detail-section-card {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .detail-section-title {
        font-size: 1.25rem;
        margin-bottom: 0.9rem;
    }

    .detail-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .detail-amenity-card {
        padding: 0.8rem 0.9rem;
    }

    .detail-amenity-name {
        font-size: 0.82rem;
    }

    /* Pricing Table Mobile Handling */
    .config-table-wrap {
        margin: 1rem 0;
        border-radius: 8px;
    }

    .config-table {
        min-width: 480px;
        font-size: 0.85rem;
    }

    .config-table th,
    .config-table td {
        padding: 0.75rem 0.85rem;
        white-space: nowrap;
    }

    .sidebar-vip-card {
        padding: 1.6rem 1.2rem;
        border-radius: 14px;
    }

    .sidebar-price-val {
        font-size: 1.75rem;
    }

    /* Client Testimonials Slider (1 Card on Mobile) */
    .client-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .client-photo-wrap {
        height: 210px;
    }

    .client-content {
        padding: 1.2rem;
    }

    .client-quote {
        font-size: 0.85rem;
    }

    /* Footer Grid Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    /* Sections Padding */
    .section-padding {
        padding: 3.8rem 0;
    }

    .section-title {
        font-size: 1.95rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }
}

/* Small Smartphone Breakpoint (<= 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.9rem;
    }

    .brand-logo-img {
        height: 36px;
        max-width: 135px;
    }

    .btn-site-visit {
        padding: 0.42rem 0.65rem;
        font-size: 0.74rem;
        gap: 0.25rem;
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }

    .project-detail-title {
        font-size: 1.65rem;
    }

    .specs-ribbon {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1.1rem 0.9rem;
    }

    .detail-section-card {
        padding: 1.2rem 0.9rem;
    }

    .detail-section-title {
        font-size: 1.15rem;
    }

    .detail-amenities-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .feat-apartment-title {
        font-size: 1.55rem;
    }

    .feat-specs-list {
        gap: 0.7rem;
    }

    .feat-spec-row {
        font-size: 0.84rem;
        grid-template-columns: 20px 95px 15px 1fr;
    }

    .floating-action-bar {
        bottom: 12px;
        right: 10px;
        gap: 6px;
    }

    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }
}