/* ==========================================================================
   Sanga Dairy Web Portal — Stylesheet
   Theme: Royal Sapphire (#0061A4) Glassmorphic Midnight Design System
   ========================================================================== */

:root {
    /* Brand Color Palette (Matched to Android App Color.kt) */
    --dairy-primary: #0061A4;
    --dairy-primary-hover: #0077C8;
    --dairy-primary-container: #D1E4FF;
    --dairy-on-primary-container: #001D36;
    
    --bg-dark: #070C16;
    --bg-card: rgba(18, 26, 43, 0.75);
    --bg-card-hover: rgba(26, 38, 62, 0.9);
    --border-color: rgba(209, 228, 255, 0.12);
    --border-glow: rgba(0, 97, 164, 0.4);
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    --accent-emerald: #10B981;
    --accent-amber: #F59E0B;
    --accent-rose: #F43F5E;
    --accent-indigo: #6366F1;
    --accent-purple: #A855F7;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows & Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 35px rgba(0, 97, 164, 0.35);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Material Symbols Icon Utility */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #0061A4 50%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #0061A4 0%, #004B80 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 97, 164, 0.4);
    border: 1px solid rgba(209, 228, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 97, 164, 0.6);
    background: linear-gradient(135deg, #0077C8 0%, #0061A4 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(209, 228, 255, 0.3);
    transform: translateY(-2px);
}

.pulse-glow {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 97, 164, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 97, 164, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 97, 164, 0); }
}

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

.btn-main {
    font-weight: 700;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-accent {
    background: rgba(0, 97, 164, 0.2);
    color: #60A5FA;
    border: 1px solid rgba(0, 97, 164, 0.4);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 12, 22, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.85rem 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--dairy-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Language Dropdown Selector & India Badge */
.india-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

.lang-select {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.lang-select option {
    background: #121A2B;
    color: #FFF;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5.5rem 0 4rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 97, 164, 0.28) 0%, rgba(7, 12, 22, 0) 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    font-size: 3.25rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 92%;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

/* Live Download Trust Counter Bar */
.download-counter-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(18, 26, 43, 0.65);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 0.85rem 1.5rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.counter-icon {
    font-size: 26px;
    color: #60A5FA;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1.1;
}

.counter-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.counter-divider {
    width: 1px;
    height: 28px;
    background: var(--border-color);
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-item .material-symbols-outlined {
    color: var(--accent-emerald);
    font-size: 20px;
}

/* Phone Screen Mockup */
.hero-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    background: #121A2B;
    border-radius: 42px;
    padding: 14px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 2px solid var(--border-color);
}

.phone-screen {
    background: #090E1A;
    border-radius: 30px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-header-demo {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.app-card-demo {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.card-title-demo {
    font-weight: 700;
    color: var(--accent-emerald);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-row-demo {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.card-total-demo {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-main);
}

.app-action-demo {
    background: var(--dairy-primary);
    color: #FFF;
    text-align: center;
    padding: 0.65rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Features Grid */
.features-section {
    padding: 6rem 0;
    background: rgba(12, 18, 32, 0.6);
    border-top: 1px solid var(--border-color);
}

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

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bg-blue { background: rgba(0, 97, 164, 0.2); color: #60A5FA; }
.bg-emerald { background: rgba(16, 185, 129, 0.18); color: #34D399; }
.bg-amber { background: rgba(245, 158, 11, 0.18); color: #FBBF24; }
.bg-indigo { background: rgba(99, 102, 241, 0.18); color: #A5B4FC; }
.bg-rose { background: rgba(244, 63, 94, 0.18); color: #FB7185; }
.bg-purple { background: rgba(168, 85, 247, 0.18); color: #C084FC; }

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
}

.trust-card-main {
    background: linear-gradient(135deg, rgba(18, 26, 43, 0.95) 0%, rgba(26, 38, 62, 0.95) 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.trust-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-header h2 {
    font-size: 2.2rem;
}

.trust-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 900px;
}

.trust-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.step-card {
    background: rgba(7, 12, 22, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.18);
    color: var(--accent-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-guarantee-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.trust-guarantee-box .material-symbols-outlined {
    color: var(--accent-emerald);
    font-size: 28px;
    flex-shrink: 0;
}

/* Gallery Auto-Rotating Banner Carousel & Controls */
.gallery-slider-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .gallery-slider-container {
        max-width: 100%;
        padding: 0;
    }
    .gallery-card {
        padding: 1rem;
    }
    .gallery-img-wrapper {
        height: 440px;
    }
    .prev-btn { left: 2px; width: 40px; height: 40px; }
    .next-btn { right: 2px; width: 40px; height: 40px; }
}

.gallery-grid {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-card {
    width: 100%;
    flex: 0 0 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.gallery-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.gallery-img-wrapper {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 18px;
    background: #050811;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    cursor: zoom-in;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: var(--transition);
}

.carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 26, 43, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--dairy-primary);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -65px; }
.next-btn { right: -65px; }

@media (max-width: 768px) {
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--dairy-primary);
    width: 28px;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(0, 97, 164, 0.6);
}

/* Keyframes for smooth fadeIn transition */
@keyframes fadeIn {
    from { opacity: 0.3; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 7, 14, 0.94);
    backdrop-filter: blur(15px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #FFF;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.04);
}

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--text-main);
}

.gallery-caption p {
    font-size: 0.88rem;
    color: var(--text-muted);
}
.how-section {
    padding: 6rem 0;
    background: rgba(12, 18, 32, 0.6);
    border-top: 1px solid var(--border-color);
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dairy-primary);
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 97, 164, 0.5);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews Grid */
.reviews-section {
    padding: 6rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}

.stars {
    color: var(--accent-amber);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.reviewer-info strong {
    color: var(--text-main);
}

.reviewer-info span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* CTA Banner */
.cta-banner-section {
    padding: 4rem 0 6rem;
}

.cta-card {
    background: linear-gradient(135deg, #003F6C 0%, #0F172A 100%);
    border: 1px solid rgba(0, 97, 164, 0.5);
    border-radius: 28px;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-card h2 {
    font-size: 2.5rem;
    max-width: 700px;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
}

/* Footer */
.footer {
    background: #04070E;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

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

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    background: #020408;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 34px;
        height: 34px;
    }

    .hero-title {
        font-size: 1.85rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
    }

    .nav-links {
        display: none !important;
    }

    /* Hide navbar download button on mobile so mobile navbar fits 100% */
    .nav-right .btn-primary {
        display: none !important;
    }

    .nav-right {
        gap: 0.4rem;
    }

    .india-badge, .lang-selector {
        padding: 0.25rem 0.4rem;
        font-size: 0.75rem;
    }

    .features-grid, .how-grid, .reviews-grid, .trust-steps-grid {
        grid-template-columns: 1fr !important;
    }

    .phone-mockup {
        width: 100% !important;
        max-width: 310px !important;
    }

    .feature-card, .trust-card-main, .cta-card {
        padding: 1.25rem 1rem !important;
    }

    .section-title {
        font-size: 1.65rem !important;
    }

    .cta-card h2 {
        font-size: 1.65rem !important;
    }
}
