/* ===== SANATAN DARSHAN THEME ===== */
:root {
    --saffron: #FF8C42;
    --saffron-dark: #E67A2E;
    --saffron-light: #FFB366;
    --orange-bright: #FF6F00;
    --orange-deep: #E65100;
    --cream: #FFF8F0;
    --text-dark: #3D2B1F;
    --shadow-saffron: 0 20px 35px -12px rgba(255, 140, 66, 0.25);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF7ED 100%);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-title-elegant,
.title-sub-elegant {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF8C4210"><path d="M12 2L15 8.5L22 9.5L17 14L18.5 21L12 17.5L5.5 21L7 14L2 9.5L9 8.5L12 2z"/></svg>');
    background-repeat: repeat;
    background-size: 45px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* Spinner */
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.elegant-spinner {
    width: 55px;
    height: 55px;
    border: 5px solid #FFE0B5;
    border-top: 5px solid var(--saffron);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== HOVER ANIMATIONS ===== */
/* Navbar links hover animation */
.nav-link-elegant {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.nav-link-elegant:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Buttons hover animation */
.btn-primary-elegant,
.btn-outline-elegant,
.btn-app-elegant,
.btn-price-professional {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.btn-primary-elegant:hover,
.btn-outline-elegant:hover,
.btn-app-elegant:hover,
.btn-price-professional:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Stat cards hover animation */
.stat-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card:hover .stat-icon i {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Pricing cards hover animation */
.pricing-card-professional {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.pricing-card-professional:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

/* FAQ items hover animation */
.faq-item-new {
    transition: all 0.3s ease;
}

.faq-item-new:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Feature items hover animation */
.feature-item-elegant {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
}

.feature-item-elegant:hover {
    transform: translateY(-10px) scale(1.03);
}

/* Glass card hover */
.glass-card-elegant {
    transition: all 0.3s ease;
}

.glass-card-elegant:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px rgba(255, 140, 66, 0.2);
}

/* Hero content subtle hover */
.hero-content {
    transition: all 0.4s ease;
}

.hero-content:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 50px rgba(255, 140, 66, 0.3);
}

/* Footer links hover */
.footer-links-elegant a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-elegant a:hover {
    transform: translateX(8px);
    color: var(--saffron);
}

/* Back to top button hover */
.back-to-top-elegant {
    transition: all 0.3s ease;
}

.back-to-top-elegant:hover {
    transform: scale(1.1) translateY(-3px);
    background: var(--saffron-dark);
}

/* WhatsApp float hover */
.whatsapp-float-elegant {
    transition: all 0.3s ease;
}

.whatsapp-float-elegant:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Section headers underline animation */
.section-underline-elegant {
    transition: width 0.5s ease;
}

.section-header-elegant:hover .section-underline-elegant {
    width: 160px;
}

/* EXCLUDING download app images - no animation on app-icon-elegant images */
.app-icon-elegant {
    transition: none !important;
}

.app-icon-elegant:hover {
    transform: none !important;
    animation: none !important;
}

/* Navbar */
.navbar-elegant {
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--saffron);
}

.navbar-elegant .container-fluid {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar-brand-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.1rem;
}

.nav-link-elegant {
    color: var(--text-dark) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 18px !important;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
    background: var(--saffron);
    color: white !important;
}

.btn-primary-elegant {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-outline-elegant {
    border: 2px solid var(--saffron);
    background: transparent;
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--saffron);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

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

.action-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 15px;
}

@media (max-width: 1200px) {
    .navbar-nav .nav-link-elegant {
        padding: 8px 12px !important;
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .navbar-elegant .container-fluid {
        flex-wrap: wrap !important;
    }

    .navbar-collapse {
        margin-top: 10px;
    }

    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .action-buttons {
        margin-left: 0;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Hero Section */
.hero-elegant {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 950px;
    padding: 2.5rem;
    background: rgba(255, 248, 240, 0.88);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 140, 66, 0.5);
    margin: 2rem;
    box-shadow: var(--shadow-saffron);
}

.main-title-elegant {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E67A2E, #FF8C42, #FF6F00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-sub-elegant {
    font-size: 1.6rem;
    color: var(--saffron-dark);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-desc-elegant {
    color: #5A3E28;
    font-size: 1.05rem;
    margin: 1.5rem 0;
}

/* STATS SECTION */
.stats-wrapper {
    padding: 0.5rem 0;
    margin-top: -1rem;
}

.stats-modern {
    background: white;
    border-radius: 40px;
    padding: 0.8rem 1rem;
    margin: 0.5rem auto;
    border: 1px solid rgba(255, 140, 66, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    max-width: 95%;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}

.stat-card {
    text-align: center;
    padding: 0.3rem 0.8rem;
    min-width: 95px;
}

.stat-number-elegant {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--saffron-dark);
    font-family: 'Playfair Display';
}

.stat-label {
    color: #6B4C34;
    font-weight: 500;
    font-size: 0.7rem;
}

.stat-icon i {
    font-size: 1.2rem;
    color: var(--saffron);
    margin-bottom: 3px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 140, 66, 0.3);
    margin: 0 0.2rem;
}

.whatsapp-stat a {
    color: #25D366;
    text-decoration: none;
}

/* Download Apps Section */
.apps-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #FFF8F0, #FFF3E8);
    border-radius: 60px;
    margin: 2rem 1rem;
}

.section-header-elegant h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--saffron-dark);
    font-weight: 700;
}

.section-underline-elegant {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--orange-bright));
    margin: 0.8rem auto 2rem;
    border-radius: 4px;
}

.apps-grid-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 1rem;
}

.apps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.app-card-elegant {
    background: white;
    border-radius: 35px;
    padding: 2rem 0.5rem;
    text-align: center;
    width: 240px;
    transition: all 0.3s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.app-card-elegant:hover {
    transform: translateY(-10px);
    border-color: var(--saffron);
    box-shadow: 0 25px 40px rgba(255, 140, 66, 0.2);
}

.app-icon-elegant {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* NO HOVER ANIMATION ON APP ICONS - explicitly disabled */
.app-icon-elegant:hover {
    transform: none !important;
    animation: none !important;
}

.app-card-elegant h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 12px 0;
    color: var(--text-dark);
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-app-elegant {
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white;
    border: none;
}

/* Glass Card */
.glass-card-elegant {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid rgba(255, 140, 66, 0.25);
    box-shadow: var(--shadow-saffron);
}

/* Pricing Cards */
.pricing-section {
    padding: 3rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h2 {
    font-size: 2.6rem;
    color: var(--saffron-dark);
    font-weight: 700;
    text-align: center;
}

.pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card-professional {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.8rem;
    text-align: left;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 280px;
    position: relative;
    overflow: hidden;
}

.pricing-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--saffron), var(--orange-bright));
}

.pricing-card-professional.featured {
    border: 1px solid var(--saffron);
    background: linear-gradient(145deg, #FFFFFF, #FFFBF5);
    transform: scale(1.02);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--saffron-dark);
    font-family: 'Playfair Display';
    display: inline-block;
}

.price-features-elegant {
    padding-left: 0;
    margin: 1.5rem 0;
}

.price-features-elegant li {
    list-style: none;
    margin: 12px 0;
    color: #5A3E28;
    text-align: left;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features-elegant li i {
    color: var(--saffron);
    width: 20px;
}

.btn-price-professional {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-radius: 50px;
    padding: 12px 28px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

/* FAQ SECTION */
.faq-section-new {
    padding: 3rem 0;
}

.faq-item-new {
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--saffron);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-question-new {
    padding: 1.2rem 1.8rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: #5A3E28;
    font-size: 1rem;
    background: #FDF9F2;
}

.faq-question-new span i {
    color: var(--saffron);
    margin-right: 12px;
}

.faq-question-new .fa-chevron-down {
    color: var(--saffron);
    transition: transform 0.3s;
}

.faq-item-new.active .faq-question-new .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer-new {
    max-height: 0;
    padding: 0 1.8rem;
    overflow: hidden;
    transition: 0.3s ease;
    color: #7A5A44;
    background: white;
}

.faq-item-new.active .faq-answer-new {
    max-height: 250px;
    padding: 1.2rem 1.8rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(145deg, #FFF8F0, #FFF3E8);
    border-radius: 60px;
    margin: 2rem 1rem;
}

.feature-grid-elegant {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-item-elegant {
    text-align: center;
}

.feature-item-elegant img {
    width: 130px;
    height: 130px;
    background: white;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s ease;
}

.feature-item-elegant img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 140, 66, 0.2);
    border-color: var(--saffron);
}

.feature-caption {
    margin-top: 12px;
    font-weight: 600;
    color: var(--saffron-dark);
}

/* Footer */
.footer-elegant {
    background: #2E241F;
    color: #FFE8D6;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    border-top: 4px solid var(--saffron);
}

.footer-heading-elegant {
    color: var(--saffron);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links-elegant {
    padding-left: 0;
}

.footer-links-elegant li {
    list-style: none;
    margin: 8px 0;
}

.footer-links-elegant a {
    color: #FFE0C4;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-float-elegant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.back-to-top-elegant {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--saffron);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
}

.back-to-top-elegant.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .main-title-elegant {
        font-size: 2.5rem;
    }

    .title-sub-elegant {
        font-size: 1.2rem;
    }

    .hero-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .pricing-card-professional {
        width: 100%;
        max-width: 320px;
    }

    .app-card-elegant {
        width: 200px;
        padding: 1.5rem;
    }

    .feature-item-elegant img {
        width: 90px;
        height: 90px;
        padding: 15px;
    }

    .stat-card {
        min-width: 70px;
        padding: 0.2rem 0.4rem;
    }

    .stat-number-elegant {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-icon i {
        font-size: 0.9rem;
    }

    .stat-divider {
        height: 20px;
    }
}

.tv-img,
.glass-card-elegant img {
    border-radius: 32px;
}

.text-muted-custom {
    color: #7A5A44;
}

html,
body {
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
}


.pricing-grid-elegant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 1 row me 3 cards */
    gap: 25px;
}

/* Responsive fix */
@media (max-width: 992px) {
    .pricing-grid-elegant {
        grid-template-columns: repeat(2, 1fr);
        /* tablet: 2 cards */
    }
}

@media (max-width: 576px) {
    .pricing-grid-elegant {
        grid-template-columns: 1fr;
        /* mobile: 1 card */
    }
}

