/* --- 1. ROOT & RESET --- */
:root {
    --primary: #0f172a; 
    --secondary: #0ea5e9; 
    --accent: #f43f5e;
    --wa: #22c55e; 
    --wa-green: #25d366;
    --fb-blue: #1877f2;
    --bg: #f8fafc; 
    --white: #ffffff;
    --footer-bg: #020617;
    --success: #22c55e;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --shadow: 0 10px 25px rgba(0,0,0,0.05);
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
    -webkit-tap-highlight-color: transparent; 
}

body { 
    background: var(--bg); 
    color: var(--primary); 
    overflow-x: hidden; 
    line-height: 1.6; 
}

/* --- 2. NAVIGATION & HEADER --- */
nav {
    height: 75px; padding: 0 5%; background: var(--white); 
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08); 
    display: flex; justify-content: space-between; align-items: center;
}

.logo-box { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.nav-logo-img { 
    width: 48px; height: 48px; border-radius: 50%; 
    border: 2px solid var(--secondary); 
}

.brand-name { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.brand-name span { color: var(--secondary); }
.brand-sub { 
    display: block; font-size: 0.65rem; text-transform: uppercase; 
    color: var(--text-muted); letter-spacing: 2px; margin-top: -5px; 
}

.prime-nav-btn {
    position: relative; background: linear-gradient(135deg, var(--secondary) 0%, #0284c7 100%);
    color: white; padding: 12px 24px; border-radius: 50px; text-decoration: none;
    font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3); overflow: hidden; transition: 0.4s;
}

.btn-glow { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(255, 255, 255, 0.2); filter: blur(15px); 
    transform: translateX(-100%); transition: 0.6s; 
}

.prime-nav-btn:hover .btn-glow { transform: translateX(100%); }
.prime-nav-btn i { animation: navPulse 1.5s infinite; }

@keyframes navPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* --- 3. MARQUEE & HERO --- */
.marquee-wrapper { background: var(--primary); overflow: hidden; height: 42px; display: flex; align-items: center; }
.marquee-content { display: flex; animation: scroll 25s linear infinite; white-space: nowrap; color: #fff; font-weight: 600; font-size: 0.85rem; }
.marquee-content span { padding: 0 40px; }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-section { background: var(--primary); color: #fff; text-align: center; padding: 30px 15px 60px; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
.promo-badge { background: var(--accent); padding: 6px 15px; border-radius: 50px; font-weight: 800; font-size: 0.7rem; display: inline-block; margin-top: 10px; }

/* --- 4. SEARCH & TEST GRID --- */
.search-box-wrapper { margin: -25px auto 30px; text-align: center; max-width: 600px; padding: 0 15px; position: relative; z-index: 100; }
#searchInput { width: 100%; padding: 15px 25px; border-radius: 50px; border: 2px solid var(--secondary); outline: none; box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2); transition: 0.3s; }

.container { max-width: 1200px; margin: auto; padding: 10px 15px; }

.test-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 20px; 
    margin-top: 30px; 
}

.test-card { 
    background: #fff; border-radius: 15px; padding: 20px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #eef2f6;
    transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between;
    animation: cardPulse 3.5s infinite ease-in-out;
}

.test-card:hover { transform: translateY(-8px); border-color: var(--secondary); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

@keyframes cardPulse { 0%, 100% { box-shadow: 0 0 10px rgba(14, 165, 233, 0.1); } 50% { box-shadow: 0 0 25px rgba(14, 165, 233, 0.25); } }

.test-cat-tag {
    font-size: 0.7rem; font-weight: 700; color: var(--secondary);
    background: #e0f2fe; padding: 4px 10px; border-radius: 5px;
    width: fit-content; margin-bottom: 10px; text-transform: uppercase;
}

.btn-book-sm {
    background: var(--primary); color: white; border: none;
    padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer;
}

/* --- 5. PACKAGE SLIDER --- */
.hero-package-slider { padding: 60px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); overflow: hidden; width: 100%; }
.slider-wrapper { width: 100%; max-width: 1240px; margin: auto; overflow: hidden; position: relative; padding: 20px 0; }
.package-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }

.package-card {
    flex: 0 0 calc(33.33% - 20px); margin: 0 10px; background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); border-radius: 24px; padding: 60px 25px 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: var(--shadow);
    position: relative; text-align: center; transition: 0.3s;
}

.package-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15); }
.package-card.premium { border: 2px solid var(--secondary); background: #f0f9ff; }

.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--success); color: white; padding: 4px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.pkg-badge.gold { background: #f59e0b; }

.new-price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; margin-right: 10px; }

.pkg-features { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.pkg-features li { margin-bottom: 10px; font-size: 0.9rem; color: var(--text-main); }
.pkg-features i { color: var(--success); margin-right: 8px; }

.btn-pkg-anim {
    width: 100%; padding: 14px; background: var(--secondary); color: white; border: none;
    border-radius: 12px; font-weight: 800; cursor: pointer; display: flex;
    justify-content: center; align-items: center; gap: 10px; transition: 0.3s; margin-top: 15px;
}
.btn-pkg-anim:hover { background: #0284c7; gap: 15px; box-shadow: 0 8px 15px rgba(14, 165, 233, 0.3); }

/* --- 6. MODALS & FORMS --- */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 5000; align-items: center; justify-content: center; padding: 20px; }
.modal-card { background: #fff; padding: 25px; border-radius: 20px; width: 95%; max-width: 500px; text-align: center; border-top: 8px solid var(--secondary); max-height: 90vh; overflow-y: auto; }

.input-field { margin-bottom: 15px; text-align: left; }
.input-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; }

input, textarea, select { width: 100%; padding: 12px; margin-top: 5px; border-radius: 10px; background: #f1f5f9; border: 1.5px solid transparent; outline: none; transition: 0.3s; font-size: 1rem; }
input:focus { border-color: var(--secondary); background: #fff; }

.input-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; text-align: left; }

.btn-book-styled { 
    width: 100%; padding: 12px; font-weight: 700; cursor: pointer; border: none; border-radius: 14px;
    background: linear-gradient(135deg, var(--wa-green) 0%, #16a34a 100%); color: #fff; 
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); animation: btnPulse 2s infinite;
}

@keyframes btnPulse { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } }

/* --- 7. QR & RECEIPT --- */
.qr-container { background: #f8fafc; padding: 20px; border-radius: 20px; margin: 15px 0; border: 1px solid #e2e8f0; display: flex; justify-content: center; }
.timer-box { background: #fef2f2; color: #ef4444; padding: 10px; border-radius: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; border: 1px dashed #fca5a5; }

.receipt-auth-section { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 30px; }
.digital-stamp { width: 80px; height: 80px; border: 3px double #1e40af; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #1e40af; transform: rotate(-15deg); opacity: 0.8; font-weight: 900; font-size: 0.7rem; }

/* --- 8. FOOTER --- */
.main-footer { background: var(--footer-bg); color: #cbd5e1; padding: 70px 20px 20px; border-top: 4px solid var(--secondary); margin-top: 50px; position: relative; }
.footer-container { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }

.footer-logo { color: var(--secondary); font-size: 2rem; margin-bottom: 15px; font-weight: 800; }
.brand-desc { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

.footer-col h3 { color: #fff; margin-bottom: 25px; font-size: 1.3rem; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--secondary); }

.footer-socials { display: flex; gap: 15px; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--secondary); transition: 0.3s; font-size: 1.2rem; text-decoration: none; }
.social-icon:hover { background: var(--secondary); color: white; transform: translateY(-5px); }

.footer-bottom { text-align: center; padding: 25px 10px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.05); background: var(--footer-bg); }
.footer-bottom p { color: #94a3b8; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom a.dev-name { color: var(--secondary) !important; text-decoration: none; font-weight: 800; }

.dev-links { display: inline-flex; align-items: center; gap: 12px; margin-left: 5px; }
.dev-links a { text-decoration: none; font-size: 1.1rem; transition: 0.3s; }
.dev-links .fa-whatsapp { color: var(--wa-green) !important; }
.dev-links .fa-facebook { color: var(--fb-blue) !important; }

/* --- 9. SPECIAL ELEMENTS & FLOATING --- */
.wa-float { position: fixed; bottom: 30px; right: 30px; background: linear-gradient(135deg, var(--wa-green) 0%, #128c7e 100%); color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 9999; border: 2px solid #fff; animation: waP 2s infinite; text-decoration: none !important; }
@keyframes waP { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 100% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } }

.call-float { position: fixed; bottom: 90px; right: 20px; background: var(--secondary); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; transition: 0.3s; text-decoration: none; }

/* --- 10. RESPONSIVE --- */
@media (max-width: 1024px) { .package-card { flex: 0 0 calc(50% - 20px); } }

@media (max-width: 768px) {
    .main-footer { text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-socials { justify-content: center; }
    .package-card { flex: 0 0 calc(100% - 20px); }
}

@media (max-width: 600px) {
    .test-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px; }
    .test-card { padding: 12px; border-radius: 12px; }
    .test-card h3 { font-size: 0.85rem; min-height: 40px; }
    .test-card p { display: none; }
    .brand-name { font-size: 1.1rem; }
    .prime-nav-btn span { display: none; }
    .input-group-row { grid-template-columns: 1fr; }
    .modal-card { width: 100%; padding: 15px 12px; }
}

@media print {
    body * { visibility: hidden; }
    #receiptArea, #receiptArea * { visibility: visible; }
    #receiptArea { position: absolute; left: 0; top: 0; width: 100%; border: none !important; }
}
/* --- REFERRAL SECTION --- */
.refer-section {
    padding: 60px 0;
    background: var(--white);
}

.refer-card {
    background: #f0fdf4; /* Light green background */
    border: 2px dashed var(--success);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: 0.3s;
}

.refer-icon {
    font-size: 4rem;
    color: var(--success);
    animation: bounce 2s infinite;
}

.refer-text {
    flex: 1;
}

.refer-text h2 {
    color: #166534;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.refer-text p {
    color: #388e3c;
    font-size: 1rem;
}

.btn-refer {
    background: var(--success);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
    transition: 0.3s;
    white-space: nowrap;
}

.btn-refer:hover {
    transform: translateY(-3px);
    background: #16a34a;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- TESTIMONIAL SECTION --- */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    animation: slideTestimonials 40s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: var(--white);
    width: 320px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.testimonial-card:hover {
    animation-play-state: paused;
    border-color: var(--secondary);
    transform: scale(1.02);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonial-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars {
    color: #fb1;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-345px * 5)); } /* Adjust based on card width + gap */
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    border-left: 5px solid var(--secondary);
    transition: 0.3s;
}

.faq-item:hover {
    background: #f1f5f9;
    transform: translateX(10px);
}

.faq-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--secondary);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .refer-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .refer-icon {
        font-size: 3rem;
    }

    .refer-text h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-track {
        animation-duration: 25s;
    }
}
/* --- CONTACT SECTION STYLES --- */
.contact-section {
    padding: 80px 0;
    background: var(--bg);
}

.contact-card {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Left Blue Info Side */
.contact-info {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary) 0%, #0284c7 100%);
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Form Side */
.contact-form {
    flex: 1.4;
    padding: 60px 50px;
}

.contact-form .input-field {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: 0.3s;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
    }

    .contact-info {
        padding: 40px 30px;
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .contact-form {
        padding: 40px 25px;
    }
}

@media (max-width: 600px) {
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
/* --- GUIDE SECTION STYLES --- */

.guide-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

/* सेक्शन टाइटल के लिए अतिरिक्त स्टाइल (यदि पहले से नहीं है) */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ग्रिड लेआउट */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

/* गाइड आइटम (कार्ड) */
.guide-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.guide-item:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

/* स्टेप नंबर गोला (Badge) */
.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary) 0%, #0284c7 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
    z-index: 2;
}

/* आइकॉन स्टाइल */
.guide-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.guide-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* टेक्स्ट स्टाइल */
.guide-item h4 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guide-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- कनेक्टिंग लाइन्स (डेस्कटॉप के लिए) --- */
@media (min-width: 1024px) {
    .guide-item:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #cbd5e1;
        font-weight: bold;
    }
}

/* --- मोबाइल रिस्पॉन्सिव --- */
@media (max-width: 768px) {
    .guide-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .guide-grid {
        grid-template-columns: 1fr; /* मोबाइल पर एक के नीचे एक */
        gap: 40px;
    }

    .guide-item {
        padding: 30px 20px;
    }
}
/* --- FOOTER MAIN STYLES --- */
.main-footer {
    background: #0f172a; /* गहरा नेवी ब्लू */
    color: #e2e8f0;
    padding: 80px 0 20px;
    margin-top: 60px;
    border-top: 4px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

/* फूटर ग्रिड कंटेनर */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr; /* कॉलम चौड़ाई */
    gap: 50px;
    padding: 0 20px;
}

/* ब्रांड सेक्शन */
.footer-logo {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.brand-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 350px;
}

/* सोशल आइकन्स */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--secondary);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

/* क्विक लिंक्स */
.footer-col h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

/* वर्किंग ऑवर्स */
.hours-list {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.hours-list .day {
    font-weight: 600;
}

/* स्टेटस बैज (Now Open) */
.status-badge {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0px rgba(34, 197, 94, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #64748b;
}

/* डेवलपर क्रेडिट्स */
.dev-info {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dev-info span {
    color: #fff;
    font-weight: 600;
}

.dev-socials {
    display: flex;
    gap: 12px;
}

.dev-socials a {
    color: #64748b;
    transition: 0.3s;
    font-size: 1rem;
}

.dev-socials a:hover {
    color: var(--secondary);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .brand-desc {
        margin: 0 auto 30px;
    }

    .footer-socials, .footer-col h3::after {
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
.prime-nav-btn:hover {
    background: #0284c7 !important;
    transform: scale(1.05);
    transition: 0.3s;
}
/* पेज को थोड़ा और आधुनिक लुक देने के लिए */
body {
    background-color: #f1f5f9;
}
.info-card {
    border: 1px solid #e2e8f0;
}
@media (max-width: 600px) {
    .test-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* एक लाइन में 2 कार्ड */
        gap: 10px;
        padding: 10px;
    }
    .test-card {
        padding: 12px;
        font-size: 0.8rem;
    }
    .test-card h3 {
        font-size: 0.9rem;
        min-height: 40px;
    }
    .test-card p { display: none; } /* मोबाइल पर डिस्क्रिप्शन छुपाएं */
}
/* रूट लेवल पर डायनामिक फॉन्ट साइज */
:root {
    --base-font: 1rem;
}

@media screen and (max-width: 480px) {
    :root {
        /* मोबाइल पर स्क्रीन चौड़ाई के हिसाब से फॉन्ट एडजस्ट होगा */
        font-size: 3.8vw; 
    }
}

/* मास्टर ओवरले फिक्स */
#masterModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2vh 3vw; /* रिस्पॉन्सिव पैडिंग */
}

/* रिस्पॉन्सिव कार्ड */
.modal-card {
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    /* कीबोर्ड खुलने पर कटना रोकने के लिए max-height फिक्स */
    max-height: 92vh; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* स्क्रॉल होने वाला हिस्सा */
.modal-scroll-area {
    overflow-y: auto;
    padding: 1.25rem;
    flex: 1;
    /* मोबाइल ब्राउज़र के लिए स्मूथ स्क्रॉल */
    -webkit-overflow-scrolling: touch;
}

/* इनपुट फील्ड्स के लिए ऑटो साइज */
.modal-scroll-area input, 
.modal-scroll-area select, 
.modal-scroll-area textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem; /* यह रूट से लिंक है */
    outline: none;
}

/* बटन हमेशा नीचे फिक्स रहेगा */
.btn-submit-fixed {
    width: 100%;
    padding: 1.2rem;
    background: #10b981;
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
}
#mReceiptArea {
    text-align: left;
    border: 1px dashed #ccc;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 1rem;
    background: #fff;
    word-wrap: break-word; /* लंबा एड्रेस होने पर लाइन अपने आप बदल जाएगी */
    font-size: 0.9rem;
}
/* रसीद की सामान्य पंक्तियाँ */
.r-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 4px;
}

/* एड्रेस के लिए विशेष फिक्स: यह सेंटर में नहीं जाएगा */
.r-row-addr {
    display: flex;
    justify-content: space-between; /* लेफ्ट में Label, राइट में Address */
    align-items: flex-start;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 4px;
    text-align: right; /* टेक्स्ट को दाईं ओर अलाइन रखने के लिए */
}

.r-row-addr b {
    min-width: 80px;
    text-align: left;
}

.r-row-addr span {
    flex: 1;
    padding-left: 10px;
    word-break: break-word; /* लंबा पता होने पर लाइन तोड़ने के लिए */
}

.total-row {
    font-weight: bold;
    color: #0ea5e9;
    font-size: 1.1rem;
    border-top: 1px solid #eee;
    padding-top: 8px;
}
/* रसीद का मुख्य ओवरले */
#mReceiptSection {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* रसीद कार्ड: जो स्क्रीन की ऊंचाई के हिसाब से खुद को सेट करेगा */
#mReceiptSection .modal-card {
    background: #fff;
    width: 100%;
    max-width: 380px; /* चौड़ाई कम रखी है ताकि स्क्रीनशॉट अच्छा आए */
    max-height: 88vh; /* स्क्रीन की 88% ऊंचाई में ही सब कुछ फिट होगा */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* डायनामिक फॉन्ट साइज लॉजिक */
#mPrintArea {
    padding: 1.5vh 15px !important;
    /* vh यूनिट की मदद से फॉन्ट स्क्रीन के हिसाब से छोटा/बड़ा होगा */
    font-size: calc(11px + 0.4vh) !important; 
    line-height: 1.3 !important;
}

/* हेडर को छोटा (Compact) करना */
.receipt-success-header {
    background: #10b981;
    color: #fff;
    padding: 8px !important;
    text-align: center;
    flex-shrink: 0;
}

.receipt-success-header h2 {
    margin: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 800;
}

/* डिटेल्स की पंक्तियाँ */
.r-row, .r-row-addr {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6vh !important;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2px;
}

/* एड्रेस का अलाइनमेंट ठीक करना */
.r-row-addr {
    text-align: right;
    align-items: flex-start;
}

.r-row-addr b { min-width: 70px; text-align: left; }

