/* ========================================
   CSS CUSTOM PROPERTIES (COLOR VARIABLES)
   ======================================== */
:root {
    /* Primary Colors */
    --color-bg-primary: #fdf7f2;
    /* Creamy background */
    --color-text-primary: #1a1a1a;
    /* Soft black for text */
    --color-secondary: #f4b400;
    /* Golden secondary */
    --color-white-soft: #f8f5f0;
    /* Soft white creamy */

    /* Accent Colors */
    --color-accent-dark: #d49d00;
    /* Darker gold for hover */
    --color-accent-light: #ffc933;
    /* Lighter gold for highlights */

    /* Neutral Colors */
    --color-gray-light: #ffffff;
    /* Light gray with warm tone */
    --color-gray-medium: #8b8680;
    /* Medium gray */
    --color-gray-dark: #3d3935;
    /* Dark gray */

    /* Transparency Variations */
    --color-overlay-light: rgba(255, 255, 255, 0.8);
    --color-overlay-dark: rgba(26, 26, 26, 0.8);
    --color-secondary-transparent: rgba(244, 180, 0, 0.1);
    --color-secondary-hover: rgba(244, 180, 0, 0.2);
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
    font-family: 'Inter', sans-serif;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom background */
body {
    background: var(--color-bg-primary);
    min-height: 100vh;
    color: var(--color-text-primary);
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
/* Glassmorphism effect for navbar */
.glass-nav {
    background: var(--color-overlay-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
    will-change: transform;
    position: relative;
    z-index: 1000;
}

/* Navbar positioning states */
.navbar-relative {
    position: relative;
    transform: translateY(0);
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 4px 6px rgba(26, 26, 26, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-visible {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.1);
}

/* Smooth transitions */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: var(--color-text-primary);
}

/* Underline animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent-dark));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* ========================================
   LANGUAGE BUTTON
   ======================================== */
/* Language button animation */
.lang-btn {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white-soft);
}

.lang-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.3);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-secondary) 100%);
}

/* ========================================
   MOBILE MENU
   ======================================== */
/* Mobile menu animation */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: var(--color-white-soft);
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu a {
    color: var(--color-text-primary);
}

.mobile-menu a:hover {
    background: var(--color-secondary-hover);
    color: var(--color-secondary);
}

/* ========================================
   HAMBURGER MENU
   ======================================== */
/* Hamburger animation */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   DROPDOWN MENU
   ======================================== */
/* Dropdown animation */
.lang-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background: var(--color-white-soft);
    border: 1px solid var(--color-gray-light);
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    color: var(--color-text-primary);
}

.lang-dropdown a:hover {
    background: var(--color-secondary-hover);
    color: var(--color-secondary);
}

/* ========================================
   HERO SECTION
   ======================================== */

/* Hero container */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FBF4EE;
    padding: 4rem 0;
}

/* Hero content wrapper */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left side - Text content */
.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(244, 180, 0, 0.1);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 180, 0, 0.2);
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1A2B45;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-heading .highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.hero-subheading {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 180, 0, 0.4);
}

.hero-btn-secondary {
    padding: 1rem 2rem;
    background: white;
    color: #1A2B45;
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Right side - Image */
.hero-image {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: 700px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    /* animation: float 6s ease-in-out infinite; */
}

/* ========================================
   ANIMATED CONCENTRIC CIRCLES
   ======================================== */

/* Circles container */
.circles-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
}

/* Individual circles */
.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(244, 179, 0, 0.61);
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}

/* Avatar/image placed on a circle's edge */
.circle .circle-avatar {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    /* place roughly on the right edge of the circle */
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

.circle .circle-avatar:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

/* Circle 1 - Largest, slowest */
.circle-1 {
    width: 500px;
    height: 500px;
    animation: pulse-1 12s ease-in-out infinite;
}

/* Circle 2 - Medium */
.circle-2 {
    width: 380px;
    height: 380px;
    animation: pulse-2 10s ease-in-out infinite;
    animation-delay: -2s;
}

/* Circle 3 - Smaller */
.circle-3 {
    width: 260px;
    height: 260px;
    animation: pulse-3 8s ease-in-out infinite;
    animation-delay: -4s;
}

/* Circle 4 - Smallest, fastest */
.circle-4 {
    width: 140px;
    height: 140px;
    animation: pulse-4 6s ease-in-out infinite;
    animation-delay: -1s;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

/* Pulse animation for circle 1 */
@keyframes pulse-1 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.15;
    }
}

/* Pulse animation for circle 2 */
@keyframes pulse-2 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
        opacity: 0.2;
    }
}

/* Pulse animation for circle 3 */
@keyframes pulse-3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.35;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.18;
    }
}

/* Pulse animation for circle 4 */
@keyframes pulse-4 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.45;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.25) rotate(-5deg);
        opacity: 0.25;
    }
}

/* Floating animation for phone mockup */
@keyframes float {

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .circles-container {
        width: 500px;
        height: 500px;
    }

    .circle-1 {
        width: 400px;
        height: 400px;
    }

    .circle-2 {
        width: 300px;
        height: 300px;
    }

    .circle-3 {
        width: 200px;
        height: 200px;
    }

    .circle-4 {
        width: 100px;
        height: 100px;
    }

    /* scale down avatar on tablet */
    .circle .circle-avatar {
        width: 72px;
        height: 72px;
        right: -14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Circles repositioned for mobile */
    .circles-container {
        top: 20%;
        right: 50%;
        transform: translate(50%, 0);
        width: 300px;
        height: 300px;
        opacity: 0.5;
    }

    .circle-1 {
        width: 250px;
        height: 250px;
    }

    .circle-2 {
        width: 180px;
        height: 180px;
    }

    .circle-3 {
        width: 120px;
        height: 120px;
    }

    .circle-4 {
        width: 60px;
        height: 60px;
    }

    /* mobile avatar adjustments */
    .circle .circle-avatar {
        width: 48px;
        height: 48px;
        right: -10px;
        border-width: 3px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* ========================================
   APP SHOWCASE SECTION
   ======================================== */

.app-showcase-section {
    position: relative;
    padding: 4rem 0;
    background: var(--color-bg-primary);
    overflow: hidden;
}

/* Background Circles for Showcase (Subtler) */
.showcase-circles {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.showcase-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgb(244, 179, 0);
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
}

.s-circle-1 {
    width: 700px;
    height: 700px;
    animation: pulse-1 15s ease-in-out infinite;
}

.s-circle-2 {
    width: 550px;
    height: 550px;
    animation: pulse-2 12s ease-in-out infinite;
    animation-delay: -2s;
}

.s-circle-3 {
    width: 400px;
    height: 400px;
    animation: pulse-3 10s ease-in-out infinite;
    animation-delay: -4s;
}

/* Container */
.showcase-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side: Phone Mockup */
.showcase-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    min-width: 380px;
    width: auto;
    height: 700px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    /* animation: float 8s ease-in-out infinite; */
    border-radius: 40px;
    /* Match phone radius if needed */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Right Side: Content */
.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Tabs */
.showcase-tabs {
    display: inline-flex;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    width: fit-content;
}

.tab-btn {
    padding: 0.75rem 2rem;
    border-radius: 40px;
    border: none;
    background: transparent;
    color: var(--color-gray-medium);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--color-secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 180, 0, 0.3);
}

.tab-btn:hover:not(.active) {
    color: var(--color-accent-dark);
    background: var(--color-white-soft);
}

/* Content Text */
.showcase-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.showcase-text p {
    font-size: 1.125rem;
    color: #4A5568;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

/* Info Cards */
.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    transition: opacity 0.3s ease;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.02);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.5s forwards;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(244, 180, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    background: var(--color-secondary);
    color: white;
    transform: rotate(5deg);
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--color-gray-medium);
    line-height: 1.5;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .showcase-image-wrapper {
        order: -1;
        /* Image on top for mobile/tablet if desired, or remove to keep bottom */
    }

    .showcase-content {
        align-items: center;
    }

    .info-card {
        text-align: left;
    }

    .showcase-circles {
        left: 50%;
    }
}

@media (max-width: 768px) {
    .app-showcase-section {
        padding: 2.5rem 0;
    }

    .showcase-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .showcase-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .showcase-text h2 {
        font-size: 1.75rem;
    }

    .showcase-text p {
        font-size: 1rem;
    }

    .phone-mockup {
        min-width: unset;
        width: 100%;
        max-width: 260px;
        height: auto;
        max-height: 520px;
        object-fit: contain;
    }

    .showcase-image-wrapper {
        display: none;
    }

    /* Fix scrollable tabs on mobile */
    .showcase-tabs {
        display: flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 40px;
    }

    .tab-btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.82rem;
        flex-shrink: 0;
    }

    .info-card {
        padding: 1rem;
        gap: 1rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .card-content h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .showcase-text h2 {
        font-size: 1.5rem;
    }

    .phone-mockup {
        max-width: 220px;
        max-height: 440px;
    }

    .tab-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.78rem;
    }
}

/* ========================================
   SANSKAR PORTFOLIO SECTION
   ======================================== */

.sanskar-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #FBF4EE 0%, #FFF8F0 100%);
    overflow: hidden;
}

/* Background Circles for Sanskar Section */
.sanskar-circles {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(50%, -50%);
    width: 900px;
    height: 900px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.sanskar-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(244, 180, 0, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sc-circle-1 {
    width: 800px;
    height: 800px;
    animation: pulse-1 18s ease-in-out infinite;
}

.sc-circle-2 {
    width: 600px;
    height: 600px;
    animation: pulse-2 14s ease-in-out infinite;
    animation-delay: -3s;
}

.sc-circle-3 {
    width: 400px;
    height: 400px;
    animation: pulse-3 12s ease-in-out infinite;
    animation-delay: -5s;
}

/* Container */
.sanskar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.sanskar-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.sanskar-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sanskar-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4A5568;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Cards Grid */
.sanskar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Individual Card */
.sanskar-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s forwards;
}

.sanskar-card:nth-child(1) {
    animation-delay: 0.1s;
}

.sanskar-card:nth-child(2) {
    animation-delay: 0.2s;
}

.sanskar-card:nth-child(3) {
    animation-delay: 0.3s;
}

.sanskar-card:nth-child(4) {
    animation-delay: 0.4s;
}

.sanskar-card:nth-child(5) {
    animation-delay: 0.5s;
}

.sanskar-card:nth-child(6) {
    animation-delay: 0.6s;
}

.sanskar-card:hover {
    /* transform: translateY(-10px) scale(1.03); */
    box-shadow: 0 20px 50px rgba(244, 180, 0, 0.15);
    border-color: rgba(244, 180, 0, 0.2);
}

/* Card Icon */
.sanskar-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(244, 180, 0, 0.1) 0%, rgba(244, 180, 0, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.sanskar-card:hover .sanskar-card-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-dark) 100%);
    color: white;
    /* transform: rotate(5deg) scale(1.1); */
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.3);
}

/* Card Title */
.sanskar-card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Card Description */
.sanskar-card-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-medium);
}

/* Card Fade In Animation */
@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sanskar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sanskar-title {
        font-size: 2.5rem;
    }

    .sanskar-circles {
        right: 50%;
        width: 700px;
        height: 700px;
    }

    .sc-circle-1 {
        width: 600px;
        height: 600px;
    }

    .sc-circle-2 {
        width: 450px;
        height: 450px;
    }

    .sc-circle-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .sanskar-section {
        padding: 4rem 0;
    }

    .sanskar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sanskar-title {
        font-size: 2rem;
    }

    .sanskar-subtitle {
        font-size: 1.125rem;
    }

    .sanskar-card {
        padding: 2rem 1.5rem;
    }

    .sanskar-card-icon {
        width: 70px;
        height: 70px;
    }

    .sanskar-card-title {
        font-size: 1.25rem;
    }

    .sanskar-circles {
        opacity: 0.3;
        width: 500px;
        height: 500px;
    }

    .sc-circle-1 {
        width: 400px;
        height: 400px;
    }

    .sc-circle-2 {
        width: 300px;
        height: 300px;
    }

    .sc-circle-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .sanskar-title {
        font-size: 1.75rem;
    }

    .sanskar-subtitle {
        font-size: 1rem;
    }

    .sanskar-card {
        padding: 1.75rem 1.25rem;
    }
}

/* ========================================
   DOWNLOAD APP SECTION
   ======================================== */

.download-app-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #F8F0E8 100%);
    overflow: hidden;
}

/* Background Circles */
.download-circles {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(50%, -50%);
    width: 700px;
    height: 700px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.download-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(244, 180, 0, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.d-circle-1 {
    width: 600px;
    height: 600px;
    animation: pulse-1 14s ease-in-out infinite;
}

.d-circle-2 {
    width: 450px;
    height: 450px;
    animation: pulse-2 11s ease-in-out infinite;
    animation-delay: -2s;
}

.d-circle-3 {
    width: 300px;
    height: 300px;
    animation: pulse-3 9s ease-in-out infinite;
    animation-delay: -4s;
}

/* Container */
.download-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side: Content */
.download-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Badge */
.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.15);
    border: 1px solid rgba(244, 180, 0, 0.2);
}

.download-badge svg {
    width: 20px;
    height: 20px;
}

/* Title */
.download-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

/* Description */
.download-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4A5568;
}

.highlight-time {
    color: var(--color-secondary);
    font-weight: 700;
    background: var(--color-secondary-transparent);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

/* Features List */
.download-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-text-primary);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    flex-shrink: 0;
    background: var(--color-white-soft);
    padding: 4px;
    border-radius: 50%;
}

/* App Store Buttons */
.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--color-text-primary);
    color: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.15);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.25);
}

.store-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Stats */
.download-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: fit-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-medium);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-light);
}

/* Right Side: Phone Mockup */
.download-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.download-phone {
    position: relative;
    z-index: 2;
    width: auto;
    height: 700px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    /* animation: float-download 6s ease-in-out infinite; */
}

@keyframes float-download {

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

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

/* ========================================
   RESPONSIVE - DOWNLOAD SECTION
   ======================================== */

@media (max-width: 1024px) {
    .download-container {
        gap: 3rem;
    }

    .download-title {
        font-size: 2.5rem;
    }

    .download-phone {
        height: 500px;
    }

    .download-circles {
        width: 500px;
        height: 500px;
    }

    .d-circle-1 {
        width: 450px;
        height: 450px;
    }

    .d-circle-2 {
        width: 350px;
        height: 350px;
    }

    .d-circle-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .download-app-section {
        padding: 4rem 0;
    }

    .download-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .download-content {
        text-align: center;
        align-items: center;
    }

    .download-title {
        font-size: 2rem;
    }

    .download-description {
        font-size: 1rem;
    }

    .download-features {
        align-items: flex-start;
        max-width: 400px;
    }

    .download-buttons {
        justify-content: center;
    }

    .store-button {
        flex: 1;
        min-width: 160px;
    }

    .download-stats {
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .download-phone {
        height: 450px;
    }

    .download-circles {
        top: 10%;
        right: 50%;
        transform: translate(50%, 0);
        width: 400px;
        height: 400px;
        opacity: 0.3;
    }

    .d-circle-1 {
        width: 350px;
        height: 350px;
    }

    .d-circle-2 {
        width: 250px;
        height: 250px;
    }

    .d-circle-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 1.75rem;
    }

    .download-description {
        font-size: 0.95rem;
    }

    .download-features {
        width: 100%;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .store-button {
        width: 100%;
        justify-content: center;
    }

    .download-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .download-phone {
        height: 400px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    position: relative;
    padding: 6rem 0;
    background: var(--color-bg-primary);
    overflow: hidden;
}

/* Background Circles for FAQ */
.faq-circles {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(50%, -50%);
    width: 900px;
    height: 900px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.faq-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(244, 180, 0, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.f-circle-1 {
    width: 800px;
    height: 800px;
    animation: pulse-1 18s ease-in-out infinite;
}

.f-circle-2 {
    width: 600px;
    height: 600px;
    animation: pulse-2 14s ease-in-out infinite;
    animation-delay: -3s;
}

.f-circle-3 {
    width: 400px;
    height: 400px;
    animation: pulse-3 11s ease-in-out infinite;
    animation-delay: -5s;
}

/* Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(244, 180, 0, 0.08);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 180, 0, 0.15);
}

.faq-badge svg {
    width: 20px;
    height: 20px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #4A5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(244, 180, 0, 0.1);
}

/* Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

/* FAQ Icon */
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A5568;
    margin: 0;
}

/* CTA Section */
.faq-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-dark) 100%);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 50px rgba(244, 180, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.faq-cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.faq-cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--color-secondary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    gap: 1rem;
}

.faq-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-cta-button:hover svg {
    transform: translateX(4px);
}

/* ========================================
   FAQ RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .faq-circles {
        width: 700px;
        height: 700px;
    }

    .f-circle-1 {
        width: 600px;
        height: 600px;
    }

    .f-circle-2 {
        width: 450px;
        height: 450px;
    }

    .f-circle-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .faq-cta-content h3 {
        font-size: 1.5rem;
    }

    .faq-cta-button {
        width: 100%;
        justify-content: center;
    }

    .faq-circles {
        top: 10%;
        right: 50%;
        transform: translate(50%, 0);
        width: 400px;
        height: 400px;
        opacity: 0.3;
    }

    .f-circle-1 {
        width: 350px;
        height: 350px;
    }

    .f-circle-2 {
        width: 250px;
        height: 250px;
    }

    .f-circle-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.875rem;
    }

    .faq-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.25rem;
    }

    .faq-question {
        padding: 1.25rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta-content h3 {
        font-size: 1.25rem;
    }

    .faq-cta-content p {
        font-size: 0.9rem;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
    background: linear-gradient(135deg, #1A2B45 0%, #2D3E5F 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Top - Main Content */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Company Info */
.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 180, 0, 0.3);
}

/* Footer Headings */
.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-secondary);
    margin-top: 2px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--color-secondary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

.footer-legal .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   FOOTER RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-description {
        font-size: 0.875rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 0.875rem;
    }
}

/* ========================================
   SHOWCASE PLACEHOLDER
   ======================================== */
.showcase-placeholder {
    width: 100%;
    max-width: 320px;
    min-height: 540px;
    border: 2px dashed rgba(244, 180, 0, 0.45);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(253, 247, 242, 0.9) 0%, rgba(255, 250, 240, 0.95) 100%);
    margin: 0 auto;
}

.placeholder-phone-frame {
    text-align: center;
    padding: 2rem;
}

.placeholder-phone-icon {
    width: 64px;
    height: 64px;
    color: var(--color-secondary);
    margin: 0 auto 1rem;
    display: block;
}

.placeholder-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.placeholder-sublabel {
    font-size: 0.8rem;
    color: var(--color-gray-medium);
    background: rgba(244, 180, 0, 0.12);
    padding: 0.25rem 0.875rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

/* ========================================
   FEATURE PHONE MOCKUP IMAGES
   ======================================== */

/* Generic phone mockup used in feature sections */
.feature-phone-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 32px;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.feature-phone-img:hover {
    transform: translateY(-6px);
}

/* Dark-bg variant (live events section) */
.feature-phone-img--dark {
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

/* Column mockup image (tirth yatra / festivals columns) */
.col-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-mockup-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(244, 180, 0, 0.15);
}

/* Phone screenshot centered inside a column card */
.col-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.col-phone-img {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 22px;
    display: block;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.13));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.col-phone-img:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 20px 38px rgba(244, 180, 0, 0.2));
}

/* Single image in tirth col — slightly larger */
.tirth-col .col-phone-img {
    max-width: 220px;
    max-height: 440px;
}

/* Side-by-side pair (festivals + sanatan calendar) */
.col-mockup-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.col-mockup-img--half {
    height: 220px;
    object-fit: cover;
    object-position: top;
}

/* Wisdom card mockup (Vichar, Gaushala) */
.wisdom-mockup-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.wisdom-mockup-img:hover {
    transform: scale(1.02);
}

/* Feature card small preview (Muhurat card) */
.feature-card-preview-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin-top: 0.875rem;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.feature-card:hover .feature-card-preview-img {
    opacity: 1;
}

/* Scrollable tabs */
.showcase-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding-bottom: 2px;
}

.showcase-tabs::-webkit-scrollbar {
    display: none;
}

/* ========================================
   ALL FEATURES SECTION
   ======================================== */
.features-section {
    padding: 6rem 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(244, 180, 0, 0.1);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(244, 180, 0, 0.2);
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A2B45;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(244, 180, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(244, 180, 0, 0.14);
    border-color: rgba(244, 180, 0, 0.28);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(244, 180, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-secondary);
}

.feature-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1A2B45;
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    .feature-card {
        padding: 1.25rem 1rem;
    }
}

/* ========================================
   SECTION COMMON UTILITIES
   ======================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(244, 180, 0, 0.1);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 180, 0, 0.2);
}

.section-title-lg {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A2B45;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* ========================================
   CONSULTATION SECTION
   ======================================== */
.consultation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fdf7f2 0%, #fff9f0 100%);
    position: relative;
    overflow: hidden;
}

.consultation-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.consultation-phone-wrapper {
    display: flex;
    justify-content: center;
}

.consultation-placeholder {
    width: 280px;
    min-height: 520px;
    border: 2px dashed rgba(244, 180, 0, 0.5);
    border-radius: 40px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 20px 60px rgba(244, 180, 0, 0.1);
    text-align: center;
    gap: 0.875rem;
}

.consultation-placeholder svg {
    width: 56px;
    height: 56px;
    color: var(--color-secondary);
    opacity: 0.85;
}

.consultation-placeholder .placeholder-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1A2B45;
}

.consultation-placeholder .placeholder-tag {
    font-size: 0.75rem;
    color: #718096;
    background: rgba(244, 180, 0, 0.1);
    padding: 0.25rem 0.875rem;
    border-radius: 20px;
    font-weight: 500;
}

.consultation-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.consultation-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(244, 180, 0, 0.1);
    transition: all 0.25s ease;
}

.consultation-feature-item:hover {
    border-color: rgba(244, 180, 0, 0.3);
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.08);
}

.consultation-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(244, 180, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
}

.consultation-feature-icon svg {
    width: 20px;
    height: 20px;
}

.consultation-feature-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A2B45;
    margin-bottom: 0.2rem;
}

.consultation-feature-text p {
    font-size: 0.8rem;
    color: #718096;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .consultation-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .consultation-phone-wrapper {
        order: -1;
    }
}

/* ========================================
   LIVE EVENTS SECTION
   ======================================== */
.live-events-section {
    padding: 6rem 0;
    background: #1A2B45;
    position: relative;
    overflow: hidden;
}

.live-events-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.live-events-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.live-events-header .section-badge {
    background: rgba(244, 180, 0, 0.15);
    border-color: rgba(244, 180, 0, 0.3);
}

.live-events-header .section-title-lg {
    color: white;
}

.live-events-header .section-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin: 0 auto 2rem;
}

.live-filter-chips {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.live-chip {
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.05);
}

.live-chip.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #1A2B45;
    font-weight: 600;
}

.live-chip.live-indicator {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
    color: #fca5a5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.35); }
}

.live-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.live-placeholder {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 9 / 17;
    margin: 0 auto;
    border: 2px dashed rgba(244, 180, 0, 0.4);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 2rem 1.5rem;
    text-align: center;
}

.live-placeholder svg {
    width: 52px;
    height: 52px;
    color: var(--color-secondary);
    opacity: 0.85;
}

.live-placeholder p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
}

.live-placeholder .coming-tag {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(244, 180, 0, 0.18);
    color: var(--color-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.live-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.live-feature-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.live-feature-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(244, 180, 0, 0.3);
}

.live-feature-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(244, 180, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.live-feature-card-icon svg {
    width: 20px;
    height: 20px;
}

.live-feature-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.35rem;
}

.live-feature-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .live-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .live-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TIRTH YATRA & FESTIVALS SECTION
   ======================================== */
.tirth-festivals-section {
    padding: 6rem 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.tirth-festivals-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.tirth-festivals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.tirth-col, .festival-col {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(244, 180, 0, 0.13);
    transition: box-shadow 0.3s ease;
}

.tirth-col:hover, .festival-col:hover {
    box-shadow: 0 12px 40px rgba(244, 180, 0, 0.1);
}

.col-header {
    margin-bottom: 1.5rem;
}

.col-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A2B45;
    margin-bottom: 0.5rem;
}

.col-desc {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.65;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.category-chip {
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(244, 180, 0, 0.1);
    color: #92660a;
    border: 1px solid rgba(244, 180, 0, 0.22);
}

.tirth-placeholder, .festival-placeholder {
    width: 100%;
    min-height: 200px;
    border: 2px dashed rgba(244, 180, 0, 0.35);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(253, 247, 242, 0.6);
    gap: 0.625rem;
    padding: 1.5rem;
    text-align: center;
}

.tirth-placeholder svg, .festival-placeholder svg {
    width: 44px;
    height: 44px;
    color: var(--color-secondary);
    opacity: 0.65;
}

.tirth-placeholder p, .festival-placeholder p {
    font-size: 0.85rem;
    color: #718096;
}

.placeholder-coming {
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(244, 180, 0, 0.15);
    color: var(--color-secondary);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .tirth-festivals-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   VEDIC WISDOM & MORE FEATURES
   ======================================== */
.vedic-wisdom-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, #fff9f0 0%, #fdf7f2 100%);
}

.vedic-wisdom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vedic-wisdom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.vedic-wisdom-card {
    background: white;
    border-radius: 24px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(244, 180, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.vedic-wisdom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(244, 180, 0, 0.12);
    border-color: rgba(244, 180, 0, 0.25);
}

.wisdom-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-secondary);
}

.wisdom-icon svg {
    width: 30px;
    height: 30px;
}

.wisdom-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2B45;
    margin-bottom: 0.75rem;
}

.wisdom-card-desc {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wisdom-placeholder {
    width: 100%;
    height: 110px;
    border: 1.5px dashed rgba(244, 180, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 247, 242, 0.5);
    font-size: 0.75rem;
    color: #a0aec0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .vedic-wisdom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vedic-wisdom-grid {
        grid-template-columns: 1fr;
    }
    .section-title-lg {
        font-size: 1.75rem;
    }
}