:root {
            --primary-blue: #3b63f1;
            --accent-orange: #ff5c35;
            --text-dark: #1a1a1a;
            --bg-light: #f9fbff;
            --success-green: #10b981;
            --lime-btn: #c3e230;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

        body { 
            background-color: var(--bg-light);
            /* background-image: linear-gradient(#e5e7eb 1px, transparent 1px), linear-gradient(90deg, #e5e7eb 1px, transparent 1px); */
            background-size: 40px 40px;
        }

        /* Navbar */
        nav {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 8%; background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000;
        }
        .logo { font-weight: 800; font-size: 24px; color: var(--primary-blue); }
        .nav-links { display: flex; gap: 25px; list-style: none; }
        .nav-links a { text-decoration: none; color: #555; font-size: 14px; font-weight: 500; }
        .btn-market { background: var(--accent-orange); color: white; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; font-weight: 600; }
        .btn-access {
            background: #111827;
            color: white;
            padding: 20px 50px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            transition: 0.3s;
            margin: 15px 0px;
        }
        /* Hero Section */
        .hero {
            display: grid; grid-template-columns: 1fr 1fr;
            padding: 80px 8%; align-items: center; gap: 40px; min-height: 80vh;
        }
        .hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--text-dark); }
        .hero-text h1 span { color: var(--primary-blue); }
        .promo-box { background: #fff9e6; border-left: 4px solid #ffd43b; padding: 15px 20px; margin-bottom: 30px; border-radius: 4px; }
        .hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .feat-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #444; }
        .feat-item::before { content: "✓"; color: var(--success-green); font-weight: bold; border: 1px solid var(--success-green); border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: 10px; }

        /* Hero Visuals */
        .hero-visual { position: relative; }
        .dashboard-card { background: white; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); padding: 30px; width: 100%; }
        .cost-badge { position: absolute; top: -20px; left: -30px; background: white; padding: 15px 25px; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 15px; z-index: 2; }
        .chart-container { display: flex; align-items: flex-end; gap: 15px; height: 200px; margin-top: 20px; }
        .bar { background: linear-gradient(359deg, #db401d, #ff5d2a); width: 30px; border-radius: 4px 4px 0 0; }

        /* Features Section (From New Image) */
        .features-section { padding: 100px 8%; text-align: center; background: white; }
        .section-title { font-size: 2.5rem; margin-bottom: 60px; font-weight: 700; color: var(--text-dark); }
        .features-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px 30px; margin-bottom: 80px; }
        .feature-card { text-align: center; }
        .feat-header { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .feature-card p { font-size: 14px; line-height: 1.7; color: #666; }

        /* Footer Mini Bar */
        .mini-features { display: flex; justify-content: center; align-items: center; gap: 40px; font-weight: 600; color: #333; flex-wrap: wrap; }
        .live-demo-btn { background: var(--lime-btn); color: white; padding: 14px 35px; border-radius: 30px; border: none; font-weight: bold; cursor: pointer; box-shadow: 0 4px 15px rgba(195, 226, 48, 0.4); }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero { grid-template-columns: 1fr; text-align: center; }
            .hero-features { justify-content: center; }
            .features-container { grid-template-columns: repeat(2, 1fr); }
            .nav-links { display: none; }
        }
        @media (max-width: 600px) {
            .features-container { grid-template-columns: 1fr; }
            .mini-features { gap: 20px; }
            .feat-item { font-size: 12px; }
        }

/* ... existing styles ... */

    .subscription-section {
        background-color: #0a192f; /* Dark navy background from image */
        padding: 80px 8%;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        gap: 60px;
        color: white;
    }

    .sub-image-container {
        /*background: linear-gradient(135deg, #f09819 0%, #edde5d 100%); *//* Orange gradient backdrop */
        border-radius: 20px;
        padding: 40px;
        display: flex;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .mockup-img {
        width: 100%;
        max-width: 300px;
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    }

    .sub-content h4 {
        color: #e5e7eb;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .sub-content h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .sub-description {
        color: #cbd5e1;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .sub-feature-list {
        list-style: none;
        margin-bottom: 40px;
    }

    .sub-feature-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 1.1rem;
        color: white;
    }

    .sub-feature-list li::before {
        content: "✓";
        color: #10b981; /* Green check */
        font-weight: bold;
        font-size: 1.2rem;
    }

    .download-btn {
        background-color: #ff4d4d; /* Reddish-orange button */
        color: white;
        padding: 15px 40px;
        border-radius: 8px;
        border: none;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .download-btn:hover {
        transform: scale(1.05);
        background-color: #ff3333;
    }

    /* Floating WhatsApp Button (Bottom Right) */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    @media (max-width: 1024px) {
        .subscription-section {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .sub-feature-list li {
            justify-content: center;
        }
    }


/* Contact & Map Section */
.contact-container {
    padding: 80px 8%;
    background-color: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

.contact-header .highlight {
    color: #d93025; /* Red color from image */
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form Styling */
.lead-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-blue);
}

/* Map Styling */
.map-info-side {
    padding-top: 20px;
}

.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.address-text {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #000;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

:root {
            --primary-blue: #3b63f1;
            --accent-orange: #ff5c35;
            --dark-navy: #0a192f;
            --text-dark: #1a1a1a;
            --success-green: #10b981;
            --bg-light: #f9fbff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

        body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }

        /* --- Global Components --- */
        .btn-market { 
            background: var(--accent-orange); color: white; padding: 12px 25px; 
            border-radius: 8px; border: none; cursor: pointer; font-weight: 700; 
            transition: 0.3s;
        }
        .btn-market:hover { opacity: 0.9; transform: translateY(-2px); }

        /* --- Section 1: Dark Subscription (tapgro4.PNG) --- */
        .subscription-section {
            background-color: var(--dark-navy);
            padding: 80px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
            color: white;
        }
        .sub-visual {
            background: linear-gradient(135deg, #f09819 0%, #edde5d 100%);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            justify-content: center;
        }
        .sub-visual img { width: 100%; max-width: 280px; border-radius: 20px; }
        .sub-content h4 { color: #cbd5e1; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 10px; }
        .sub-content h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
        .sub-feature-list { list-style: none; margin: 25px 0; }
        .sub-feature-list li { 
            display: flex; align-items: center; gap: 12px; margin-bottom: 12px; 
        }
        .sub-feature-list li::before { 
            content: "✓"; color: var(--success-green); font-weight: bold; font-size: 1.2rem; 
        }

        /* --- Section 2: Premium Feature Grid (tapgrow6.PNG) --- */
        .features-grid-v2 {
            padding: 80px 8%;
            background: #fff;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .feature-card-v2 {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid #f0f0f0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: 0.3s;
        }
        .feature-card-v2:hover { transform: translateY(-10px); }
        .feature-card-v2 img { width: 50px; height: 50px; margin-bottom: 20px; }
        .feature-card-v2 h3 { margin-bottom: 15px; font-size: 1.3rem; }
        .feature-card-v2 p { color: #666; font-size: 0.95rem; }

        /* --- Section 3: Contact & Map (tapgro5.PNG) --- */
        .contact-container { padding: 80px 8%; background: #fff; }
        .contact-header { text-align: center; margin-bottom: 50px; }
        .contact-header h2 { font-size: 1.8rem; font-weight: 600; }
        .contact-header .red-text { color: #d93025; font-size: 2.2rem; display: block; margin-top: 5px; }

        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        .form-card { 
            background: #fff; padding: 30px; border-radius: 15px; 
            border: 1px solid #eee; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .form-group { margin-bottom: 18px; }
        .form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; outline: none;
        }
        .map-side { text-align: center; }
        .map-frame { 
            width: 100%; height: 350px; border-radius: 15px; overflow: hidden; 
            margin-bottom: 20px; border: 1px solid #eee;
        }
        .address-box { font-weight: 700; font-size: 1.1rem; color: #000; }

        /* Responsive */
        @media (max-width: 900px) {
            .subscription-section, .contact-grid { grid-template-columns: 1fr; }
            .sub-content { order: -1; text-align: center; }
            .sub-feature-list li { justify-content: center; }
        }

/* --- FAQ Section Styles --- */
.faq-container {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background-color: #fff;
    align-items: start;
}

.faq-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 15px;
    background-color: #f0f7ff; /* Light blue background from image */
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.faq-question .arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(90deg); /* Rotates to downward arrow */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #fff; /* White interior for the answer */
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 20px 25px 55px;
    border-top: 1px solid #e0efff;
}

@media (max-width: 900px) {
    .faq-container { grid-template-columns: 1fr; }
}

/* --- Footer Section --- */
footer {
    background-color: #050b16; /* Deepest navy/black */
    color: #ffffff;
    padding: 80px 8% 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #1e293b;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.footer-about p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-newsletter h4 {
    margin-bottom: 25px;
}

.newsletter-box {
    display: flex;
    gap: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1e293b;
    background: #0f172a;
    color: white;
    outline: none;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}



/************************* Popup Styles *****************************/

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-modal {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

.popup-header {
    background: linear-gradient(45deg, #ff5e2b, #f97316); /* Brand Orange */
    color: white;
    padding: 10px;
    position: relative;
    text-align: left;
}

.popup-header h2 { font-size: 1.5rem; margin-bottom: 5px; }
.popup-header p { font-size: 0.9rem; opacity: 0.9; }

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-form { padding: 30px; }

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px 15px;
}

.input-group .icon { margin-right: 15px; color: #888; }

.input-group input, .input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #0f172a; /* Dark Navy button */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}