/* AfghanG - Ultra Modern AI/Tech Website */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Background - Matching Logo */
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-card: rgba(26, 26, 26, 0.6);

    /* Softer Green - Eye-friendly (reduced brightness by 30%) */
    --primary: #00CC33;
    --primary-glow: rgba(0, 204, 51, 0.3);
    --primary-dim: rgba(0, 204, 51, 0.08);

    /* Softer Text - Reduced white brightness */
    --text-primary: #E8E8E8;
    --text-secondary: #A0A0A0;
    --text-muted: #6B6B6B;

    /* Softer Accents */
    --accent-red: #CC0033;
    --accent-purple: #9922CC;

    /* Typography */
    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(204, 0, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(176, 38, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: bgShift 20s ease infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
    /* Performance: Only render sections when near viewport */
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tech-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

/* Glowing Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--primary-glow), 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px var(--primary-glow), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn-download {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 65, 0.3);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
}

.btn-download:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-3px) scale(1.02);
}

.btn-download i {
    font-size: 1.5rem;
    color: var(--primary);
}

.btn-download small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.btn-download strong {
    display: block;
    font-size: 1rem;
}

.btn-download-large {
    padding: 1.25rem 2rem;
}

/* Official App Store Badges */
.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.store-badge .badge-img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.store-badge:hover .badge-img {
    filter: drop-shadow(0 10px 25px rgba(0, 255, 65, 0.3));
}

.store-badge-large .badge-img {
    height: 56px;
}

.footer-badge .badge-img {
    height: 45px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 4px 30px rgba(0, 255, 65, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-img {
    height: 40px;
    width: auto;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--font-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-red));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

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

.nav-link.active {
    color: var(--primary);
}

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

.nav-cta {
    padding: 0.75rem 1.75rem;
}

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

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

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

/* Afghan Mountain Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Video Overlay - adds tech effect on top of video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.4) 0%,
        rgba(13, 13, 13, 0.3) 50%,
        rgba(13, 13, 13, 0.6) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

/* Afghan Mountain Landscape */
.afghan-sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #0D0D0D 0%,
        #1a0d0d 30%,
        #0d1a0d 60%,
        #0D0D0D 100%
    );
    animation: skyShift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes skyShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Mountain Stars - representing both tech and Afghan night skies */
.mountain-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 204, 51, 0.8), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(204, 0, 51, 0.6), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 204, 51, 0.6), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 33% 85%, rgba(204, 0, 51, 0.5), transparent),
        radial-gradient(1px 1px at 15% 60%, rgba(0, 204, 51, 0.7), transparent),
        radial-gradient(2px 2px at 70% 40%, rgba(255, 255, 255, 0.6), transparent);
    background-size: 200% 200%;
    background-position: 0 0;
    animation: starsFloat 60s linear infinite;
    z-index: 2;
    opacity: 0.4;
}

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

/* Mountain Layers - representing Hindu Kush and Afghan peaks */
.mountain-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.mountain-far {
    height: 50%;
    clip-path: polygon(
        0% 100%,
        0% 80%,
        5% 75%,
        10% 78%,
        15% 70%,
        20% 65%,
        25% 68%,
        30% 60%,
        35% 58%,
        40% 62%,
        45% 55%,
        50% 50%,
        55% 52%,
        60% 48%,
        65% 55%,
        70% 60%,
        75% 58%,
        80% 65%,
        85% 70%,
        90% 68%,
        95% 75%,
        100% 80%,
        100% 100%
    );
    background: linear-gradient(to bottom, rgba(100, 50, 50, 0.8), rgba(60, 30, 30, 0.6));
    opacity: 1;
    z-index: 3;
    animation: mountainFloat 40s ease-in-out infinite;
}

.mountain-mid {
    height: 60%;
    clip-path: polygon(
        0% 100%,
        0% 70%,
        8% 65%,
        12% 68%,
        18% 58%,
        22% 55%,
        28% 60%,
        32% 50%,
        38% 45%,
        42% 48%,
        48% 40%,
        52% 38%,
        58% 42%,
        62% 35%,
        68% 40%,
        72% 45%,
        78% 50%,
        82% 55%,
        88% 60%,
        92% 65%,
        100% 70%,
        100% 100%
    );
    background: linear-gradient(to bottom,
        rgba(204, 0, 51, 0.4) 0%,
        rgba(80, 40, 40, 0.9) 50%,
        rgba(40, 20, 20, 0.95) 100%
    );
    opacity: 1;
    z-index: 4;
    animation: mountainFloat 30s ease-in-out infinite reverse;
}

.mountain-near {
    height: 70%;
    clip-path: polygon(
        0% 100%,
        0% 60%,
        5% 58%,
        10% 62%,
        15% 55%,
        20% 50%,
        25% 52%,
        30% 45%,
        35% 42%,
        40% 38%,
        45% 35%,
        50% 30%,
        55% 33%,
        60% 28%,
        65% 35%,
        70% 40%,
        75% 45%,
        80% 50%,
        85% 55%,
        90% 58%,
        95% 62%,
        100% 65%,
        100% 100%
    );
    background: linear-gradient(to bottom,
        rgba(0, 204, 51, 0.3) 0%,
        rgba(60, 60, 60, 0.9) 40%,
        rgba(30, 30, 30, 0.98) 100%
    );
    opacity: 1;
    z-index: 5;
    animation: mountainFloat 25s ease-in-out infinite;
}

@keyframes mountainFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.01);
    }
}

/* Animated Tech Grid */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 30s linear infinite;
    opacity: 0.4;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Floating Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: orbFloat 10s ease-in-out infinite;
    z-index: 7;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 15%;
    left: 10%;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: -5s;
}

.glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    animation-delay: -3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, -80px) scale(0.9); }
    75% { transform: translate(-60px, -30px) scale(1.05); }
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    opacity: 0.3;
    pointer-events: none;
}

/* Holographic Ring */
.holographic-ring {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(204, 0, 51, 0.2);
    border-radius: 50%;
    transform: translateY(-50%) rotateY(60deg);
    animation: ringPulse 4s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(204, 0, 51, 0.2),
        inset 0 0 20px rgba(204, 0, 51, 0.15);
}

.holographic-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(204, 0, 51, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes ringPulse {
    0%, 100% {
        transform: translateY(-50%) rotateY(60deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50%) rotateY(60deg) scale(1.1);
        opacity: 0.5;
    }
}

/* Circuit Pattern */
.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 65, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(204, 0, 51, 0.15) 0%, transparent 50%);
    opacity: 0.5;
}

.circuit-pattern::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.5), transparent);
    top: 30%;
    left: 20%;
    animation: circuitFlow 3s linear infinite;
}

.circuit-pattern::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(204, 0, 51, 0.5), transparent);
    top: 40%;
    right: 25%;
    animation: circuitFlow 4s linear infinite;
}

@keyframes circuitFlow {
    0% { opacity: 0; transform: translateX(0) translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100px) translateY(100px); }
}

/* Data Stream Effect */
.data-stream {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.05) 0px,
        rgba(0, 255, 65, 0.05) 2px,
        transparent 2px,
        transparent 10px
    );
    animation: streamFlow 2s linear infinite;
    opacity: 0.6;
    transform: perspective(500px) rotateX(45deg);
}

@keyframes streamFlow {
    0% { transform: perspective(500px) rotateX(45deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(45deg) translateY(10px); }
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-badge i {
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-red));
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-glow);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.1); opacity: 0.8; }
}

.section-divider.left {
    margin: 2rem 0;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Glass Card Effect */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2);
}

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

/* About Section */
.about-section {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.75rem;
    font-weight: 600;
}

.about-highlight {
    padding: 1.5rem;
    background: rgba(0, 255, 65, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    margin-top: 1.75rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dim) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
    transform: scale(1.05);
}

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

.stat-number {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Pride Section */
.pride-section {
    background: var(--bg-primary);
}

.pride-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pride-card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pride-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-dim), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
}

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

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

.pride-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    z-index: 1;
}

.pride-card > * {
    position: relative;
    z-index: 2;
}

.pride-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 255, 65, 0.3);
}

.pride-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dim) 0%, transparent 100%);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.pride-card:hover .pride-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 40px var(--primary-glow);
}

.pride-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.875rem;
    font-weight: 700;
}

.pride-card p {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
}

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

.feature-card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 14px;
    font-size: 1.75rem;
    color: var(--bg-primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.7;
}

/* Detailed Feature Cards */
.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.feature-card-detailed {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-detailed.highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, var(--bg-card) 100%);
}

.feature-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card-detailed:hover::before {
    left: 100%;
}

.feature-card-detailed:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2);
}

.feature-icon-large {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--bg-primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card-detailed:hover .feature-icon-large {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.feature-card-detailed h3 {
    font-size: 1.4rem;
    margin-bottom: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-secondary);
    font-size: 0.925rem;
    margin-bottom: 0.625rem;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.feature-list i {
    color: var(--primary);
    font-size: 0.875rem;
}

/* Paisa Section */
.paisa-section {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.03) 0%, var(--bg-primary) 100%);
    position: relative;
}

.paisa-hero {
    text-align: center;
    margin: 3rem 0;
}

.paisa-conversion {
    display: inline-block;
    padding: 2rem 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.3);
}

.conversion-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.paisa-amount {
    color: var(--primary);
}

.usd-amount {
    color: var(--accent-red);
}

.conversion-display i {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

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

.paisa-card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    text-align: center;
}

.paisa-card.highlight {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.08) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.paisa-card.highlight::before {
    content: 'BONUS';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: var(--bg-primary);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
}

.paisa-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.25);
}

.paisa-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--bg-primary);
    transition: all 0.4s ease;
}

.paisa-card:hover .paisa-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.paisa-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
    color: var(--text-primary);
}

.paisa-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.paisa-cta {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(222, 122, 46, 0.1) 100%);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.paisa-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 0.875rem;
    color: var(--text-primary);
}

.paisa-cta-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.paisa-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.paisa-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.paisa-note i {
    color: var(--primary);
}

/* News Section */
.news-section {
    background: var(--bg-primary);
}

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

.news-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 255, 65, 0.3);
}

.news-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(222, 122, 46, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 2rem;
}

.news-date {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.news-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.news-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 15px;
}

.news-note i {
    color: var(--primary);
}

/* Community Section */
.community-section {
    background: var(--bg-primary);
}

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

.community-card {
    padding: 2rem 1.75rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.community-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 255, 65, 0.3);
    box-shadow: 0 25px 70px rgba(0, 255, 65, 0.25);
}

.community-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dim) 0%, transparent 100%);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    font-size: 2.25rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.15);
    box-shadow: 0 0 50px var(--primary-glow);
}

.community-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
    font-weight: 700;
}

.community-card p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.community-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.community-card:hover .community-badge {
    transform: scale(1.1);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.community-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, transparent 100%);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: 16px;
}

.community-cta h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.community-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

/* Download Section */
.download-section {
    background: var(--bg-secondary);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.download-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 2rem;
}

.download-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.download-highlight {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-note {
    color: var(--text-muted);
    font-size: 1rem;
}

.download-note i {
    color: var(--primary);
}

/* Company Section */
.company-section {
    background: var(--bg-primary);
}

.company-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.company-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 800;
}

.company-intro {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.company-mission {
    font-size: 1.5rem;
    padding: 2.5rem;
    background: rgba(0, 255, 65, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    margin: 2rem 0;
    font-weight: 600;
}

.company-logo-section {
    text-align: center;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary);
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
}

.company-badge i {
    font-size: 2rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-family: var(--font-main);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.social-link:hover {
    background: var(--primary);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.footer-column h4 {
    font-family: var(--font-main);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.footer-app-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-app-link:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 65, 0.1);
    transform: translateX(5px);
}

.footer-app-link i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-app-link small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-app-link strong {
    display: block;
    font-size: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    text-align: center;
    color: var(--text-muted);
}

.footer-made {
    margin-top: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px var(--primary-glow);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 40px var(--primary-glow);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    section {
        padding: 4rem 0;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Smaller navbar download button on tablet/mobile */
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 255, 65, 0.2);
        gap: 1.5rem;
    }

    .about-content,
    .company-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* CRITICAL: Disable backdrop-filter on mobile for performance (95% of traffic) */
    .glass-card,
    .feature-card,
    .pride-card,
    .community-card,
    .stat-card,
    .btn-download,
    .footer-app-link,
    .nav-menu.active {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(26, 26, 26, 0.98) !important;
    }

    /* Disable heavy animations on mobile */
    .tech-grid,
    .circuit-pattern,
    .data-stream,
    .glow-orb,
    .mountain-stars,
    .mountain-layer {
        display: none !important;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .hero-cta,
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-download,
    .btn-download-large {
        width: 100%;
        justify-content: center;
    }

    /* Store badges on mobile */
    .store-badge .badge-img {
        height: 50px;
    }

    .store-badge-large .badge-img {
        height: 55px;
    }

    .footer-badge .badge-img {
        height: 45px;
    }

    .pride-grid,
    .features-grid,
    .features-grid-detailed,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-detailed {
        padding: 1.75rem 1.5rem;
    }

    .pride-card,
    .feature-card,
    .community-card,
    .paisa-card {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .paisa-conversion {
        padding: 2rem 2rem;
    }

    .conversion-display {
        flex-direction: column;
        gap: 1rem;
        font-size: 1.5rem;
    }

    .paisa-grid {
        grid-template-columns: 1fr;
    }

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

    .paisa-cta-content h3 {
        font-size: 1.75rem;
    }

    .paisa-cta-buttons {
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-note {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

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

    /* Reduce all card heading sizes on mobile */
    .pride-card h3,
    .feature-card h3,
    .feature-card-detailed h3,
    .community-card h3,
    .paisa-card h3 {
        font-size: 1.2rem;
    }

    /* Reduce all icon sizes on mobile */
    .pride-icon,
    .feature-icon,
    .paisa-icon,
    .community-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Accessibility */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 5px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Images load instantly - no animation */

/* FAQ Section */
.faq-section { background: linear-gradient(135deg, rgba(0, 255, 65, 0.02) 0%, var(--bg-primary) 100%); }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category-title { font-size: 1.5rem; color: var(--primary); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.faq-item { background: var(--bg-card); backdrop-filter: blur(20px); border: 1px solid rgba(0, 255, 65, 0.1); border-radius: 15px; margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--primary); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2); }
.faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
.faq-question h4 { font-size: 1.125rem; color: var(--text-primary); margin: 0; }
.faq-question i { color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.5rem 1.5rem; }
.faq-answer p { color: var(--text-secondary); line-height: 1.8; margin: 0; }

/* Contact Section */
.contact-section { background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-notice { background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(222, 122, 46, 0.1) 100%); border: 2px solid rgba(0, 255, 65, 0.2); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; }
.contact-notice i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.contact-notice h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-notice p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 1rem; }
.contact-details { background: var(--bg-card); border: 1px solid rgba(0, 255, 65, 0.1); border-radius: 16px; padding: 2rem 1.5rem; }
.contact-details h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.125rem; }
.contact-details p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }
.social-links h4 { color: var(--primary); margin-bottom: 1rem; font-size: 1.125rem; }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%); border-radius: 50%; color: var(--bg-primary); font-size: 1.25rem; transition: all 0.3s ease; }
.social-icons a:hover { transform: translateY(-5px); box-shadow: 0 10px 25px var(--primary-glow); }
.contact-form-wrapper { background: var(--bg-card); backdrop-filter: blur(20px); border: 1px solid rgba(0, 255, 65, 0.1); border-radius: 16px; padding: 2rem 1.5rem; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form > p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; color: var(--text-primary); font-weight: 600; margin-bottom: 0.5rem; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; background: rgba(26, 26, 26, 0.6); border: 1px solid rgba(0, 255, 65, 0.2); border-radius: 8px; color: var(--text-primary); font-family: inherit; font-size: 0.95rem; transition: all 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-full { width: 100%; justify-content: center; }
.form-message { margin-top: 1rem; padding: 0.875rem; border-radius: 8px; text-align: center; font-size: 0.95rem; }
.form-message.success { background: rgba(0, 255, 65, 0.1); border: 1px solid var(--primary); color: var(--primary); }
.form-message.error { background: rgba(255, 0, 0, 0.1); border: 1px solid #ff0000; color: #ff6b6b; }
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
