:root {
    --primary-color: #e35b1c;
    --primary-hover: #800000;
    --secondary-color: #f8b81d;
    --text-color: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(227, 91, 28, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(227, 91, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 91, 28, 0); }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Decorative Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 91, 28, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: float 10s infinite ease-in-out;
}

.blob-1 { top: -100px; left: -100px; animation-delay: 0s; }
.blob-2 { bottom: -100px; right: -100px; animation-delay: -5s; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}


/* Promo Banner */
.promo-banner {
    background: #ffd700;
    color: #800000;
    text-align: center;
    padding: 16px 20px;
    font-weight: 900;
    font-size: 1.4rem;
    position: relative;
    z-index: 99;
    border-bottom: 3px solid #001133;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.promo-banner i {
    margin-right: 10px;
    animation: heartbeat 2s infinite;
}

.highlight-20 {
    display: inline-block;
    background: #001133;
    color: #ffd700;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 1.2em;
    margin: 0 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: textPop 1.5s infinite alternate ease-in-out;
}

@keyframes textPop {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); box-shadow: 0 6px 15px rgba(0,0,0,0.3); }
}

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

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 91, 28, 0.3);
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Special Offer Banner */
.top-banner {
    background: linear-gradient(90deg, #e35b1c, #800000);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.top-banner span {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 10px;
    font-family: monospace;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center; /* Changed from flex-start to center */
    position: relative;
    padding: 80px 0 40px; /* Reduced padding */
    color: var(--bg-white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero .container {
    max-width: 100%;
    padding: 0 40px;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Allow clicks to pass through to video if needed, but card will override */
}

.hero-card {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 40px;
    transform: translateY(-50%);
    max-width: 340px; /* Sightly narrower */
    padding: 0;
    border-radius: 12px;
    background: #fff;
    color: #212529;
    text-align: center;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid #ddd;
    pointer-events: auto;
}

.side-panel-form {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    max-width: 350px; /* Slightly narrower */
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid #eee;
    z-index: 999;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.vendor-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%); /* Center it on top of form */
    background: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 0.8rem;
    font-weight: 700;
    color: #e35b1c;
    border: 1px solid #e35b1c;
    z-index: 10;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 8px #28a745;
}

.form-header h3 {
    font-size: 1.6rem;
    color: #e35b1c;
    margin-bottom: 5px;
}

.form-header p {
    color: #666;
    font-size: 0.9rem;
}

.interactive-form .form-group {
    margin-bottom: 18px;
}

.interactive-form input {
    height: 50px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.interactive-form input:focus {
    background: #fff;
    border-color: #e35b1c;
    box-shadow: 0 4px 12px rgba(227, 91, 28, 0.1);
    transform: translateY(-2px);
}

.interactive-form .btn-submit {
    height: 55px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.form-footer-note {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
}

/* Hero Section Updates to match provided image */
.pre-launch-header {
    background: #e35b1c;
    padding: 4px 0;
    margin-top: -1px;
}

.pre-launch-badge {
    background: #e35b1c;
    color: #fff;
    border: 1px solid #fff;
    padding: 2px 12px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.75rem;
}

.hero-card-body {
    padding: 10px 20px;
}

.hero-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #212529;
    margin: 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-location-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 1px;
}

.hero-by-brigade {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.hero-info-grid {
    background: #f8f9fa;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding: 6px 25px;
}

.info-label {
    font-weight: 500;
    color: #444;
    font-size: 0.8rem;
}

.info-value {
    font-weight: 800;
    color: #000;
    text-align: right;
    font-size: 0.8rem;
}

.hero-payment-plans {
    background: #e35b1c;
    color: #fff;
}

.pay-plan-row {
    padding: 4px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
    font-size: 0.8rem;
}

.pay-plan-row.highlight-row {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 800;
    font-size: 0.9rem;
    color: #ffd700; /* Gold color for emphasis */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.pay-plan-row:last-child {
    border-bottom: none;
}

.hero-price-section {
    padding: 8px 20px 5px;
}

.hero-config {
    font-size: 0.9rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3px;
}

.hero-price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
    color: #e35b1c;
}

.currency-symbol {
    font-size: 1.1rem;
    font-weight: 400;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
}

.price-unit {
    font-size: 1.2rem;
    font-weight: 400;
}

.price-onwards {
    color: #e35b1c;
    font-size: 1rem;
    font-weight: 500;
}

.hero-card .btn-enquire {
    background: #e35b1c;
    color: white;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #888;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    margin-bottom: 10px;
}

.hero-card-footer {
    padding: 0 12px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    line-height: 1.2;
}

.hero-card-footer {
    padding: 0 15px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #444;
    line-height: 1.3;
}

.hero-card-footer p {
    margin: 2px 0;
}


/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(227, 91, 28, 0.1);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.highlight-item p {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 1.5;
}

.subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    width: 100%;
    border-radius: 15px;
    transition: var(--transition);
}

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

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
}

.price-card.highlighted {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.area {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.amenity-item {
    text-align: center;
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 91, 28, 0.15);
}

.amenity-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.amenity-item:hover img {
    transform: scale(1.1);
}

.amenity-item p {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px;
    margin: 0;
    color: var(--primary-color);
    background: white;
    position: relative;
    z-index: 2;
}

/* Icon Amenities Grid */
.mt-5 {
    margin-top: 50px;
}

.icon-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    text-align: center;
}

.icon-amenity {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.icon-amenity i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.icon-amenity p {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.icon-amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 91, 28, 0.1);
}

.icon-amenity:hover i {
    transform: scale(1.1);
}

/* Plans */
.plan-card {
    text-align: center;
    padding: 50px;
    border-radius: 20px;
}

.plan-card h3 {
    margin-bottom: 30px;
}

.plan-img {
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Sticky CTA Mobile */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 900;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.landmark-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.landmark-group h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.landmark-list {
    list-style: none;
    margin: 10px 0;
}

.landmark-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
}

.landmark-list li span {
    color: var(--secondary-color);
    font-weight: 700;
    white-space: nowrap;
}

.map-embed {
    margin-top: 30px;
}

/* Removal of redundant sidebar form styles */

@media (max-width: 1200px) {
    .side-panel-form {
        display: block;
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 50px;
        padding: 20px;
    }
}

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

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Header Nav */
    header {
        padding: 5px 0;
    }
    nav {
        flex-wrap: wrap;
        gap: 8px;
    }
    .logo img {
        height: 28px;
    }
    .nav-actions .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        gap: 12px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar {
        height: 0px;
        background: transparent;
    }
    .nav-links a {
        font-size: 0.75rem;
    }

    /* Banners */
    .top-banner {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    .promo-banner {
        font-size: 1.1rem;
        font-weight: 900;
        padding: 12px 10px;
        line-height: 1.3;
    }
    
    /* Grids & Spacing */
    .overview-grid, .gallery-grid, .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landmark-tabs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .subtitle {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 20px;
        min-height: auto;
    }
    .hero-content {
        position: relative;
        display: flex;
        flex-direction: row;        /* Side by side */
        align-items: center;        /* Centered vertically */
        justify-content: center;
        text-align: left;           /* Left align text in narrow card */
        gap: 10px;
        padding: 15px 5px;
        height: auto;
        min-height: auto;
        z-index: 2;
        pointer-events: auto;
    }

    .hero-card {
        position: relative;
        top: 0;
        left: 0;
        flex: 1;                    /* Takes the remaining space */
        min-width: 0;               /* Allows words to wrap and not overflow */
        margin: 0;                  /* Reset margin since it's next to sticker */
        transform: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .hero-card-body {
        padding: 8px 10px;
    }
    .hero-main-title {
        font-size: 1.15rem;         /* Scaled down to fit side layout */
    }
    .hero-info-grid {
        padding: 6px 8px;
    }
    .info-label {
        font-size: 0.65rem;
    }
    .info-value {
        font-size: 0.7rem;
    }
    .pay-plan-row {
        font-size: 0.6rem;
        padding: 4px 6px;
    }
    .pay-plan-row.highlight-row {
        font-size: 0.65rem;
    }
    .hero-price-section {
        padding: 6px 10px;
    }
    .price-amount {
        font-size: 1.2rem;
    }
    .price-unit {
        font-size: 0.9rem;
    }
    
    .usp-sticker {
        position: relative !important;   /* Override 992px absolute/relative tricks */
        left: auto !important;
        top: auto !important;
        margin: 0 !important;            /* No auto margin pushing it away */
        transform: none !important;
        flex-shrink: 0;                  /* Prevent flex from squishing the circle */
        width: 130px !important;
        height: 130px !important;
        padding: 10px !important;
    }
    .percent-highlight {
        font-size: 1.4rem !important;
    }
    .sticker-main-line {
        font-size: 0.75rem !important;
    }
    .sticker-line {
        font-size: 0.6rem !important;
    }
    .sticker-subline {
        font-size: 0.5rem !important;
    }
    .sticker-highlight {
        font-size: 0.55rem !important;
        padding: 2px 8px !important;
        top: -6px !important;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .price-card {
        padding: 15px;
    }
    .price-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .price-tag {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    /* Amenities */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .amenity-item img {
        height: 100px;
    }
    .amenity-item p {
        font-size: 0.8rem;
        padding: 8px;
    }
    
    /* Plans */
    .plan-card {
        padding: 15px;
    }
    .plan-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    /* Sticky CTA */
    .sticky-cta {
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
    .cta-grid {
        gap: 5px;
    }
    .cta-grid .btn {
        padding: 8px 4px;
        font-size: 0.65rem;
        letter-spacing: -0.5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-radius: 8px;
    }
    .cta-grid .btn i {
        margin-right: 0;
        font-size: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 30px 0 70px; /* Extra bottom padding for sticky CTA */
    }
    .footer-content {
        gap: 10px;
    }
    .footer-disclaimer p {
        font-size: 0.7rem;
    }
    
    /* Modals */
    .modal-content {
        padding: 20px 15px;
        margin: 15% auto;
        width: 95%;
    }
    .modal-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 5px;
        padding: 10px 0;
    }
    .hero-card-body {
        padding: 6px 8px;
    }
    .pre-launch-badge {
        font-size: 0.6rem;
        padding: 1px 6px;
    }
    .hero-main-title {
        font-size: 0.95rem;
        margin: 2px 0;
    }
    .hero-location-text {
        font-size: 0.65rem;
    }
    .hero-by-brigade {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    .hero-info-grid {
        grid-template-columns: 1fr 1fr;
        padding: 4px 6px;
        gap: 2px;
    }
    .info-label {
        font-size: 0.55rem;
    }
    .info-value {
        font-size: 0.55rem;
        text-align: right;
        margin-bottom: 0;
    }
    .pay-plan-row {
        font-size: 0.5rem;
        padding: 2px 4px;
    }
    .pay-plan-row.highlight-row {
        font-size: 0.55rem;
    }
    .hero-price-section {
        padding: 5px 6px;
    }
    .hero-config {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    .price-amount {
        font-size: 1rem;
    }
    .price-unit {
        font-size: 0.75rem;
    }
    .price-onwards {
        font-size: 0.6rem;
    }
    .hero-price-display {
        margin-bottom: 5px;
    }
    .hero-card .btn-enquire {
        padding: 4px 10px !important;
        font-size: 0.65rem !important;
        margin-bottom: 4px !important;
    }
    
    .usp-sticker {
        width: 95px !important;
        height: 95px !important;
        padding: 5px !important;
        margin: 0 !important;
        border-width: 2px !important;
    }
    .percent-highlight {
        font-size: 1rem !important;
    }
    .sticker-main-line {
        font-size: 0.5rem !important;
    }
    .sticker-line {
        font-size: 0.45rem !important;
    }
    .sticker-subline {
        font-size: 0.4rem !important;
    }
    .sticker-highlight {
        font-size: 0.4rem !important;
        padding: 1px 5px !important;
        top: -4px !important;
        border-width: 1px !important;
    }
    
    .blur-overlay-content {
        padding: 15px;
    }
    .unlock-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .blur-overlay-content h3 {
        font-size: 1.1rem;
    }
    .blur-overlay-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 1400px) {
    .side-panel-form {
        display: none; /* Hide sticky panel when viewport gets narrower to avoid overlapping content */
    }
}

.modal-content {
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
}

.close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

input:focus {
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkbox-group input {
    margin-top: 4px;
}

/* Footer */
footer {
    background: #111;
    color: #eee;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
}



@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Best Seller Badge for Price Card */
.price-card.highlighted {
    position: relative;
    border-top: 4px solid var(--secondary-color);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(201, 166, 107, 0.3);
}

/* --- Conversion Optimization & Blurring --- */

.blurred-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
}

.blur-content {
    transition: filter 0.5s ease;
}

.blurred-container:not(.unlocked) .blur-content {
    filter: blur(15px);
    pointer-events: none;
    user-select: none;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: opacity 0.5s ease, visibility 0.5s ease;
    border-radius: 20px;
}

.blurred-container.unlocked .blur-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.blurred-container.unlocked .blur-content {
    filter: blur(0);
    pointer-events: auto;
    user-select: auto;
}

.blur-overlay-content {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.8s ease-out;
}

.unlock-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: float 3s infinite ease-in-out;
}

.blur-overlay-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blur-overlay-content p {
    color: #444;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Button Pop Animation */
@keyframes btn-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-pop {
    animation: btn-pop 2s infinite ease-in-out;
    display: inline-block;
}

.btn-pop:hover {
    animation-play-state: paused;
}

/* Custom styles for Whatsapp Icon */


/* Thank You Page Styles */
.thank-you-page {
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thank-you-container {
    width: 100%;
    max-width: 600px;
    z-index: 1;
}

.thank-you-card {
    padding: 60px 40px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out;
}

.thank-you-card h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.main-message {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.sub-message {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.action-buttons .btn {
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 576px) {
    .thank-you-card {
        padding: 40px 20px;
    }
    
    .thank-you-card h1 {
        font-size: 2.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

/* Header and CTA updates */
.nav-actions {
    display: flex;
    align-items: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

.btn-call {
    background-color: #800000; /* A slightly darker forest green for distinction */
    color: white !important;
}

.btn-call:hover {
    background-color: #001133;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
}

/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

/* USP Sticker Styles - Standalone Badge */
.usp-sticker {
    position: absolute;
    top: 15%;
    left: 390px; /* Adjusted to sit nicely next to the card */
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    padding: 25px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.5);
    animation: stickerPop 3s infinite ease-in-out;
    z-index: 100;
    border: 4px solid white;
    cursor: pointer;
    pointer-events: auto;
}

@keyframes colorBlink {
    0% { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    100% { color: #ffffff; text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}

.percent-highlight {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffd700; /* Vibrant Gold */
    display: block;
    margin: 2px 0;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    line-height: 1;
    animation: colorBlink 1.5s infinite alternate;
}

.sticker-content p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    text-transform: uppercase;
    width: 100%;
}

.sticker-line {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.sticker-subline {
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
    line-height: 1.1;
}

.sticker-main-line {
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 3px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.sticker-highlight {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e35b1c;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
    border: 2px solid white;
}

@keyframes stickerPop {
    0% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(-5deg); }
}

@media (max-width: 1200px) {
    .usp-sticker {
        left: 380px;
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .usp-sticker {
        position: relative;
        left: 0;
        top: 0;
        margin: 20px auto;
        width: 200px;
        height: 200px;
        transform: none;
        animation: stickerPulse 2s infinite ease-in-out;
    }
    
    @keyframes stickerPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
}
