/* 
  Godrej Kukatpally - Core CSS
  Adhering to SEO.txt 'Antigravity' Performance & Accessibility Specs
*/

:root {
    /* Colors */
    --primary: #854d0e;
    /* Luxury gold/brass feel */
    --secondary: #111111;
    /* Deep matte charcoal for high contrast royal aesthetic */
    --primary-hover: #b58d45;
    --bg-light: #f8fafc;
    --bg-soft: #fef3c7; /* Noble Gold tint for Homepage */
    --bg-white: #ffffff;
    --text-main: #334155;
    /* Minimum 4.5:1 contrast ratio against white */
    --text-muted: #64748b;
    --border: #e2e8f0;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-base-mobile: 16px;
    /* Spec: min 16px */
    --font-size-base-desktop: 18px;
    /* Spec: 18-20px */
    --line-height-base: 1.6;
    /* Spec: 1.5 or 1.6 */

    /* Spacing & Layout */
    --container-width: 1200px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* UX */
    --touch-target-min: 44px;
    --touch-target-min: 44px;
    /* Spec: min 44x44px */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* Page Specific Color Overrides (V3: Royal Warm Tones) */
body.page-price { --primary: #7f1d1d; --primary-hover: #450a0a; --bg-soft: #fef2f2; }
body.page-location { --primary: #9a3412; --primary-hover: #7c2d12; --bg-soft: #fff7ed; }
body.page-launch { --primary: #991b1b; --primary-hover: #7f1d1d; --bg-soft: #fef2f2; }
body.page-floor-plan { --primary: #2d241e; --primary-hover: #1a1614; --bg-soft: #f5f2ef; }
body.page-brochure { --primary: #78350f; --primary-hover: #451a03; --bg-soft: #fff7ed; }
body.page-amenities { --primary: #7c2d12; --primary-hover: #451a03; --bg-soft: #fff7ed; }
body.page-4bhk { --primary: #581c87; --primary-hover: #4c1d95; --bg-soft: #f5f3ff; }
body.page-3bhk { --primary: #9d174d; --primary-hover: #831843; --bg-soft: #fce7f3; }
body.page-blog { --primary: #701a75; --primary-hover: #4c0519; --bg-soft: #fdf2f8; }

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base-mobile);
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: var(--font-size-base-desktop);
    }
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    line-height: var(--line-height-base);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Accessibility - Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
}

/* Automatic Alternating Backgrounds */
main section:nth-of-type(even) {
    background-color: var(--bg-soft);
}

main section:nth-of-type(odd) {
    background-color: var(--bg-white);
}

/* Components: Buttons (Ensuring 44px touch targets) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(203, 160, 82, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 160, 82, 0.4);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Components: Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    max-width: 100% !important;
    padding: 0 80px;
}



.logo {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 400;
}

.logo strong {
    color: var(--primary);
}

/* Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-left: auto;
}


.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    min-height: var(--touch-target-min);
    /* Touch target compliance */
    display: flex;
    align-items: center;
    padding: 0 8px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Mobile Nav */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: var(--spacing-md) 0;
        z-index: 999;
        gap: 0;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px var(--spacing-lg);
        border-bottom: 1px solid var(--border);
        justify-content: flex-start;
    }

    .nav-links a:last-of-type {
        border-bottom: none;
    }

    .nav-links .btn {
        margin: var(--spacing-md) var(--spacing-lg);
        width: calc(100% - var(--spacing-lg) * 2);
    }

    .nav-container {
        position: relative;
    }
}

/* Components: Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

input,
select,
textarea {
    width: 100%;
    min-height: var(--touch-target-min);
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-white);
    color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(203, 160, 82, 0.2);
}

.hero {
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 160px 0 80px;
    position: relative;
    background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center;
}

.hero h1,
.hero p {
    color: var(--bg-white);
}

.hero span {
    color: var(--primary);
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text-minimal {
    background: rgba(203, 160, 82, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 24px 35px;
    border-radius: var(--radius-lg);
    display: inline-block;
    border: 1px solid rgba(203, 160, 82, 0.4);
    width: max-content;
    max-width: 90%;
    margin-bottom: 30px;
}

.hero-text-minimal h1 {
    font-size: 3.5rem;
    margin-bottom: 0px;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-text-minimal h1 {
        font-size: 2.2rem;
    }
    .hero-text-minimal {
        padding: 15px 25px;
    }
}

@keyframes pulse-pop {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(203, 160, 82, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(203, 160, 82, 0.7); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(203, 160, 82, 0.4); }
}

.btn-cta-pulse {
    font-weight: 800 !important;
    padding: 16px 50px !important;
    font-size: 1.25rem !important;
    letter-spacing: 0.1em;
    border-radius: 50px;
    animation: pulse-pop 2s infinite ease-in-out;
    border: 3px solid #fff !important;
    display: inline-block;
    background-color: var(--primary) !important;
    color: #fff !important; /* Changed from #000 as requested */
}

@media (max-width: 768px) {
    .btn-cta-pulse {
        padding: 12px 35px !important;
        font-size: 1.1rem !important;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 400px;
    }
}

.hero-form-card {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: none;
}

.hero-form-card h2 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* Footer Section */
.footer {
    background-color: var(--secondary);
    color: #f1f5f9;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    font-size: 0.85rem;
}

.footer h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 4px;
}

.footer a {
    color: #cbd5e1;
    min-height: auto;
    display: inline-flex;
    align-items: center;
    padding: 2px 0;
}

.footer a:hover {
    color: var(--primary);
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    font-size: 0.65rem;
    color: #64748b;
    opacity: 0.7;
    text-align: center;
}

/* Utilities & Specific Sections */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--spacing-md);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-lg {
    max-width: 800px;
}

/* Support legacy classes but point to dynamic variable */
.bg-light {
    background-color: var(--bg-soft) !important;
}

.section-title {
    margin-bottom: var(--spacing-lg);
    font-size: 2.2rem;
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.cards-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.4s ease;
}

.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.card.highlight {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(203, 160, 82, 0.15);
}

.card.highlight:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.feature-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.feature-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.feature-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

/* Ensure adequate touch padding for form inputs inside site-visit / hero */
input[type="date"],
input[type="time"] {
    width: 100%;
    min-height: var(--touch-target-min);
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

/* ====== Blurred Plan Cards ====== */
.plan-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding-bottom: var(--spacing-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
    padding: var(--spacing-sm) var(--spacing-md) 0;
}

.plan-card p {
    padding: 0 var(--spacing-md);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.plan-card .btn {
    margin: 0 var(--spacing-md) var(--spacing-sm);
    width: calc(100% - var(--spacing-md) * 2);
}

.plan-card-wide {
    max-width: 100%;
}

.plan-card-wide .plan-img-wrapper {
    aspect-ratio: 2 / 1;
}

.plan-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    padding: 20px; /* Added padding so images sit fully inside */
    background-color: var(--bg-light); /* Give the padded area a nice background */
}

.plan-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show the entire image without cropping */
    filter: blur(4px);
    transform: scale(1); /* Removed the 1.08 scale that was causing zoom cropping */
    transition: filter 0.3s ease;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.plan-card:hover .plan-img-wrapper img {
    filter: blur(3px);
}

/* SVG blur wrapper - prevents inspect bypass */
.plan-img-wrapper svg {
    width: 100%;
    height: 100%;
}

.plan-img-wrapper .svg-blur-wrap {
    width: 100%;
    height: 100%;
    transform: scale(1); /* Removed the 1.08 scale here as well */
}

.plan-blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 41, 59, 0.35);
}

.plan-blur-overlay span {
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ====== Popup Modal ====== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    padding: var(--spacing-md);
    animation: fadeIn 0.2s ease;
}

/* Hide sticky elements when popup is open */
body.popup-open .mobile-sticky-cta,
body.popup-open .whatsapp-float {
    display: none !important;
}

.popup-overlay.popup-closing {
    animation: fadeOut 0.2s ease forwards;
}

.popup-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.popup-card.popup-card-wide {
    max-width: 600px;
}

.popup-card h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.popup-card p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: var(--secondary);
}

.popup-message {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.success-msg {
    font-size: 1.1rem;
    color: #16a34a;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ====== Toast Notification ====== */
.toast-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.toast-notification.toast-error {
    background: #dc2626;
}

.toast-notification.toast-exit {
    animation: fadeOut 0.3s ease forwards;
}

/* ====== Hero Key Highlights ====== */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.hero-highlights span {
    background: rgba(203, 160, 82, 0.15);
    border: 1px solid rgba(203, 160, 82, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--bg-white);
    font-weight: 500;
}

.hero-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--spacing-sm) 0 var(--spacing-md);
}

.hero-price small {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #cbd5e1;
    margin-top: 4px;
}

/* ====== Project Highlights Section ====== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.highlight-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.highlight-item .icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.highlight-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ====== EOI Process Section ====== */
.eoi-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .eoi-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.eoi-step {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.4s ease;
}

.eoi-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.eoi-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.eoi-step h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.eoi-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.eoi-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(203, 160, 82, 0.08);
    border: 1px solid rgba(203, 160, 82, 0.2);
    border-radius: var(--radius-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.eoi-note strong {
    color: var(--primary);
}

.eoi-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.eoi-benefits li {
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

/* ====== Scarcity / Countdown Banner ====== */
.scarcity-banner {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: var(--bg-white);
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.scarcity-banner .scarcity-fire {
    color: #f59e0b;
}

.scarcity-banner .scarcity-count {
    color: #fff;
    font-size: 1.1rem;
}


/* ====== Sticky WhatsApp Button ====== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* ====== Exit Popup ====== */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: var(--spacing-md);
    animation: fadeIn 0.3s ease;
}

.exit-popup-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.exit-popup-card h2 {
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.exit-popup-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.exit-popup-card .scarcity-inline {
    display: inline-block;
    background: rgba(203, 160, 82, 0.1);
    border: 1px solid rgba(203, 160, 82, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-close:hover {
    color: var(--secondary);
}

/* ====== Master Plan Section ====== */
.masterplan-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .masterplan-content {
        grid-template-columns: 1fr 1fr;
    }
}

.masterplan-features {
    list-style: none;
}

.masterplan-features li {
    padding: var(--spacing-sm) 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.masterplan-features li::before {
    content: "\25cf";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ====== Clickable Image Wrapper ====== */
.plan-img-clickable {
    cursor: pointer;
    display: block;
}

.plan-img-clickable:hover .plan-blur-overlay {
    background: rgba(30, 41, 59, 0.5);
}

/* ====== What is EOI Section ====== */
.what-is-eoi {
    background: var(--bg-white);
}

.eoi-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

@media (min-width: 768px) {
    .eoi-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.eoi-info-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.eoi-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.eoi-info-card .icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.eoi-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.eoi-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ====== Land Acquisition & Press Release ====== */
.land-acquisition-section {
    background: var(--bg-light);
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

@media (min-width: 768px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.press-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.4s ease;
}

.press-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.press-card .icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.press-card h3 {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-sm);
}

.press-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.press-card ul {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.press-card ul li {
    padding: 4px 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-main);
}

.press-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ====== Site Progress Section ====== */
.site-progress-section {
    background: var(--bg-white);
}

.site-progress-content {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
}

.site-progress-content img {
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progress-badge {
    display: inline-block;
    background: rgba(203, 160, 82, 0.1);
    border: 1px solid rgba(203, 160, 82, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

/* ====== Cost Sheet Section ====== */
.cost-sheet-section {
    background: var(--bg-light);
}

.cost-sheet-content {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
}

.cost-sheet-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.5);
    padding-bottom: var(--spacing-md);
}

.cost-sheet-card .plan-img-wrapper {
    aspect-ratio: auto;
}

/* ====== Popup Disclosure Banner ====== */
.popup-disclosure {
    background: rgba(203, 160, 82, 0.1);
    border: 1px solid rgba(203, 160, 82, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    margin-bottom: var(--spacing-md);
    font-size: 0.82rem;
    color: var(--text-main);
    text-align: left;
    line-height: 1.5;
}

.popup-disclosure strong {
    color: var(--primary);
}

/* ====== Fixed Right Side CTA Bar ====== */
.fixed-cta-bar {
    display: none !important; /* User requested removal */
    position: fixed;

    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: auto;
    z-index: 900;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    gap: 2px;
}

.fixed-cta-bar .btn-cta {
    flex: none;
    border: none;
    border-radius: 8px 0 0 8px; /* Rounded corners on left */
    padding: 30px 4px; /* Massive vertical padding */
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg-white);
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
    width: 48px; /* Narrower for vertical text */
}

.fixed-cta-bar .btn-cta span:not(.fixed-cta-icon) {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    letter-spacing: 1px;
}

.fixed-cta-bar .btn-cta-1 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.fixed-cta-bar .btn-cta-2 {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fixed-cta-bar .btn-cta-3 {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.fixed-cta-bar .btn-cta:hover {
    filter: brightness(1.1);
    transform: translateX(-5px); /* pop out effect */
}

.fixed-cta-icon {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

/* Reset body padding */
body {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .fixed-cta-bar .btn-cta {
        font-size: 0.95rem;
        gap: 15px;
        padding: 40px 6px; /* Massive vertical padding for desktop */
        width: 56px;
    }
    .fixed-cta-icon {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    body {
        padding-bottom: 0;
    }
}

/* ====== Clickbait Elements (Urgency & Social Proof) ====== */

/* Toast Notifications */
.clickbait-toast {
    position: fixed;
    top: 100px; /* Moved to top-left, offset for header visibility */
    left: 20px;

    background: var(--bg-white);
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 4px solid var(--primary);
}

.clickbait-toast.show {
    transform: translateX(0);
}

.clickbait-toast-icon {
    font-size: 1.5rem;
    background: var(--bg-soft);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.clickbait-toast-content {
    font-size: 0.85rem;
    line-height: 1.4;
}

.clickbait-toast-content strong {
    display: block;
    color: var(--primary);
}

/* Countdown Timer */
.countdown-box {
    background: linear-gradient(135deg, #7f1d1d, #450a0a);
    color: #fff;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(127, 29, 29, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
}

.countdown-timer {
    display: flex;
    gap: 10px;
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 4px;
    min-width: 50px;
    color: #fff;
}

.timer-unit div,
.timer-unit span {
    color: #ffffff !important;
}

.timer-unit span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.8;
}


/* Aggressive Badges */
.badge-urgent {
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse-small 1.5s infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes pulse-small {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Mobile Sticky Footer CTA */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 12px;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
        z-index: 9998;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    /* Reduce blur on mobile so images don't appear black */
    .plan-img-wrapper img {
        filter: blur(2px) !important;
    }

    .plan-card:hover .plan-img-wrapper img {
        filter: blur(1.5px) !important;
    }

    .plan-blur-overlay {
        background: rgba(30, 41, 59, 0.20);
    }

    /* Full-screen popup on mobile – covers viewport, no scroll needed */
    .popup-overlay {
        padding: 0;
        align-items: stretch;
    }

    .popup-card,
    .popup-card.popup-card-wide {
        max-width: 100%;
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .popup-card h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .popup-card p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .popup-card .popup-disclosure {
        padding: 8px 12px;
        font-size: 0.88rem;
        margin-bottom: 10px;
    }

    .popup-card .form-group {
        margin-bottom: 10px;
    }

    .popup-card input,
    .popup-card select {
        min-height: 46px;
        padding: 10px 14px;
        font-size: 1.05rem;
    }

    .popup-card .btn {
        min-height: 48px;
        padding: 12px 20px;
        font-size: 1.1rem;
    }

    .popup-close {
        top: 10px;
        right: 12px;
        font-size: 1.8rem;
    }

    /* Exit popup also full-screen */
    .exit-popup-overlay {
        padding: 0;
    }

    .exit-popup-card {
        border-radius: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px 20px;
    }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* Enhanced Pulsing CTA */
.btn-ultra-pulse {
    position: relative;
    overflow: hidden;
}

.btn-ultra-pulse::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

/* ====== Hero Quick Action Buttons ====== */
.hero-quick-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 16px;
    background: linear-gradient(135deg, #1a1a1a, #2d241e);
    flex-wrap: wrap;
}

.hero-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    min-height: 48px;
}

.hero-quick-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-brochure {
    background: linear-gradient(135deg, #854d0e, #b58d45);
    box-shadow: 0 4px 15px rgba(133, 77, 14, 0.4);
}
.btn-brochure:hover { box-shadow: 0 8px 25px rgba(133, 77, 14, 0.5); }

.btn-3bhk {
    background: linear-gradient(135deg, #9d174d, #be185d);
    box-shadow: 0 4px 15px rgba(157, 23, 77, 0.4);
}
.btn-3bhk:hover { box-shadow: 0 8px 25px rgba(157, 23, 77, 0.5); }

.btn-4bhk {
    background: linear-gradient(135deg, #581c87, #7c3aed);
    box-shadow: 0 4px 15px rgba(88, 28, 135, 0.4);
}
.btn-4bhk:hover { box-shadow: 0 8px 25px rgba(88, 28, 135, 0.5); }

@media (max-width: 768px) {
    .hero-quick-btns {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }
    .hero-quick-btn {
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}
