/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-red: #7F1416;
    --saffron: #FFCC33;
    --orange: #F27021;
    --gold: #FFD700;
    --cream: #FFF9F0;
    --white: #FFFFFF;
    --dark-text: #4A1518;
    --light-text: #666666;
    --sacred-gold: #D4AF37;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: linear-gradient(180deg, #FFF9F0 0%, #FFF5EB 100%);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 204, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(127, 20, 22, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--deep-red) 0%, #5C0F10 50%, var(--deep-red) 100%);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 0 30px rgba(255,204,51,0.1);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(255,204,51,0.4));
    animation: gentle-glow 3s ease-in-out infinite;
}

@keyframes gentle-glow {
    0%, 100% { filter: drop-shadow(0 4px 8px rgba(255,204,51,0.4)); }
    50% { filter: drop-shadow(0 4px 12px rgba(255,204,51,0.6)); }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--saffron);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 20px rgba(255,204,51,0.3);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--saffron);
    text-shadow: 0 0 10px rgba(255,204,51,0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transition: width 0.3s;
    border-radius: 2px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-red);
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    gap: 1.5rem;
}

.nav-menu a.active {
    color: var(--saffron);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: 
        radial-gradient(ellipse at top, rgba(255,204,51,0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--deep-red) 0%, #5C0F10 40%, #4A0A0B 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,204,51,0.03) 2px, rgba(255,204,51,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,204,51,0.03) 2px, rgba(255,204,51,0.03) 4px);
    opacity: 0.3;
    pointer-events: none;
    animation: grid-shift 20s linear infinite;
}

@keyframes grid-shift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(2px, 2px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,204,51,0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float-glow 15s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,204,51,0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 25%;
    right: 15%;
    animation: float-glow 18s ease-in-out infinite reverse;
}

@keyframes float-glow {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.5;
    }
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-om {
    position: absolute;
    font-size: 400px;
    color: rgba(255,204,51,0.04);
    font-family: 'Playfair Display', serif;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: rotate-om 30s linear infinite;
}

@keyframes rotate-om {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    position: relative;
    max-width: 1000px;
    padding: 2rem;
}

.hero-greeting {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.namaskaram {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-mantra {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--saffron);
    text-shadow: 0 4px 20px rgba(255,204,51,0.6), 0 0 40px rgba(255,204,51,0.4);
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.2;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 40px rgba(255,204,51,0.3);
    color: var(--saffron);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title-line {
    display: block;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 40px rgba(255,204,51,0.3);
    color: rgba(255,255,255,0.95);
}

.title-line.highlight {
    color: var(--saffron);
    text-shadow: 0 4px 25px rgba(255,204,51,0.7), 0 0 50px rgba(255,204,51,0.5);
    background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
    opacity: 0.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-narrative {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.narrative-lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255,255,255,0.98);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

.narrative-body {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.2px;
}

.narrative-body strong {
    font-weight: 600;
    color: var(--saffron);
    text-shadow: 0 2px 10px rgba(255,204,51,0.4);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-stores {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,204,51,0.2);
}

.stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255,204,51,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.stat-item:hover {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(255,204,51,0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--saffron);
    text-shadow: 0 4px 20px rgba(255,204,51,0.7), 0 0 40px rgba(255,204,51,0.5);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Left Column */
.hero-col-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mantra-section {
    position: relative;
}

.om-symbol-large {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    color: rgba(255,204,51,0.12);
    line-height: 1;
    position: absolute;
    top: -15px;
    left: -25px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.mantra-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    letter-spacing: 1.5px;
    margin: 0;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,204,51,0.2);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--saffron);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stat-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.stat-separator {
    width: 1px;
    height: 35px;
    background: rgba(255,204,51,0.3);
}

/* Center Column */
.hero-col-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    margin: 0 0 1.5rem 0;
    letter-spacing: -1px;
}

.title-highlight {
    color: var(--saffron);
    display: inline-block;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255,204,51,0.3);
    z-index: -1;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin: 0 0 2rem 0;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Right Column */
.hero-col-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.quote-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
    border-left: 3px solid var(--saffron);
    max-width: 260px;
}

.quote-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 260px;
}

.store-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,204,51,0.2);
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
}

.store-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,204,51,0.4);
}

.store-item i {
    font-size: 1.3rem;
    color: var(--saffron);
}

.store-item.coming-soon {
    padding-right: 2.5rem;
}

.soon-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--saffron);
    color: var(--deep-red);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(255,204,51,0.5);
}

.stat-box-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,204,51,0.2);
    width: 100%;
    max-width: 260px;
}

/* Old classes - keeping for backwards compatibility but should be removed */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-mantra-wrapper {
    position: relative;
}

.hero-mantra-sanskrit {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(255,204,51,0.15);
    line-height: 1;
    display: block;
    position: absolute;
    top: -20px;
    left: -30px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.hero-mantra {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.hero-stats-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,204,51,0.2);
}

.stat-inline {
    display: flex;
    flex-direction: column;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--saffron);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stat-label-small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,204,51,0.3);
}

/* Center Column */
.hero-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-main {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-align: center;
}

.hero-subtitle-main {
    text-align: center;
}

.hero-actions-compact {
    justify-content: center;
}

.title-accent {
    display: inline-block;
    color: var(--saffron);
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255,204,51,0.3);
    z-index: -1;
}

.hero-subtitle-main {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.hero-actions-compact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-actions-compact .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Right Column */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-end;
}

.hero-quote-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-left: 3px solid var(--saffron);
    max-width: 280px;
}

.quote-text-small {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.app-stores-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
}

.store-badge-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,204,51,0.2);
    transition: all 0.3s;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
}

.store-badge-compact:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,204,51,0.4);
}

.store-badge-compact i {
    font-size: 1.4rem;
    color: var(--saffron);
}

.store-badge-compact.coming-soon {
    padding-right: 3rem;
}

.store-badge-compact.coming-soon::after {
    content: 'Soon';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--saffron);
    color: var(--deep-red);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255,204,51,0.5);
}

.stat-inline-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,204,51,0.2);
    width: 100%;
    max-width: 280px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.app-stores {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 16px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 204, 51, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.store-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.store-badge:hover::before {
    left: 100%;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255,204,51,0.6);
    box-shadow: 0 12px 40px rgba(255,204,51,0.35);
}

.store-badge i {
    font-size: 2.2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(255,204,51,0.4));
}

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

.store-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.store-badge.coming-soon {
    position: relative;
}

.store-badge.coming-soon::after {
    content: 'Coming Soon';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--deep-red);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255,204,51,0.5);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Typography Hierarchy - Caption Level */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,204,51,0.2);
}

.stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255,204,51,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.stat-item:hover {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(255,204,51,0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--saffron);
    text-shadow: 0 4px 20px rgba(255,204,51,0.7), 0 0 40px rgba(255,204,51,0.5);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(127,20,22,0.1);
}

.section-title::before,
.section-title::after {
    content: '✦';
    color: var(--saffron);
    font-size: 1.5rem;
    margin: 0 1rem;
    opacity: 0.6;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.title-decoration {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--saffron), var(--gold), var(--saffron), transparent);
    margin: 1.5rem auto 1rem;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255,204,51,0.4);
    position: relative;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--saffron);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255,204,51,0.6);
}

.title-decoration::before {
    left: -15px;
}

.title-decoration::after {
    right: -15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 400;
    text-align: center;
    font-style: italic;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    line-height: 2;
    text-align: center;
}

.divine-quote {
    background: linear-gradient(135deg, rgba(255,204,51,0.1) 0%, rgba(255,204,51,0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,204,51,0.2);
}

.divine-quote i {
    font-size: 2rem;
    color: var(--saffron);
    opacity: 0.5;
    position: absolute;
}

.divine-quote .fa-quote-left {
    top: 1rem;
    left: 1.5rem;
}

.divine-quote .fa-quote-right {
    bottom: 1rem;
    right: 1.5rem;
}

.divine-quote p,
.divine-quote .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-red);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.quote-author {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--orange);
    font-weight: 600;
    margin-top: 1rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.quote-translation {
    display: block;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-text);
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Quote Variants */
.secondary-quote {
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(127,20,22,0.05) 0%, rgba(127,20,22,0.02) 100%);
    border-color: rgba(127,20,22,0.15);
}

.seva-quote,
.purity-quote {
    background: linear-gradient(135deg, rgba(255,204,51,0.12) 0%, rgba(255,204,51,0.06) 100%);
    padding: 3rem;
    border-radius: 25px;
    margin: 3rem auto;
    max-width: 800px;
    border: 1px solid rgba(255,204,51,0.25);
    box-shadow: 0 8px 30px rgba(255,204,51,0.15);
}

.large-quote {
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 4rem auto;
    background: linear-gradient(135deg, rgba(255,204,51,0.15) 0%, rgba(255,204,51,0.08) 100%);
    border: 2px solid rgba(255,204,51,0.3);
    box-shadow: 0 12px 40px rgba(255,204,51,0.2);
}

.large-quote .quote-text {
    font-size: 2.2rem;
}

.large-quote .quote-translation {
    font-size: 1.3rem;
    margin-top: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127,20,22,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,204,51,0.08), rgba(255,204,51,0.03));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(127,20,22,0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-red);
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover .feature-icon {
    color: var(--orange);
}

.feature-icon i {
    font-size: inherit;
    filter: drop-shadow(0 4px 8px rgba(127,20,22,0.2));
}

.feature-box h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1rem;
}

/* Drives Section */
.drives {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}

.drives-intro {
    background: 
        linear-gradient(135deg, var(--deep-red) 0%, #5C0F10 50%, var(--deep-red) 100%),
        radial-gradient(circle at top right, rgba(255,204,51,0.2) 0%, transparent 50%);
    border-radius: 30px;
    padding: 4rem 3rem;
    color: var(--white);
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2), 0 0 60px rgba(255,204,51,0.1);
    position: relative;
    overflow: hidden;
}

.drives-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,204,51,0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.intro-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--saffron);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 1;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.impact-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255,204,51,0.3);
    transition: all 0.3s;
}

.impact-stat:hover {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 12px 40px rgba(255,204,51,0.25);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--saffron);
    text-shadow: 0 4px 15px rgba(255,204,51,0.6);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
    font-weight: 500;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.opportunity-card {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242,112,33,0.15);
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,204,51,0.08), rgba(255,204,51,0.03));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
}

.opportunity-card:hover::before {
    opacity: 1;
}

.opportunity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(127,20,22,0.15);
}

.opportunity-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.opportunity-card:hover .opportunity-icon {
    color: var(--deep-red);
}

.opportunity-icon i {
    font-size: inherit;
    filter: drop-shadow(0 4px 10px rgba(242,112,33,0.3));
}

.opportunity-card h3 {
    color: var(--deep-red);
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.opportunity-temple {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.opportunity-desc {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.opportunity-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, #FFF5EB 100%);
    border-radius: 15px;
    border: 1px solid rgba(255,204,51,0.25);
}

.detail-item {
    font-size: 0.95rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.detail-item i {
    color: var(--deep-red);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.volunteer-count {
    color: var(--deep-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: rgba(127,20,22,0.08);
    border-radius: 12px;
    font-size: 1rem;
}

.btn-drive {
    width: 100%;
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    color: var(--white);
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(127,20,22,0.3);
}

.btn-drive:hover {
    background: linear-gradient(135deg, var(--orange), #E85D04);
    box-shadow: 0 8px 32px rgba(242,112,33,0.45);
}

.cta-box {
    background: linear-gradient(135deg, var(--deep-red) 0%, #5C0F10 50%, #4A0A0B 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 60px rgba(127,20,22,0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,204,51,0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, rgba(255,204,51,0.15) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,204,51,0.03) 2px, rgba(255,204,51,0.03) 4px);
    opacity: 0.6;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,204,51,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--saffron);
    filter: drop-shadow(0 4px 20px rgba(255,204,51,0.6));
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
    color: var(--saffron);
    text-shadow: 0 4px 20px rgba(255,204,51,0.5), 0 0 40px rgba(255,204,51,0.3);
}

.cta-box p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-box .btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--deep-red);
    box-shadow: 0 8px 30px rgba(255,204,51,0.5);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    box-shadow: 0 12px 40px rgba(255,204,51,0.7);
    transform: translateY(-2px);
}

/* Products Section */
.products {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
}

.products-intro {
    margin-bottom: 4rem;
}

.promise-box {
    background: 
        linear-gradient(135deg, rgba(255,204,51,0.1) 0%, rgba(255,204,51,0.05) 100%),
        linear-gradient(180deg, var(--white) 0%, #FFF5EB 100%);
    padding: 3.5rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,204,51,0.2);
}

.promise-box::before {
    content: '🕉️';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.promise-box h3 {
    color: var(--deep-red);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.promise-box p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--dark-text);
    position: relative;
}

.promise-box strong {
    color: var(--deep-red);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127,20,22,0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,204,51,0.08), rgba(255,204,51,0.03));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
    border-radius: 25px;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(127,20,22,0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(127,20,22,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--cream) 0%, #FFF5EB 100%);
    transition: transform 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-info h3 {
    color: var(--deep-red);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.product-tagline {
    color: var(--orange);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(127,20,22,0.1), rgba(127,20,22,0.05));
    color: var(--deep-red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(127,20,22,0.2);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.original-price {
    font-size: 1.2rem;
    color: var(--light-text);
    text-decoration: line-through;
    margin-left: 0.75rem;
    font-weight: 400;
}

.btn-product {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), #E85D04);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(242,112,33,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-product:hover {
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    box-shadow: 0 8px 32px rgba(127,20,22,0.45);
}

.why-choose {
    background: 
        linear-gradient(135deg, var(--deep-red) 0%, #5C0F10 50%, var(--deep-red) 100%),
        radial-gradient(circle at bottom left, rgba(255,204,51,0.2) 0%, transparent 50%);
    border-radius: 30px;
    padding: 4rem 3rem;
    color: var(--white);
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,204,51,0.03) 10px, rgba(255,204,51,0.03) 20px);
    opacity: 0.3;
}

.why-choose h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--saffron);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255,204,51,0.3);
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 12px 40px rgba(255,204,51,0.25);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--saffron);
    filter: drop-shadow(0 4px 10px rgba(255,204,51,0.4));
}

.benefit-icon i {
    font-size: inherit;
}

.benefit-item h4 {
    color: var(--saffron);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.benefit-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
}

/* App Screens Section */
.app-screens {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    padding: 8rem 0;
}

.screen-showcase {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.screen-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.screen-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,204,51,0.06), rgba(255,204,51,0.02));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
}

.screen-item:hover::before {
    opacity: 1;
}

.screen-item:hover {
    box-shadow: 0 20px 80px rgba(127,20,22,0.12);
    transform: translateY(-4px);
}

.screen-item.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.screen-item.reverse .screen-visual {
    order: 2;
}

.screen-item.reverse .screen-content {
    order: 1;
}

.screen-visual {
    position: relative;
}

.phone-mockup {
    position: relative;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 3px rgba(255,204,51,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s;
}

.screen-item:hover .phone-mockup {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.phone-screen {
    background: var(--white);
    border-radius: 25px;
    padding: 20px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--cream);
    margin-bottom: 15px;
}

.mockup-time {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.mockup-location,
.mockup-title,
.mockup-live {
    font-weight: 600;
    color: var(--deep-red);
    font-size: 0.9rem;
}

.mockup-live {
    color: #E53935;
}

.mockup-live i {
    font-size: 0.6rem;
    margin-right: 4px;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.mockup-greeting {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 15px;
    color: var(--deep-red);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.mockup-search {
    background: var(--cream);
    padding: 12px;
    border-radius: 25px;
    text-align: center;
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.mockup-featured {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-feature-item {
    background: var(--cream);
    padding: 15px 8px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.7rem;
    color: var(--dark-text);
    font-weight: 600;
}

.mockup-feature-item i {
    display: block;
    font-size: 1.2rem;
    color: var(--deep-red);
    margin-bottom: 5px;
}

.mockup-live-darshan {
    margin-bottom: 20px;
}

.mockup-video-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    border-radius: 12px;
    margin-bottom: 8px;
    position: relative;
}

.mockup-video-placeholder::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
}

.mockup-viewers {
    text-align: center;
    font-size: 0.75rem;
    color: var(--light-text);
}

.mockup-panchang {
    background: var(--cream);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.mockup-panchang-item {
    font-size: 0.8rem;
    color: var(--dark-text);
    margin-bottom: 5px;
    font-weight: 600;
}

.mockup-quote {
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    color: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.85rem;
    font-style: italic;
}

.mockup-impact {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-stat {
    flex: 1;
    background: var(--cream);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
    line-height: 1.4;
}

.mockup-drive {
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}

.mockup-drive-title {
    font-weight: 700;
    color: var(--deep-red);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.mockup-drive-temple {
    color: var(--orange);
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.mockup-drive-time {
    color: var(--light-text);
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.mockup-drive-btn {
    background: var(--deep-red);
    color: var(--white);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.mockup-search-bar {
    background: var(--deep-red);
    color: var(--white);
    padding: 12px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.mockup-states {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mockup-state {
    background: var(--cream);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
}

.mockup-temple-list {
    margin-top: 15px;
}

.mockup-temple-card {
    display: flex;
    gap: 12px;
    background: var(--cream);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.mockup-temple-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    border-radius: 10px;
}

.mockup-temple-info {
    flex: 1;
}

.mockup-temple-name {
    font-weight: 700;
    color: var(--deep-red);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.mockup-temple-location {
    color: var(--light-text);
    font-size: 0.75rem;
}

.mockup-profile {
    text-align: center;
    padding: 20px;
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 20px;
}

.mockup-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--white);
}

.mockup-profile-name {
    font-weight: 700;
    color: var(--deep-red);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.mockup-profile-email {
    color: var(--light-text);
    font-size: 0.85rem;
}

.mockup-profile-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mockup-profile-stat {
    flex: 1;
    background: var(--cream);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--dark-text);
    font-weight: 600;
}

.mockup-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-menu-item {
    background: var(--cream);
    padding: 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--dark-text);
    font-weight: 600;
}

.mockup-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.mockup-product {
    background: var(--cream);
    border-radius: 12px;
    padding: 12px;
}

.mockup-product-img {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    border-radius: 8px;
    margin-bottom: 8px;
}

.mockup-product-name {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.mockup-product-price {
    color: var(--deep-red);
    font-weight: 700;
    font-size: 0.9rem;
}

.mockup-cart-bar {
    background: linear-gradient(135deg, var(--orange), #E85D04);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.mockup-donation-temple {
    text-align: center;
    margin-bottom: 20px;
}

.mockup-donation-temple .mockup-temple-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
}

.mockup-donation-temple .mockup-temple-name {
    font-size: 1rem;
}

.mockup-donation-amounts {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.mockup-amount {
    background: var(--cream);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--deep-red);
    font-size: 0.9rem;
}

.mockup-donation-purpose {
    background: var(--cream);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.mockup-donate-btn {
    background: linear-gradient(135deg, var(--deep-red), #5C0F10);
    color: var(--white);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.screen-content {
    position: relative;
}

.screen-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(127,20,22,0.1);
    position: absolute;
    top: -30px;
    left: -20px;
    z-index: 0;
    line-height: 1;
}

.screen-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.screen-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 2;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.screen-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.screen-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.screen-feature i {
    font-size: 2rem;
    color: var(--saffron);
    margin-top: 0.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255,204,51,0.3));
}

.screen-feature h4 {
    font-size: 1.3rem;
    color: var(--deep-red);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.screen-feature p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.9;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,204,51,0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,204,51,0.08), rgba(255,204,51,0.03));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(127,20,22,0.15);
}

.feature-icon-large {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--deep-red);
    display: inline-block;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon-large {
    color: var(--orange);
}

.feature-icon-large i {
    font-size: inherit;
    filter: drop-shadow(0 4px 15px rgba(127,20,22,0.2));
}

.feature-card h3 {
    color: var(--deep-red);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    position: relative;
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,204,51,0.15);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,204,51,0.06), rgba(255,204,51,0.02));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(127,20,22,0.12);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--saffron);
    opacity: 0.3;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--deep-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255,204,51,0.4);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-red);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.testimonial-quote-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,204,51,0.2);
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, var(--deep-red) 0%, #5C0F10 50%, var(--deep-red) 100%),
        radial-gradient(circle at top right, rgba(255,204,51,0.15) 0%, transparent 50%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(255,204,51,0.4));
}

.footer-section h3,
.footer-section h4 {
    color: var(--saffron);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.footer-tagline {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--saffron);
    font-weight: 600;
}

.footer-motto {
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--saffron);
    text-shadow: 0 0 10px rgba(255,204,51,0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 1;
}

.footer-devotion {
    margin-top: 0.75rem;
    color: var(--saffron);
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-devotion i {
    color: #E53935;
    margin: 0 6px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Button Styles - Merged with hero button styles above */

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: var(--deep-red);
    box-shadow: 0 6px 25px rgba(255,204,51,0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    box-shadow: 0 12px 48px rgba(255,204,51,0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--saffron);
    box-shadow: 0 0 20px rgba(255,204,51,0.3);
}

.btn-secondary:hover {
    background: var(--saffron);
    color: var(--deep-red);
    box-shadow: 0 12px 48px rgba(255,204,51,0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .opportunities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    section {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-mantra {
        font-size: 2rem;
    }

    .narrative-lead {
        font-size: 1.3rem;
    }

    .narrative-body {
        font-size: 1.05rem;
    }

    .screen-item,
    .screen-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screen-item.reverse .screen-visual,
    .screen-item.reverse .screen-content {
        order: initial;
    }
    
    .drives-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-stats {
        justify-content: center;
    }

    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .promise-box {
        padding: 2.5rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h3 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    /* Navigation */
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        z-index: 999;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo {
        height: 40px;
    }

    .navbar {
        padding: 1rem 0;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 90px 0 50px;
    }

    .hero-greeting {
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-mantra {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .namaskaram {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .narrative-lead {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .narrative-body {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
        padding-top: 1.25rem;
    }

    .stat-item {
        padding: 1.5rem 2rem;
        min-width: 140px;
    }

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

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

    /* Sections */
    section {
        padding: 4rem 0;
    }

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

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

    /* About Section */
    .lead {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .divine-quote {
        padding: 2rem 1.5rem;
    }

    .divine-quote p,
    .divine-quote .quote-text {
        font-size: 1.5rem;
    }

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

    /* Drives Section */
    .drives-intro {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .impact-stat {
        min-width: 120px;
        padding: 1.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .opportunity-card {
        padding: 2rem;
    }

    .opportunity-icon {
        font-size: 3rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .seva-quote,
    .purity-quote {
        padding: 2rem 1.5rem;
    }

    /* Products Section */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

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

    .promise-box {
        padding: 2rem 1.5rem;
    }

    .promise-box h3 {
        font-size: 1.8rem;
    }

    .promise-box p {
        font-size: 1rem;
    }

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

    .benefit-item {
        padding: 1.5rem;
    }

    /* Screens Section */
    .screen-number {
        font-size: 4rem;
        top: -20px;
        left: -10px;
    }

    .screen-content h3 {
        font-size: 1.8rem;
    }

    .screen-intro {
        font-size: 1.1rem;
    }

    .screen-feature h4 {
        font-size: 1.1rem;
    }

    .screen-feature p {
        font-size: 0.95rem;
    }

    .phone-mockup {
        transform: none;
        max-width: 280px;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .feature-icon-large {
        font-size: 4rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-quote-icon {
        font-size: 2.5rem;
    }

    .large-quote {
        padding: 2.5rem 1.5rem;
    }

    .large-quote .quote-text {
        font-size: 1.5rem;
    }

    .large-quote .quote-translation {
        font-size: 1rem;
    }

    /* Buttons & Actions */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-actions {
        gap: 2rem;
    }

    .app-stores {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .store-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-mantra {
        font-size: 1.5rem;
    }

    .narrative-lead {
        font-size: 1.1rem;
    }

    .narrative-body {
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-item {
        padding: 1.25rem 1.5rem;
        min-width: 120px;
    }

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

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

    .hero-stats {
        gap: 1rem;
    }

    .opportunity-card,
    .product-card,
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 2rem 1.25rem;
    }

    .cta-box h3 {
        font-size: 1.6rem;
    }

    .promise-box {
        padding: 1.5rem;
    }

    .promise-box h3 {
        font-size: 1.6rem;
    }

    .screen-number {
        font-size: 3rem;
    }

    .screen-content h3 {
        font-size: 1.6rem;
    }

    .phone-mockup {
        max-width: 240px;
    }

    .floating-om {
        font-size: 250px;
    }

    .title-line.highlight::after {
        width: 80%;
    }

    .hero-narrative {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .title-decoration {
        width: 80px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-mantra {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-item {
        padding: 1rem 1.25rem;
        min-width: 100px;
    }

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

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch-friendly targets */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
}

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

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
