/* ============================================
   VIKRAM RAJENDRA SINGHANIA - OFFICIAL WEBSITE
   "Neo-Indian Governance" Design System
   ============================================ */

/* ---- Google Fonts loaded in HTML ---- */

/* ======================== CSS VARIABLES ======================== */
:root {
    /* Dark Theme (Default) */
    --bg-primary: #0A1628;
    --bg-secondary: #0F1D30;
    --bg-tertiary: #142236;
    --text-primary: #F0EDE8;
    --text-secondary: #A8B2C1;
    --text-muted: #6B7A90;
    --accent-saffron: #FF8C00;
    --accent-gold: #D4AF37;
    --accent-emerald: #0B6623;
    --accent-navy: #0A1628;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --card-bg: rgba(255, 255, 255, 0.03);
    --hover-glow: rgba(255, 140, 0, 0.15);
    --tricolor-saffron: #FF9933;
    --tricolor-white: #FFFFFF;
    --tricolor-green: #138808;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --font-stats: 'Oswald', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg-primary: #F5F0EB;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #EDE7E0;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A5A;
    --text-muted: #8A8A9A;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.8);
    --hover-glow: rgba(255, 140, 0, 0.1);
}

/* ======================== RESET & BASE ======================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

body.loading {
    overflow: hidden;
}

/* Kolam dot-grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--glass-border) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

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

.section {
    padding: 100px 0 60px;
    position: relative;
}

/* ======================== PRELOADER ======================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A1628;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.ashoka-chakra {
    animation: chakraSpin 3s linear infinite;
}

.chakra-spokes {
    transform-origin: 100px 100px;
}

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

.preloader-text {
    margin-top: 30px;
}

.preloader-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.preloader-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--tricolor-saffron), var(--tricolor-white), var(--tricolor-green));
    border-radius: 3px;
    transition: width 0.1s linear;
}

.preloader-percent {
    font-family: var(--font-stats);
    font-size: 0.9rem;
    color: var(--accent-saffron);
    min-width: 36px;
}

/* ======================== NAVIGATION ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 4px 30px var(--glass-shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-party {
    font-size: 0.65rem;
    color: var(--accent-saffron);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-saffron);
    background: var(--hover-glow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-saffron);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    gap: 4px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.lang-option {
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition);
}

.lang-option.active {
    background: var(--accent-saffron);
    color: #fff;
}

.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: all var(--transition);
}

.theme-toggle:hover {
    color: var(--accent-saffron);
    border-color: var(--accent-saffron);
}

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 16px 0;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    transition: color var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--accent-saffron);
}

/* ======================== HERO SECTION ======================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 22, 40, 0.75) 0%,
        rgba(10, 22, 40, 0.5) 40%,
        rgba(10, 22, 40, 0.65) 100%
    );
}

[data-theme="light"] .hero-video-overlay {
    background: linear-gradient(135deg,
        rgba(245, 240, 235, 0.82) 0%,
        rgba(245, 240, 235, 0.6) 40%,
        rgba(245, 240, 235, 0.78) 100%
    );
}

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

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(11, 102, 35, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-saffron);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-saffron);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-name-line {
    display: block;
    color: var(--text-primary);
}

.hero-name-accent {
    color: var(--accent-saffron);
    position: relative;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    min-height: 30px;
    margin-bottom: 8px;
    border-right: 2px solid var(--accent-saffron);
    padding-right: 4px;
    display: inline-block;
}

.hero-tagline-hindi {
    font-family: var(--font-hindi);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-saffron), #E67A00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--accent-saffron);
    color: var(--accent-saffron);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Portrait */
.hero-portrait {
    flex-shrink: 0;
    position: relative;
}

.portrait-frame {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.portrait-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--tricolor-saffron), var(--tricolor-white), var(--tricolor-green), var(--tricolor-saffron));
    z-index: -1;
    animation: portraitGlow 6s linear infinite;
    opacity: 0.5;
}

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

.portrait-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50%;
    border: 2px solid var(--accent-saffron);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--accent-saffron);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ======================== MANDALA DIVIDER ======================== */
.mandala-divider {
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.mandala-svg {
    width: 100%;
    max-width: 600px;
    height: 60px;
}

/* ======================== MARQUEE TICKER ======================== */
.marquee-section {
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.05), rgba(255, 140, 0, 0.1));
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee-badge {
    background: var(--accent-saffron);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.marquee-badge.breaking {
    background: #DC2626;
    animation: breakingPulse 1.5s ease-in-out infinite;
}

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

.marquee-separator {
    color: var(--accent-saffron);
    opacity: 0.5;
    font-size: 0.6rem;
}

/* ======================== SECTION HEADERS ======================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-saffron);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.text-accent {
    color: var(--accent-saffron);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ======================== GLASS CARD ======================== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* ======================== ABOUT SECTION ======================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.about-stat {
    text-align: center;
    padding: 16px 8px;
}

.about-stat-num {
    font-family: var(--font-stats);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-saffron);
    display: block;
}

.about-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-content {
    padding-top: 20px;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-bio p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag {
    padding: 6px 16px;
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--accent-saffron);
    font-weight: 500;
}

/* ======================== TIMELINE ======================== */
.timeline-section {
    margin-top: 40px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.timeline-wrapper {
    overflow-x: auto;
    padding: 20px 0 40px;
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-saffron) transparent;
}

.timeline-wrapper::-webkit-scrollbar {
    height: 4px;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-saffron);
    border-radius: 4px;
}

.timeline-track {
    display: flex;
    gap: 0;
    min-width: max-content;
    position: relative;
    padding: 0 40px;
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-saffron), var(--accent-gold), var(--accent-saffron), transparent);
    opacity: 0.3;
}

.timeline-node {
    flex-shrink: 0;
    width: 220px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--accent-saffron);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    margin: 12px auto 8px;
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.timeline-node:hover .timeline-dot {
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.timeline-year {
    font-family: var(--font-stats);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-saffron);
    margin-bottom: 12px;
}

.timeline-card {
    padding: 20px 16px;
    text-align: left;
    opacity: 0.7;
    transition: all var(--transition);
}

.timeline-node:hover .timeline-card {
    opacity: 1;
    transform: translateY(-4px);
}

.timeline-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================== VISION SECTION ======================== */
.vision-section {
    position: relative;
}

.vision-bg-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 700px;
    opacity: 0.03;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M200 20 C220 40 280 60 290 100 C300 140 320 160 310 200 C300 240 320 280 300 320 C280 360 260 380 240 400 C220 420 200 440 180 420 C160 400 120 380 100 340 C80 300 60 260 80 220 C100 180 80 140 100 100 C120 60 160 40 200 20Z' fill='%23FF8C00' /%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.hex-item {
    perspective: 800px;
}

.hex-shape {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hex-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.hex-shape:hover::before {
    opacity: 1;
}

.hex-shape:hover {
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
}

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

.hex-icon {
    margin-bottom: 16px;
}

.hex-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hex-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================== ACHIEVEMENTS SECTION ======================== */
.achievements-section {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), var(--bg-secondary), rgba(10, 22, 40, 0.5));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 32px 16px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all var(--transition);
    transform-style: preserve-3d;
}

.stat-card:hover {
    border-color: rgba(255, 140, 0, 0.3);
}

.stat-icon {
    margin-bottom: 16px;
}

.stat-number {
    font-family: var(--font-stats);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-saffron);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-stats);
    font-size: 1rem;
    color: var(--accent-gold);
    margin-top: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Achievement Cards */
.achievement-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.achievement-card {
    padding: 28px;
}

.achievement-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.achievement-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.achievement-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================== GALLERY SECTION ======================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-saffron);
    color: #fff;
    border-color: var(--accent-saffron);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

/* Image Cropping Strategies */
.img-crop-airport {
    /* Crop to center portion of the image - the actual photo */
}

.img-crop-airport img {
    object-position: center 42%;
}

.img-crop-walking img {
    object-position: center 48%;
}

.img-crop-flowers img {
    object-position: center 55%;
}

.img-crop-birthday img {
    object-position: center 55%;
}

.img-crop-rally img {
    object-position: 60% 60%;
}

.img-crop-collage img {
    object-position: center 40%;
}

.img-crop-victory img {
    object-position: 30% 70%;
}

.img-crop-sankranti img {
    object-position: 20% 80%;
}

.img-crop-sankranti-news img {
    object-position: 20% 80%;
}

/* Overlay to hide party symbols */
.img-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 22, 40, 0.3) 0%,
        transparent 30%,
        transparent 60%,
        rgba(10, 22, 40, 0.5) 100%
    );
    pointer-events: none;
}

.img-heavy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 22, 40, 0.5) 0%,
        rgba(10, 22, 40, 0.1) 30%,
        rgba(10, 22, 40, 0.1) 50%,
        rgba(10, 22, 40, 0.7) 80%,
        rgba(10, 22, 40, 0.9) 100%
    );
    pointer-events: none;
}

[data-theme="light"] .img-blur-overlay {
    background: linear-gradient(180deg,
        rgba(245, 240, 235, 0.3) 0%,
        transparent 30%,
        transparent 60%,
        rgba(245, 240, 235, 0.5) 100%
    );
}

[data-theme="light"] .img-heavy-overlay {
    background: linear-gradient(180deg,
        rgba(245, 240, 235, 0.5) 0%,
        rgba(245, 240, 235, 0.1) 30%,
        rgba(245, 240, 235, 0.1) 50%,
        rgba(245, 240, 235, 0.7) 80%,
        rgba(245, 240, 235, 0.9) 100%
    );
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-caption {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-saffron);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    margin-top: 16px;
    color: #fff;
    font-size: 1rem;
}

/* ======================== NEWS SECTION ======================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    overflow: hidden;
}

.news-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--accent-saffron);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.news-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-saffron);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-read-more:hover {
    gap: 8px;
}

/* ======================== QUIZ SECTION ======================== */
.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
}

.quiz-progress {
    margin-bottom: 40px;
    position: relative;
}

.quiz-progress-bar {
    height: 3px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 3px;
    position: relative;
    margin-bottom: 20px;
}

.quiz-progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%;
    background: var(--accent-saffron);
    border-radius: 3px;
    transition: width var(--transition);
}

.quiz-progress-bar[data-step="1"]::after { width: 25%; }
.quiz-progress-bar[data-step="2"]::after { width: 50%; }
.quiz-progress-bar[data-step="3"]::after { width: 75%; }
.quiz-progress-bar[data-step="4"]::after { width: 100%; }

.quiz-steps {
    display: flex;
    justify-content: space-between;
}

.quiz-step {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
}

.quiz-step.active {
    background: var(--accent-saffron);
    border-color: var(--accent-saffron);
    color: #fff;
}

.quiz-step.completed {
    background: var(--accent-emerald);
    border-color: var(--accent-emerald);
    color: #fff;
}

.quiz-slide {
    display: none;
}

.quiz-slide.active {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

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

.quiz-slide h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.quiz-instruction {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.quiz-option {
    cursor: pointer;
}

.quiz-option input { display: none; }

.quiz-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.quiz-option input:checked + .quiz-option-box {
    border-color: var(--accent-saffron);
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-saffron);
}

.quiz-option-box:hover {
    border-color: rgba(255, 140, 0, 0.3);
}

.quiz-nav-btns {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 24px;
}

/* Rating stars */
.rating-categories {
    margin-bottom: 24px;
}

.rating-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
}

.rating-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.5rem;
    color: var(--glass-border);
    cursor: pointer;
    transition: color var(--transition);
}

.star.filled,
.star:hover {
    color: var(--accent-gold);
}

/* Priority drag list */
.priority-list {
    margin-bottom: 20px;
}

.priority-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    cursor: grab;
    transition: all var(--transition);
    user-select: none;
}

.priority-item:active {
    cursor: grabbing;
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--accent-saffron);
}

.priority-item.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}

.drag-handle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.priority-rank {
    margin-left: auto;
    font-family: var(--font-stats);
    font-weight: 700;
    color: var(--accent-saffron);
}

/* Demographics */
.demo-form {
    margin-bottom: 24px;
}

.demo-field {
    margin-bottom: 20px;
}

.demo-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.demo-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.demo-option {
    cursor: pointer;
}

.demo-option input { display: none; }

.demo-option span {
    display: block;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.demo-option input:checked + span {
    border-color: var(--accent-saffron);
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-saffron);
}

/* Quiz results */
.quiz-results-content {
    text-align: center;
}

.quiz-success-icon {
    margin-bottom: 20px;
}

.quiz-results-content h3 {
    margin-bottom: 12px;
}

.quiz-chart-container {
    margin: 30px auto;
    max-width: 300px;
}

.quiz-schemes {
    margin: 30px 0;
    text-align: left;
}

.quiz-schemes h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.scheme-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scheme-chip {
    padding: 8px 16px;
    background: rgba(11, 102, 35, 0.1);
    border: 1px solid rgba(11, 102, 35, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-emerald);
}

/* ======================== SCHEMES SECTION ======================== */
.schemes-search {
    text-align: center;
    margin-bottom: 40px;
}

.schemes-search-input {
    width: 100%;
    max-width: 500px;
    padding: 14px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-body);
    margin-bottom: 16px;
    outline: none;
    transition: border-color var(--transition);
}

.schemes-search-input:focus {
    border-color: var(--accent-saffron);
}

.schemes-search-input::placeholder {
    color: var(--text-muted);
}

.schemes-filter-btns {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scheme-card {
    padding: 28px;
    transition: all var(--transition);
}

.scheme-card.hidden {
    display: none;
}

.scheme-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 102, 35, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.scheme-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.scheme-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.scheme-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(11, 102, 35, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-emerald);
    margin-bottom: 12px;
}

.scheme-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-saffron);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ======================== GRIEVANCE SECTION ======================== */
.grievance-section {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.grievance-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: start;
}

.grievance-form-container {
    padding: 36px;
}

.grievance-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.grievance-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 8px 14px;
    background: var(--glass-bg);
    border-radius: 50px;
    transition: all var(--transition);
}

.grievance-step span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
}

.grievance-step.active {
    color: var(--accent-saffron);
    background: rgba(255, 140, 0, 0.1);
}

.grievance-step.active span {
    background: var(--accent-saffron);
    color: #fff;
}

.grievance-step.completed {
    color: var(--accent-emerald);
}

.grievance-step.completed span {
    background: var(--accent-emerald);
    color: #fff;
}

.grievance-slide {
    display: none;
}

.grievance-slide.active {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

.grievance-slide h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.grievance-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.gcat-option {
    cursor: pointer;
}

.gcat-option input { display: none; }

.gcat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.gcat-option input:checked + .gcat-box {
    border-color: var(--accent-saffron);
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-saffron);
}

/* Form fields */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-saffron);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Grievance Success */
.grievance-success {
    text-align: center;
    padding: 20px 0;
}

.success-animation svg {
    margin-bottom: 20px;
}

.success-circle {
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    animation: drawCircle 0.8s ease forwards;
}

.success-check {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawCheck 0.5s ease 0.6s forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.tracking-number {
    font-size: 1.1rem;
    margin: 16px 0;
    color: var(--text-primary);
}

.tracking-number strong {
    color: var(--accent-saffron);
    font-family: var(--font-stats);
    font-size: 1.3rem;
}

/* Grievance Sidebar */
.grievance-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grievance-tracker,
.grievance-dashboard {
    padding: 28px;
}

.grievance-tracker h3,
.grievance-dashboard h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.tracker-input-group {
    display: flex;
    gap: 8px;
}

.tracker-input-group input {
    flex: 1;
    padding: 10px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font-body);
}

.tracker-input-group input:focus {
    border-color: var(--accent-saffron);
}

.tracker-input-group input::placeholder {
    color: var(--text-muted);
}

.tracker-result {
    margin-top: 16px;
    font-size: 0.88rem;
}

.dashboard-chart {
    text-align: center;
    margin-bottom: 20px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
}

.dash-stat-num {
    font-family: var(--font-stats);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.dash-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ======================== EVENTS SECTION ======================== */
.events-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: flex;
    gap: 24px;
    padding: 28px;
    align-items: flex-start;
}

.event-date-badge {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-saffron), #E67A00);
    border-radius: var(--radius-sm);
    color: #fff;
}

.event-day {
    font-family: var(--font-stats);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--accent-saffron);
    margin-bottom: 8px;
}

.event-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.6;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

/* Subtle mandala watermark */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 140, 0, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 140, 0, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 48px 40px;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-saffron), var(--accent-gold));
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--accent-saffron);
    color: var(--accent-saffron);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    background: var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.testimonial-dot.active {
    background: var(--accent-saffron);
    transform: scale(1.3);
}

/* ======================== VOLUNTEER SECTION ======================== */
.volunteer-section {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), var(--bg-primary));
}

.volunteer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.volunteer-info .section-title {
    text-align: left;
}

.volunteer-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.volunteer-stats {
    display: flex;
    gap: 32px;
}

.vol-stat-num {
    font-family: var(--font-stats);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-saffron);
    display: block;
}

.vol-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.volunteer-form {
    padding: 36px;
}

.volunteer-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* ======================== CONTACT SECTION ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 28px;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-card p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-card p svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.social-link:hover {
    color: var(--accent-saffron);
    border-color: var(--accent-saffron);
    transform: translateY(-3px);
}

.contact-form {
    padding: 36px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* ======================== FOOTER ======================== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-tricolor {
    height: 3px;
    background: linear-gradient(90deg, var(--tricolor-saffron), var(--tricolor-white), var(--tricolor-green));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-about p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-saffron);
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    border-color: var(--accent-saffron);
}

.newsletter-form button {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 0.82rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.back-to-top {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-saffron);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

/* ======================== SCROLL ANIMATIONS ======================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== RESPONSIVE DESIGN ======================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .lang-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

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

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

    .portrait-frame {
        width: 280px;
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hex-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .grievance-layout {
        grid-template-columns: 1fr;
    }

    .volunteer-content {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0 40px;
    }

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

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

    .portrait-frame {
        width: 220px;
        height: 220px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

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

    .quiz-container {
        padding: 28px 20px;
    }

    .quiz-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .grievance-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .schemes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hex-shape {
        clip-path: none;
        border-radius: var(--radius-lg);
        min-height: auto;
        padding: 32px 24px;
    }

    .event-card {
        flex-direction: column;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline-node {
        width: 180px;
    }

    .volunteer-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

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

    .portrait-frame {
        width: 180px;
        height: 180px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

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

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

    .gallery-item-wide {
        grid-column: span 1;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .grievance-categories {
        grid-template-columns: 1fr;
    }

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

    .about-stats-row {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial-card {
        padding: 28px 16px;
    }

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

/* ======================== HERO SOCIAL BAR ======================== */
.hero-social-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.hero-social-icon:hover svg {
    color: var(--accent-saffron);
}

.hero-social-icon.whatsapp-icon:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-social-icon.whatsapp-icon:hover svg {
    color: #fff;
}

[data-theme="light"] .hero-social-icon {
    background: rgba(10, 22, 40, 0.08);
    border-color: rgba(10, 22, 40, 0.12);
    color: var(--text-secondary);
}

[data-theme="light"] .hero-social-icon:hover {
    background: var(--accent-saffron);
    border-color: var(--accent-saffron);
    color: #fff;
}

[data-theme="light"] .hero-social-icon:hover svg {
    color: #fff;
}

/* ======================== WHATSAPP CHAT WIDGET ======================== */
.whatsapp-widget-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    animation: none;
}

.wa-icon-close { display: none; }
.widget-open .wa-icon-chat { display: none; }
.widget-open .wa-icon-close { display: block; }
.widget-open .whatsapp-float { animation: none; }

@keyframes whatsappPulse {
    0% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* -- Chat Widget Panel -- */
.wa-chat-widget {
    width: 360px;
    margin-bottom: 14px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    box-shadow: 0 12px 48px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.widget-open .wa-chat-widget {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-chat-header {
    background: linear-gradient(135deg, #075E54, #128C7E);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-header-text {
    display: flex;
    flex-direction: column;
}

.wa-header-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.wa-header-status {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.wa-chat-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.2s;
}

.wa-chat-close:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* -- Chat Body -- */
.wa-chat-body {
    padding: 20px 18px;
    background: var(--bg-primary);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23999' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-chat-bubble {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    padding: 14px 16px;
    position: relative;
    margin-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.wa-chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid var(--bg-secondary);
    border-left: 8px solid transparent;
}

.wa-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wa-quick-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.wa-quick-btn:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--accent-saffron);
    color: var(--accent-saffron);
    transform: translateY(-1px);
}

/* -- Chat Footer -- */
.wa-chat-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.wa-chat-input {
    flex: 1;
    padding: 10px 16px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.wa-chat-input::placeholder {
    color: var(--text-muted);
}

.wa-chat-input:focus {
    border-color: #25D366;
}

.wa-chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.wa-chat-send:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* ======================== CARD SHARE BAR ======================== */
.card-share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.card-share-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-share-icons {
    display: flex;
    gap: 8px;
}

.card-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.card-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-share-wa:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.card-share-fb:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.card-share-tw:hover {
    background: #1DA1F2;
    color: #fff;
    border-color: #1DA1F2;
}

/* Lightbox share bar */
.lightbox-share-bar {
    justify-content: center;
    border-top: none;
    padding-top: 16px;
}

.lightbox-share-bar .card-share-label {
    color: rgba(255,255,255,0.6);
}

.lightbox-share-bar .card-share-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

.lightbox-share-bar .card-share-wa:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.lightbox-share-bar .card-share-fb:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.lightbox-share-bar .card-share-tw:hover {
    background: #1DA1F2;
    color: #fff;
    border-color: #1DA1F2;
}

/* ======================== FLOATING SOCIAL SIDEBAR ======================== */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-icon:hover {
    width: 50px;
    padding-left: 4px;
}

.sidebar-fb { background: #1877F2; }
.sidebar-tw { background: #0f1419; }
.sidebar-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sidebar-tg { background: #0088cc; }

[data-theme="light"] .sidebar-tw { background: #1a1a2e; }

/* ======================== SURVEY REPORT SECTION ======================== */
.survey-report-section {
    background: var(--bg-primary);
}

.survey-report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.survey-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.survey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.3);
}

.survey-card-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08) 0%, rgba(212, 175, 55, 0.06) 100%);
    border-color: rgba(255, 140, 0, 0.2);
    padding: 40px 32px;
}

[data-theme="light"] .survey-card {
    background: rgba(255,255,255,0.85);
    border-color: rgba(10, 22, 40, 0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

[data-theme="light"] .survey-card:hover {
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.12);
}

[data-theme="light"] .survey-card-highlight {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.06) 0%, rgba(212, 175, 55, 0.04) 100%);
}

.survey-card-icon {
    margin-bottom: 16px;
}

.survey-card-value {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-saffron);
    line-height: 1;
    margin-bottom: 8px;
}

.survey-card-highlight .survey-card-value {
    font-size: 3.5rem;
}

.survey-card-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.survey-card-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

.survey-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
}

.survey-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-saffron), var(--accent-gold));
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.survey-card.animate-visible .survey-progress-fill {
    width: var(--fill-width, 0%);
}

/* Survey Summary */
.survey-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

[data-theme="light"] .survey-summary {
    background: rgba(255,255,255,0.85);
    border-color: rgba(10, 22, 40, 0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.survey-summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.survey-summary-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-saffron);
}

.survey-summary-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.survey-summary-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Survey CTA */
.survey-cta {
    text-align: center;
    margin-top: 36px;
}

.survey-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Survey Report Responsive */
@media (max-width: 1024px) {
    .survey-report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .survey-card-highlight {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .survey-report-grid {
        grid-template-columns: 1fr;
    }
    .survey-card-highlight {
        grid-column: auto;
    }
    .survey-summary {
        flex-direction: column;
        gap: 20px;
    }
    .survey-summary-divider {
        width: 60px;
        height: 1px;
    }
    .hero-social-bar {
        justify-content: center;
    }
    .social-sidebar {
        display: none;
    }
    .whatsapp-widget-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .hero-social-icon {
        width: 36px;
        height: 36px;
    }
    .hero-social-icon svg {
        width: 16px;
        height: 16px;
    }
    .survey-card-value {
        font-size: 2.2rem;
    }
    .survey-card-highlight .survey-card-value {
        font-size: 2.8rem;
    }
    .wa-chat-widget {
        width: calc(100vw - 40px);
    }
    .whatsapp-widget-wrapper {
        bottom: 16px;
        right: 16px;
    }
    .card-share-btn {
        width: 28px;
        height: 28px;
    }
    .card-share-btn svg {
        width: 13px;
        height: 13px;
    }
    .lightbox-share-bar .card-share-btn {
        width: 34px;
        height: 34px;
    }
}
