﻿/* --- 1. Default Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-red: #8E2121;
    --gold: #D4AF37;
    --white: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   CLEAN HERO SECTION (NO BORDERS)
   ========================================= */

.hero-clean {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('../img/header_bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Nav Styling - Minimal */
.top-nav {
    padding: 25px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}

    .logo span {
        color: var(--gold);
    }

    .logo i {
        color: var(--gold);
    }

.nav-chat-link {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

    .nav-chat-link:hover {
        background: #25D366;
        border-color: #25D366;
    }

/* Hero Text Alignment & Size */
.hero-content-wrap {
    padding: 100px 0;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* Properly Scaled Headings */
.hero-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem; /* Large but clean */
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
}

    .hero-main-title span {
        color: var(--gold);
    }

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 400;
}

/* Action Buttons */
.hero-btn-group {
    display: flex;
    gap: 20px;
}

.btn-primary-red {
    background: var(--primary-red);
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(142, 33, 33, 0.3);
}

.btn-secondary-outline {
    background: rgba(255,255,255,0.05);
    border: 2px solid #fff;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

    .btn-secondary-outline:hover {
        background: #fff;
        color: #000 !important;
    }

/* Tablet & Mobile Adjustments */
@media (max-width: 992px) {
    .hero-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrap {
        text-align: center;
        padding: 60px 0;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .d-none-mobile {
        display: none;
    }

    .btn-primary-red, .btn-secondary-outline {
        width: 100%;
        text-align: center;
    }
}


/* =========================================
   REFINED QUICK ACCESS BAR
   ========================================= */

.quick-access-module {
    padding: 20px 0;
    margin-top: -40px; /* Hero section par halka overlap karne ke liye (Optional) */
    position: relative;
    z-index: 10;
}

/* Clean White Bar with Border */
.access-border-box {
    background: #ffffff;
    border: 1px solid #e0d5c1;
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
}

/* Individual Access Cards */
.access-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
    border-right: 1px solid #f0f0f0; /* Divider style */
}

    .access-card:last-child {
        border-right: none;
    }

    .access-card span {
        font-size: 0.8rem;
        font-weight: 700;
        color: #444;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* Icon Styling */
.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(142, 33, 33, 0.05);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

/* Emergency Red Style */
.emergency-link .icon-circle {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.pulse-red {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(231, 76, 60, 0.2);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
}

/* Hover Effects */
.access-card:hover {
    transform: translateY(-3px);
}

    .access-card:hover .icon-circle {
        background: var(--primary-red);
        color: #fff;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .access-border-box {
        padding: 15px 10px;
    }

    .access-card span {
        font-size: 0.65rem;
        text-align: center;
    }

    .icon-circle {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .access-grid {
        gap: 5px;
    }
}

/* =========================================
   REFINED SERVICES MODULE
   ========================================= */

.services-module {
    padding: 30px 0;
    background: #fdfaf5;
}

/* Main Outer Box */
.services-border-box {
    background: #ffffff;
    border: 1px solid #e0d5c1;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch; /* Cards equal height */
}

/* Individual Service Cards */
.service-card {
    background: #fcfcfc;
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
        box-shadow: 0 15px 35px rgba(142, 33, 33, 0.08);
    }

    /* Featured Card Style */
    .service-card.featured {
        border: 2px solid var(--gold);
        background: #fff;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    }

.pop-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 15px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

.s-icon {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 20px;
}

.s-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
    flex-grow: 1; /* Aligns price at bottom */
}

    .s-list li {
        font-size: 0.85rem;
        color: #555;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .s-list li i {
            color: #27ae60;
            font-size: 0.8rem;
        }

.s-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Small Buttons */
.btn-s-red {
    background: var(--primary-red);
    color: #fff !important;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
}

    .btn-s-red:hover {
        background: #333;
    }

/* Responsive */
@media (max-width: 768px) {
    .services-border-box {
        padding: 30px 15px;
    }
}

/* =========================================
   How It Works
   ========================================= */

.process-module {
    padding: 30px 0;
    background: #fdfaf5;
}

/* Consistent Border Box */
.process-border-box {
    background: #ffffff;
    border: 1px solid #e0d5c1;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
}

/* Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
}

/* Individual Step Cards */
.process-card {
    text-align: center;
    padding: 10px;
}

.p-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.p-icon {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1.5px solid #eee;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.p-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.process-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

/* Hover Effect */
.process-card:hover .p-icon {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(142, 33, 33, 0.08);
}

/* Footer Button */
.process-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f5f5f5;
}

.btn-process-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: #fff !important;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
}

    .btn-process-red:hover {
        background: #333;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

/* Responsive */
@media (max-width: 768px) {
    .process-border-box {
        padding: 30px 20px;
    }
}

/* =========================================
   REFINED FINAL CTA MODULE
   ========================================= */

.final-cta-module {
    padding: 30px 0px;
    background: #fdfaf5;
}

/* Consistent Border Box */
.cta-border-box {
    background: #ffffff;
    border: 1px solid #e0d5c1;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

    /* Subtle Background Symbol (Optional) */
    .cta-border-box::after {
        content: 'ॐ';
        position: absolute;
        bottom: -30px;
        right: -10px;
        font-size: 10rem;
        color: rgba(142, 33, 33, 0.03);
        font-family: 'Cinzel', serif;
        z-index: 1;
    }

.cta-header {
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: #666;
    max-width: 550px;
    margin: 15px auto 0;
}

/* Feature Pills Layout */
.cta-features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-f-item {
    font-size: 0.8rem;
    font-weight: 700;
    color: #444;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .cta-f-item i {
        color: var(--gold);
    }

/* Large WhatsApp Button */
.cta-action-area {
    position: relative;
    z-index: 2;
}

.btn-cta-whatsapp {
    background: #25D366;
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

    .btn-cta-whatsapp:hover {
        transform: scale(1.05);
        background: #1eb956;
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cta-border-box {
        padding: 40px 20px;
    }

    .cta-features-grid {
        gap: 10px;
    }

    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 1rem;
    }
}

/* =========================================
   REFINED TRUST MODULE
   ========================================= */

.trust-module {
    padding: 30px 0;
    background: #fdfaf5; /* Very subtle warm background */
}

/* The Main Outer Border Box */
.trust-border-box {
    background: #ffffff;
    border: 1px solid #e0d5c1; /* Subtle Goldish-Grey Border */
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Fixed Heading Size (Not too big) */
.trust-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem; /* Balanced size */
    color: #222;
    margin: 10px 0;
}

    .trust-title span {
        color: var(--primary-red);
    }

.trust-subtitle {
    font-size: 0.95rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.mini-badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
}

/* Grid Layout */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Individual Cards (Smaller & Clean) */
.trust-card {
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.t-icon {
    width: 50px;
    height: 50px;
    background: rgba(142, 33, 33, 0.05);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    border: 1px solid rgba(142, 33, 33, 0.1);
}

.trust-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .trust-border-box {
        padding: 30px 20px;
    }

    .trust-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   REFINED REVIEWS MODULE
   ========================================= */

.reviews-module {
    padding: 30px 0; 
    background: #fdfaf5;
}

/* The Main Outer Box Border */
.review-border-box {
    background: #ffffff;
    border: 1px solid #e0d5c1;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.review-header {
    text-align: center;
    margin-bottom: 40px;
}

.module-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem; /* Consistent with Trust section */
    color: #222;
    margin-top: 10px;
}

    .module-title span {
        color: var(--primary-red);
    }

/* Grid Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Review Card Styling (Clean & Minimal) */
.review-card {
    background: #fcfcfc;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

    .review-card:hover {
        background: #fff;
        border-color: var(--gold);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(142, 33, 33, 0.05);
    }

    .review-card .rating {
        color: #ffc107;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .review-card p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.6;
        font-style: italic;
        margin-bottom: 20px;
    }

/* Reviewer Info */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

    .reviewer-info img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

.reviewer-text h5 {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}

.reviewer-text span {
    font-size: 0.75rem;
    color: #999;
}

/* Bottom Status Bar */
.review-status-bar {
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    background: #fdfaf5;
    padding: 12px 25px;
    border-radius: 50px;
    display: table; /* Centers the block */
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.star-gold {
    color: #ffc107;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .review-border-box {
        padding: 30px 20px;
    }

    .module-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   FOOTER STYLING
   ========================================= */

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: #bbb;
    line-height: 1.8;
    max-width: 400px;
}

.footer-links h4, .footer-social h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 12px;
    }

        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: 0.3s;
        }

            .footer-links ul li a:hover {
                color: var(--gold);
                padding-left: 5px;
            }

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

        .social-icons a:hover {
            background: var(--gold);
            transform: translateY(-5px);
        }

.footer-contact-info {
    font-size: 0.9rem;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .footer-bottom p {
        font-size: 0.85rem;
        color: #777;
    }

    .footer-bottom a {
        color: var(--gold);
        text-decoration: none;
    }

/* =========================================
   WHATSAPP FLOAT STYLING
   ========================================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: 0.3s;
}

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .whatsapp-float:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    }

/* Mobile Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }

    .float-text {
        display: none; /* Mobile par sirf icon dikhega space bachane ke liye */
    }

    .whatsapp-float {
        padding: 15px;
        right: 20px;
        bottom: 20px;
    }
}

/* =========================================
   FULL SUPPORT SECTION CSS
   ========================================= */

.support-highlights-module {
    padding: 30px 0;
    background: #fff;
}

.support-border-box {
    background: var(--light-bg);
    border: 1px solid #e0d5c1;
    border-radius: 25px;
    padding: 50px;
    position: relative;
}

.support-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.support-text .module-title {
    font-size: 2.2rem;
    margin: 15px 0;
}

.support-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature Items */
.support-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

    .f-item i {
        font-size: 1.5rem;
        color: var(--primary-red);
        background: #fff;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .f-item h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #333;
    }

    .f-item p {
        font-size: 0.9rem;
        color: #777;
    }

/* Right Stats Card */
.support-stats-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.stat-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(142, 33, 33, 0.3);
}

.stat-list {
    margin: 25px 0;
    text-align: left;
    display: inline-block;
}

.s-check {
    margin-bottom: 12px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .s-check i {
        color: #25d366;
    }

.btn-full-support {
    display: block;
    background: var(--primary-red);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

    .btn-full-support:hover {
        background: #6d1919;
        transform: scale(1.03);
    }

/* Responsive */
@media (max-width: 992px) {
    .support-content-grid {
        grid-template-columns: 1fr;
    }

    .support-border-box {
        padding: 30px 20px;
    }
}

/* =========================================
   REFINED LEAD GENERATOR (PDF GUIDE)
   ========================================= */

.lead-module {
    padding: 30px 0;
    background: #fdfaf5;
}

/* Consistent Border Box with a Soft Gold Glow */
.lead-border-box {
    background: #ffffff;
    border: 1px solid #e0d5c1;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
    position: relative;
}

.lead-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.lead-content {
    flex: 1;
}

/* PDF Badge Style */
.pdf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(142, 33, 33, 0.05);
    color: var(--primary-red);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.lead-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
}

/* Form Styling */
.lead-action {
    flex: 1;
    max-width: 450px;
}

.lead-form-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

    .lead-form-inline input {
        flex: 1;
        padding: 14px 20px;
        border: 1px solid #eee;
        border-radius: 10px;
        font-size: 0.9rem;
        outline: none;
        transition: 0.3s;
    }

        .lead-form-inline input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

.btn-lead-gold {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

    .btn-lead-gold:hover {
        background: #333;
        transform: translateY(-2px);
    }

.spam-note {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .lead-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .lead-action {
        width: 100%;
    }

    .spam-note {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lead-form-inline {
        flex-direction: column;
    }

    .btn-lead-gold {
        width: 100%;
    }
}
/* =========================================
   DIVINE TEMPLES SLIDER (COMPLETE)
   ========================================= */

:root {
    --primary-red: #8E2121;
    --gold: #D4AF37;
    --light-bg: #fdfaf5;
}

.temples-slider-module {
    padding: 30px 0;
    background: var(--light-bg);
}

.temple-border-box {
    background: #fff;
    border: 1px solid #e0d5c1;
    border-radius: 24px;
    padding: 50px 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    overflow: hidden; /* Bahar nikalte cards ko rokne ke liye */
}

.temple-header {
    text-align: center;
    padding: 0 40px 40px 40px;
}

    .temple-header .module-title {
        font-family: 'Cinzel', serif;
        font-size: 2.2rem;
        color: #333;
        margin: 10px 0;
    }

        .temple-header .module-title span {
            color: var(--primary-red);
        }

.temple-subtitle {
    color: #777;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.mini-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* --- SLIDER CORE --- */

.slider-wrapper {
    width: 100%;
    position: relative;
    padding: 0px 10px;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    /* CARD KE BEECH KA GAP YAHAN HAI */
    gap: 25px;
    /* Side padding taaki cards border se chipke nahi */
    padding: 15px 40px 45px 40px;
    /* Scrollbar chhupana */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

    .slider-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

/* --- INDIVIDUAL CARD --- */

.slide-card {
    flex: 0 0 300px; /* Card width */
    min-width: 300px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    position: relative;
}

    .slide-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: var(--gold);
    }

.s-img-box {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    position: relative;
}

    /* Overlay for images */
    .s-img-box::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(transparent, rgba(0,0,0,0.2));
    }

.img-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.s-info {
    padding: 25px 20px;
    text-align: center;
}

    .s-info h4 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: #222;
    }

    .s-info p {
        font-size: 0.88rem;
        color: #666;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

        .s-info p i {
            color: var(--gold);
        }

/* WhatsApp Button */
.btn-s-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: 1.5px solid #25d366;
    color: #25d366;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-s-whatsapp:hover {
        background: #25d366;
        color: #fff;
    }

/* Scroll Hint */
.scroll-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #bbb;
    margin-top: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .scroll-hint i {
        animation: moveLeftRight 2s infinite;
    }

@keyframes moveLeftRight {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* --- RESPONSIVE SETTINGS --- */

@media (max-width: 768px) {
    .temples-slider-module {
        padding: 50px 0;
    }

    .temple-border-box {
        padding: 30px 0;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .slider-container {
        gap: 18px; /* Mobile par thoda kam gap */
        padding: 10px 20px 30px 20px;
    }

    .slide-card {
        flex: 0 0 270px;
        min-width: 270px;
    }

    .temple-header .module-title {
        font-size: 1.6rem;
    }
}

/* --- SLIDER DOTS CSS --- */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: var(--primary-red);
        width: 25px; /* Active dot lamba dikhega (capsule shape) */
        border-radius: 10px;
    }

/* Mobile par thoda gap kam */
@media (max-width: 768px) {
    .slider-dots {
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

        .dot.active {
            width: 20px;
        }
}