/*
Theme Name: Kumar Prime View
Theme URI: https://kumarprimeview.co.in
Author: Kumar World
Author URI: https://kumarworld.in
Description: Premium Real Estate WordPress Theme for Kumar MagnaCity – Luxurious 1, 2, 3 BHK Flats & Branded Villa Plots in an integrated township at Hadapsar, Pune. Built for Google Ads landing page performance, lead generation, and SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: #
Text Domain: kumar-magnacity
Tags: real-estate, landing-page, one-page, lead-generation, responsive, custom-header
*/

/* =============================================
   KUMAR MAGNACITY WORDPRESS THEME
   Primary: #d5902a | Secondary: #be5421 | Dark: #1a1a2e
   ============================================= */

:root {
    /* ── CINEMATIC ORANGE PALETTE ── */
    --primary:    #FF6B00;
    --primary-dk: #E05A00;
    --primary-lt: #FF8C33;
    --secondary:  #FF9A3C;
    --orange-glow:rgba(255,107,0,0.35);

    /* ── SILVER / METALLIC HEADER ── */
    --silver:     #C8C8C8;
    --silver-lt:  #E8E8E8;
    --silver-dk:  #9A9A9A;
    --header-bg:  linear-gradient(135deg,#1C1C1C 0%,#2E2E2E 40%,#3A3A3A 60%,#1C1C1C 100%);
    --header-border: rgba(200,200,200,0.18);

    /* ── DARKS ── */
    --dark:       #0D0D0D;
    --dark2:      #181818;
    --dark3:      #222222;

    /* ── GOLD ACCENTS ── */
    --gold:       #FFB347;
    --gold-lt:    #FFD580;

    /* ── NEUTRALS ── */
    --white:      #ffffff;
    --off-white:  #FFF8F2;
    --text:       #1A1A1A;
    --text-lt:    #555555;
    --border:     #E8DDD4;

    /* ── UTILITY ── */
    --success:    #22C55E;
    --whatsapp:   #25D366;
    --shadow:     0 4px 24px rgba(255,107,0,0.12);
    --shadow-lg:  0 12px 48px rgba(255,107,0,0.2);
    --shadow-dk:  0 8px 40px rgba(0,0,0,0.4);
    --radius:     8px;
    --radius-lg:  16px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dk); }
ul { list-style: none; }
p { margin-bottom: 1rem; line-height: 1.75; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--dark); }

/* ---- UTILITY CLASSES ---- */
.container-fluid { width: 100%; padding: 0 15px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-primary { color: var(--primary) !important; }
.text-gold { color: var(--gold) !important; }
.bg-dark { background: var(--dark) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-off-white { background: var(--off-white) !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.w-100 { width: 100% !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.py-1 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-3 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.rounded { border-radius: var(--radius) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.overflow-hidden { overflow: hidden !important; }
.position-relative { position: relative !important; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(255,107,0,0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-lt), var(--primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,107,0,0.5);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,107,0,0.35);
}
.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
/* WhatsApp button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BD5A, #0E6B5E);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,107,0,0.6); }
    70%  { box-shadow: 0 0 0 14px rgba(255,107,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}
@keyframes pulseGreen {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---- SECTION STYLES ---- */
.section {
    padding: 60px 0;
}
.section-alt {
    background: var(--off-white);
}
.section-dark {
    background: var(--dark);
    color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
}
.section-title span { color: var(--primary); }
.section-subtitle {
    color: var(--text-lt);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
    margin: 12px 0 24px;
}
.section-divider.center { margin: 12px auto 24px; }

/* =============================================
   NAVBAR / HEADER — SILVER METALLIC CINEMATIC
   ============================================= */
#masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: var(--transition);
}
#masthead::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.04) 50%, transparent 100%);
    pointer-events: none;
}
#masthead.scrolled {
    background: linear-gradient(135deg,#0D0D0D 0%,#1C1C1C 50%,#0D0D0D 100%);
    box-shadow: 0 4px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,107,0,0.15);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.navbar-brand img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255,107,0,0.3));
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.navbar-nav .nav-link {
    color: var(--silver-lt);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 11px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-lt);
    background: rgba(255,107,0,0.1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    left: 8px; right: 8px;
}
/* CTA Brochure Nav Btn */
.navbar-nav .nav-link.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    color: #fff;
    padding: 8px 16px;
    box-shadow: 0 0 16px rgba(255,107,0,0.4);
}
.navbar-nav .nav-link.nav-cta::after { display: none; }
.navbar-nav .nav-link.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-lt), var(--primary));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255,107,0,0.6);
}
/* Metallic Phone display */
.navbar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--silver-lt);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 7px 14px;
    border: 1px solid rgba(200,200,200,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.navbar-phone i { color: var(--primary); font-size: 0.9rem; }
.navbar-phone:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(255,107,0,0.08);
}
/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
}
.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--silver-lt);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--primary); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--primary); }
/* Orange accent line at top of header */
#masthead::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--secondary) 50%, var(--primary) 70%, transparent 100%);
    box-shadow: 0 0 20px var(--orange-glow);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-section {
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}
.hero-slides {
    position: relative;
    width: 100%;
}
.hero-slide {
    display: none;
    position: relative;
    width: 100%;
}
.hero-slide.active { display: block; }
.hero-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.3) 60%, transparent 100%);
    display: flex;
    align-items: center;
}
.hero-content {
    padding: 40px 60px;
    max-width: 580px;
    color: #fff;
}
.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: slideInLeft 0.6s ease;
}
.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
    animation: slideInLeft 0.7s ease;
}
.hero-title span { color: var(--gold-lt); }
.hero-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}
.hero-price-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-lg);
    padding: 18px 24px;
    margin-bottom: 24px;
    animation: slideInLeft 0.9s ease;
}
.hero-price-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.hero-price-val { font-size: 1.9rem; font-weight: 700; color: #fff; }
.hero-price-val .rupee { font-size: 1.3rem; }
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease;
}
/* Slider controls */
.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.hero-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}
.hero-arrow:hover { background: var(--primary); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

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

/* =============================================
   FLOATING OFFER TICKER
   ============================================= */
.offer-ticker {
    background: linear-gradient(90deg, var(--dark), var(--dark2), var(--dark));
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.offer-ticker-inner {
    display: inline-block;
    animation: scrollTicker 30s linear infinite;
}
.offer-ticker span {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 600;
}
.offer-ticker span i { color: var(--gold); margin-right: 6px; }
@keyframes scrollTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   INFO / QUICK STATS BAR
   ============================================= */
.quick-stats {
    background: var(--dark);
    padding: 24px 0;
}
.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat-item {
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   ABOUT / OVERVIEW SECTION
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius);
}
.about-badge .num { font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 0.78rem; opacity: 0.9; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}
.about-feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.about-feature-item .label { font-weight: 600; font-size: 0.85rem; }
.about-feature-item .val { font-size: 0.8rem; color: var(--text-lt); }

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}
.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff7ee, #fff);
}
.pricing-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 16px; right: -24px;
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.pc-type {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.pc-area {
    font-size: 1rem;
    color: var(--text-lt);
    margin-bottom: 8px;
}
.pc-price {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.pc-price small { font-size: 0.85rem; font-weight: 400; color: var(--text-lt); }
.pc-cta {
    width: 100%;
    padding: 10px;
    font-size: 0.85rem;
}

/* =============================================
   FLOOR PLAN / MASTERPLAN
   ============================================= */
.floorplan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.fp-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}
.fp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fp-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: blur(6px);
    transition: var(--transition);
}
.fp-card:hover img { filter: blur(0); }
.fp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,26,46,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
.fp-label {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.fp-unlock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}
.fp-card:hover .fp-unlock { opacity: 1; }

/* =============================================
   AMENITIES SECTION
   ============================================= */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.amenity-card {
    text-align: center;
    padding: 20px 12px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.amenity-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.amenity-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(213,144,42,0.12), rgba(190,84,33,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}
.amenity-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 10px;
}
.amenity-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

/* Key highlights strip */
.highlights-strip {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    padding: 40px 0;
    margin: 40px 0;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.highlight-item { color: #fff; }
.highlight-item i {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}
.highlight-item .h-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.highlight-item .h-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-grid .g-item-tall {
    grid-row: span 2;
}
.g-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.g-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.g-item.g-item-tall img { height: 412px; }
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.g-item:hover .g-overlay {
    background: rgba(26,26,46,0.5);
}
.g-zoom-icon {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}
.g-item:hover .g-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* =============================================
   LOCATION SECTION
   ============================================= */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.location-map-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.location-map-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.location-map-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.location-map-overlay:hover { background: rgba(26,26,46,0.1); }
.connectivity-list { display: grid; gap: 10px; }
.conn-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}
.conn-item:hover {
    background: rgba(213,144,42,0.08);
    border-left-color: var(--secondary);
}
.conn-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}
.conn-left i { color: var(--primary); width: 18px; }
.conn-time {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(213,144,42,0.12);
    padding: 3px 10px;
    border-radius: 12px;
}

/* =============================================
   VIRTUAL TOUR SECTION
   ============================================= */
.vt-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.vt-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.vt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    transition: var(--transition);
}
.vt-wrap:hover .vt-overlay { background: rgba(26,26,46,0.65); }
.vt-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.vt-wrap:hover .vt-play {
    transform: scale(1.1);
    background: var(--secondary);
}
.vt-text {
    text-align: center;
}
.vt-text h3 { color: #fff; font-size: 1.5rem; }
.vt-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

/* =============================================
   DEVELOPER / ABOUT KUMAR REALTY
   ============================================= */
.developer-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}
.developer-logo img { height: 100px; }
.dev-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.dev-stat {
    text-align: center;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-bottom: 3px solid var(--primary);
}
.dev-stat .dv { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.dev-stat .dl { font-size: 0.8rem; color: var(--text-lt); }

/* RERA Box */
.rera-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.rera-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.rera-card img { width: 80px; height: 80px; object-fit: contain; }
.rera-card p { margin: 0; font-size: 0.85rem; }
.rera-card strong { color: var(--primary); }

/* =============================================
   LEAD FORM / SIDEBAR
   ============================================= */
.lead-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: #fff;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    z-index: 900;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.lead-sidebar-header {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    padding: 16px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lead-sidebar-header i { color: var(--gold); }
.lead-sidebar-body { padding: 16px; }
.lead-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.lead-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: left;
}
.lab-orange {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}
.lab-dark {
    background: var(--dark);
    color: #fff;
}
.lab-orange:hover, .lab-dark:hover { opacity: 0.9; transform: translateX(-2px); }

/* ---- FORM FIELDS ---- */
.km-form .form-group { margin-bottom: 10px; }
.km-form .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--text);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}
.km-form .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(213,144,42,0.12);
}
.km-form .phone-row {
    display: flex;
    gap: 0;
}
.km-form .country-select {
    width: 110px;
    flex-shrink: 0;
    border-radius: var(--radius) 0 0 var(--radius);
    border-right: none;
    font-size: 0.78rem;
    padding-left: 8px;
}
.km-form .phone-input {
    border-radius: 0 var(--radius) var(--radius) 0;
    flex: 1;
}
.km-form .btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin-top: 4px;
}
.km-form .btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* =============================================
   MODAL / POPUP
   ============================================= */
.km-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}
.km-modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.km-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.35s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.km-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.km-modal-left {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    padding: 36px 28px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.km-modal-left img { height: 60px; margin-bottom: 10px; }
.km-modal-left h3 { color: var(--gold-lt); font-size: 1.3rem; }
.km-modal-promises { display: flex; flex-direction: column; gap: 12px; }
.km-modal-promise {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
.km-modal-promise i { color: var(--gold); font-size: 1.1rem; width: 20px; }
.km-modal-right { padding: 36px 28px; }
.km-modal-right h3 { font-size: 1.1rem; margin-bottom: 4px; }
.km-modal-right p { color: var(--text-lt); font-size: 0.85rem; margin-bottom: 20px; }
.km-modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    z-index: 10;
}
.km-modal { position: relative; }

/* =============================================
   FLOATING ELEMENTS
   ============================================= */
/* Brochure float button */
.float-brochure {
    position: fixed;
    left: 16px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.float-brochure-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    animation: pulse 2.5s infinite;
}
.float-brochure-btn:hover { transform: rotate(180deg) scale(1.05); }

/* Mobile bottom bar */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    padding: 10px 16px;
    gap: 8px;
}
.mobile-cta-bar .mcb-btn {
    flex: 1;
    padding: 12px 8px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.mcb-call { background: var(--success); color: #fff; }
.mcb-enquire { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.mcb-whatsapp { background: #25D366; color: #fff; }

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: rgba(255,255,255,0.88);
    padding: 16px 20px;
    z-index: 1050;
    font-size: 0.85rem;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--gold); }
.cookie-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* =============================================
   FOOTER
   ============================================= */
#colophon {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}
.footer-main {
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand img { height: 70px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}
.footer-widget-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* Disclaimer section */
.disclaimer-section {
    background: var(--dark2);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.disclaimer-section p,
.disclaimer-section li {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    text-align: left;
    margin-bottom: 4px;
}
.disclaimer-section a { color: rgba(255,255,255,0.55); }
.disc-list { padding-left: 0; }
.disc-list li::before { content: '• '; color: var(--primary); }

/* =============================================
   TRUST BADGES SECTION
   ============================================= */
.trust-section {
    background: linear-gradient(90deg, rgba(213,144,42,0.06), rgba(190,84,33,0.06));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}
.trust-item i { font-size: 1.4rem; color: var(--primary); }

/* Hero mobile/desktop image switching handled via <picture> tag */

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 1024px) {
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); z-index: 999; gap: 4px; }
    .navbar-nav.open { display: flex; }
    .navbar-nav .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--radius); }
    .navbar-toggle { display: flex; }
    .navbar-phone { display: none; }

    .hero-slide img { height: 320px; }
    .hero-content { padding: 20px 24px; max-width: 100%; }
    .hero-title { font-size: 1.9rem; }

    .about-grid,
    .location-grid,
    .floorplan-grid { grid-template-columns: 1fr; }

    .quick-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

    .pricing-cards { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .g-item-tall { grid-row: span 1; }
    .g-item.g-item-tall img { height: 200px; }

    .highlights-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .lead-sidebar { display: none; }
    .mobile-cta-bar { display: flex; }

    .km-modal-inner { grid-template-columns: 1fr; }
    .km-modal-left { display: none; }

    .section { padding: 40px 0; }
    .section-title { font-size: 1.55rem; }
    .dev-stats { grid-template-columns: repeat(2, 1fr); }
    .rera-grid { grid-template-columns: 1fr; }
    .trust-items { gap: 20px; }
    .float-brochure { display: none; }
}

@media (max-width: 480px) {
    .pricing-cards { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 1.5rem; }
    .hero-ctas .btn { width: 100%; }
    .hero-ctas { flex-direction: column; }
    .about-features { grid-template-columns: 1fr; }
    .dev-stats { grid-template-columns: 1fr 1fr; }
    .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   PAGE BODY OFFSET
   ============================================= */
body { padding-bottom: 0; }
@media (max-width: 768px) { body { padding-bottom: 60px; } }

/* Smooth fade on scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   LIGHTBOX (simple overlay)
   ============================================= */
.km-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.km-lightbox.open { display: flex; }
.km-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    object-fit: contain;
}
.km-lightbox-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* =============================================
   WHATSAPP FLOATING BUBBLE
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.wa-bubble {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    cursor: pointer;
    transition: var(--transition);
    animation: pulseGreen 2.5s infinite;
    text-decoration: none;
}
.wa-bubble:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 32px rgba(37,211,102,0.7);
}
.wa-tooltip {
    background: var(--dark);
    color: #fff;
    padding: 7px 14px;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-dk);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    border-left: 3px solid var(--whatsapp);
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Call Float Button */
.call-float {
    position: fixed;
    bottom: 148px;
    right: 20px;
    z-index: 950;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.call-bubble {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,0,0.5);
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}
.call-bubble:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 32px rgba(255,107,0,0.7);
}

/* =============================================
   CINEMATIC SECTION DIVIDERS
   ============================================= */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 12px 0 24px;
    box-shadow: 0 0 12px rgba(255,107,0,0.4);
}
.section-divider.center { margin: 12px auto 24px; }

/* Glow text for headings */
.section-title span {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255,107,0,0.25);
}

/* Offer ticker update */
.offer-ticker {
    background: linear-gradient(90deg, #0D0D0D, #1A1A1A, #0D0D0D);
    border-bottom: 1px solid rgba(255,107,0,0.2);
}
.offer-ticker span i { color: var(--primary); }

/* Quick stats dark with orange */
.quick-stats { background: var(--dark2); }
.stat-value { color: var(--primary); text-shadow: 0 0 20px rgba(255,107,0,0.3); }
.stat-label { color: rgba(255,255,255,0.55); }

/* Pricing card border top */
.pricing-card::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 12px rgba(255,107,0,0.4);
}
.pricing-card.featured::after { background: var(--primary); }
.pc-type { background: linear-gradient(135deg, var(--primary), var(--primary-dk)); }

/* Section alt bg */
.section-alt { background: var(--off-white); }

/* Highlights strip */
.highlights-strip { background: linear-gradient(135deg, var(--dark), var(--dark2)); }
.highlight-item i { color: var(--primary); }

/* Lead sidebar header */
.lead-sidebar-header {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    border-bottom: 2px solid var(--primary);
}
.lead-sidebar-header i { color: var(--primary); }

/* Connectivity badge */
.conn-item { border-left-color: var(--primary); }
.conn-time { color: var(--primary); background: rgba(255,107,0,0.1); }

/* Developer stats */
.dev-stat { border-bottom-color: var(--primary); }
.dev-stat .dv { color: var(--primary); }

/* Footer */
#colophon { background: var(--dark); }
.footer-widget-title { border-bottom-color: var(--primary); }
.footer-social a:hover { background: var(--primary); }
.footer-links a:hover { color: var(--primary-lt); }

/* Mobile bottom bar update */
.mobile-cta-bar {
    background: var(--dark2);
    border-top: 2px solid rgba(255,107,0,0.3);
}
.mcb-call { background: linear-gradient(135deg,#22C55E,#16A34A); }
.mcb-enquire { background: linear-gradient(135deg,var(--primary),var(--primary-dk)); }
.mcb-whatsapp { background: linear-gradient(135deg,#25D366,#128C7E); }

/* Trust section */
.trust-section {
    background: linear-gradient(90deg, rgba(255,107,0,0.04), rgba(255,107,0,0.08), rgba(255,107,0,0.04));
    border-top: 1px solid rgba(255,107,0,0.15);
    border-bottom: 1px solid rgba(255,107,0,0.15);
}
.trust-item i { color: var(--primary); }

/* Form focus */
.km-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.km-form .btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    box-shadow: 0 4px 16px rgba(255,107,0,0.35);
}
.km-form .btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-lt), var(--primary));
    box-shadow: 0 8px 24px rgba(255,107,0,0.5);
}

/* Cookie banner orange accent */
.cookie-accept { background: var(--primary); }
.cookie-accept:hover { background: var(--primary-lt); }

/* About feature border */
.about-feature-item { border-left-color: var(--primary); }
.about-feature-item i { color: var(--primary); }

/* Amenity icon hover */
.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
}

/* VT play button */
.vt-play { background: var(--primary); box-shadow: 0 0 30px rgba(255,107,0,0.5); }

/* Footer bottom */
.footer-bottom-links a:hover { color: var(--primary-lt); }

/* Mobile nav dark */
@media (max-width: 768px) {
    .navbar-nav {
        background: linear-gradient(180deg, #1C1C1C, #0D0D0D);
        border-top: 2px solid rgba(255,107,0,0.3);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .navbar-nav .nav-link { color: var(--silver-lt); }
    .navbar-nav .nav-link:hover { color: var(--primary-lt); background: rgba(255,107,0,0.12); }
}

/* Hero price box glass */
.hero-price-box {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,107,0,0.3);
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
}

/* Brochure float */
.float-brochure-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dk));
    box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}

/* Hero badge */
.hero-badge { background: var(--primary); box-shadow: 0 0 16px rgba(255,107,0,0.4); }

/* Amenity grid section alt */
.amenity-card:hover { border-color: var(--primary); }

/* =============================================
   GALLERY GRID – FIXED SPACING & LAYOUT
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
    margin-bottom: 0; /* remove any inherited bottom margin */
}
.g-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--off-white);
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.g-item-tall {
    grid-row: span 2;  /* takes 2 rows = 200px*2 + 14px gap = 414px */
}
.g-item-tall img { height: 100%; }
.g-item:hover img { transform: scale(1.07); }
.g-item:hover .g-overlay { background: rgba(13,13,13,0.5); }
.g-item:hover .g-zoom-icon { opacity: 1; transform: scale(1); }
.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.g-zoom-icon {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}
/* Download button wrapper — clear float, proper gap from grid */
#gallery .text-center[style*="margin-top:36px"] {
    margin-top: 36px !important;
    padding-bottom: 4px;
}

/* Responsive gallery */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }
    .g-item-tall { grid-row: span 1; } /* flatten tall on mobile */
    .g-item img { height: 160px; }
    .g-item-tall img { height: 160px; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
    .g-item img { height: 130px; }
}
