/* ====================================================
   PANKAJ SHUKLA - BJP POLITICAL WEBSITE
   Theme: BJP Brand Colors | Premium Political Layout
   ==================================================== */

/* ====== CSS VARIABLES ====== */
:root {
    /* BJP Brand Colors */
    --primary: #eb7215;
    --primary-dark: #c85f0e;
    --primary-light: #f5923f;
    --secondary: #11942e;
    --secondary-dark: #0d7523;
    --secondary-light: #1ab83a;
    --background: #ffffff;
    --accent: #cf893a;
    --accent-light: #e0a55c;

    /* Tricolor */
    --saffron: #FF9933;
    --white-flag: #FFFFFF;
    --green-flag: #138808;

    /* Neutrals */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-light: #6b6b7b;
    --text-muted: #9a9aab;
    --border: #e8e8ef;
    --border-light: #f0f0f5;
    --surface: #f8f8fc;
    --surface-dark: #f0f0f5;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 20px;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-hindi: 'Poppins', sans-serif;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --shadow-primary: 0 8px 30px rgba(235, 114, 21, 0.3);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.highlight {
    color: var(--primary);
}

/* ====== PRELOADER ====== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-lotus {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.lotus-petal {
    position: absolute;
    width: 24px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    left: 50%;
    bottom: 20px;
    transform-origin: bottom center;
    animation: petalPulse 1.5s ease-in-out infinite;
}

.lotus-petal-1 { transform: translateX(-50%) rotate(-40deg); animation-delay: 0s; }
.lotus-petal-2 { transform: translateX(-50%) rotate(-20deg); animation-delay: 0.15s; }
.lotus-petal-3 { transform: translateX(-50%) rotate(0deg); animation-delay: 0.3s; }
.lotus-petal-4 { transform: translateX(-50%) rotate(20deg); animation-delay: 0.45s; }
.lotus-petal-5 { transform: translateX(-50%) rotate(40deg); animation-delay: 0.6s; }

@keyframes petalPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) rotate(var(--rot, 0deg)) scaleY(0.8); }
    50% { opacity: 1; transform: translateX(-50%) rotate(var(--rot, 0deg)) scaleY(1); }
}

.lotus-petal-1 { --rot: -40deg; }
.lotus-petal-2 { --rot: -20deg; }
.lotus-petal-3 { --rot: 0deg; }
.lotus-petal-4 { --rot: 20deg; }
.lotus-petal-5 { --rot: 40deg; }

.preloader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-hindi);
    letter-spacing: 2px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--text-primary);
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-icon {
    width: 14px;
    height: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: #fff;
    background: var(--primary);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 14px;
    height: 14px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-family: var(--font-hindi);
}

.lang-btn.active {
    color: #fff;
    background: var(--primary);
}

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

/* ====== NAVBAR ====== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: var(--transition);
}

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

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

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

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

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

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

.nav-link:hover {
    color: var(--primary);
    background: rgba(235, 114, 21, 0.06);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(235, 114, 21, 0.06);
}

.nav-links:has(.nav-link:hover) .nav-link.active:not(:hover) {
    color: var(--text-secondary);
    background: transparent;
}

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

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

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

.nav-links:has(.nav-link:hover) .nav-link.active:not(:hover)::after {
    width: 0;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(235, 114, 21, 0.15), transparent 60%);
    z-index: 2;
}

.hero-tricolor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    display: flex;
    z-index: 10;
}

.tricolor-stripe {
    flex: 1;
    height: 100%;
}

.tricolor-stripe.saffron { background: var(--saffron); }
.tricolor-stripe.white { background: var(--white-flag); }
.tricolor-stripe.green { background: var(--green-flag); }

.hero-container {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-badge span {
    font-family: var(--font-hindi);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-greeting {
    display: block;
    font-family: var(--font-hindi);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.hero-name {
    display: block;
    font-family: var(--font-hindi);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.4;
    padding-bottom: 4px;
    background: linear-gradient(135deg, #fff 0%, var(--saffron) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-name-en {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-tagline {
    font-family: var(--font-hindi);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--primary-light);
    margin-top: 16px;
    font-weight: 500;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    max-width: 480px;
    line-height: 1.8;
    font-family: var(--font-hindi);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-primary);
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(235, 114, 21, 0.3); }
    50% { box-shadow: 0 0 25px rgba(235, 114, 21, 0.5), 0 0 50px rgba(235, 114, 21, 0.2); }
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    width: 380px;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.3);
}

.placeholder-icon {
    width: 80px;
    height: 80px;
}

.hero-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-floating-card svg {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
}

.card-1 {
    bottom: 40px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 40px;
    right: -20px;
    animation-delay: 1.5s;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-down svg {
    width: 20px;
    height: 20px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ====== PARTY STRIP ====== */
.party-strip {
    background: var(--primary);
    padding: 14px 0;
    overflow: hidden;
}

.strip-scroll {
    display: flex;
    width: max-content;
    animation: stripScroll 30s linear infinite;
}

.strip-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
    white-space: nowrap;
}

.strip-item {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.strip-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

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

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(235, 114, 21, 0.08);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-label svg {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-divider span {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.divider-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.6;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====== ABOUT SECTION ====== */
.about {
    background: var(--surface);
}

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

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--primary);
    background: linear-gradient(135deg, rgba(235, 114, 21, 0.1), rgba(17, 148, 46, 0.1));
    position: relative;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.about-image-placeholder .placeholder-icon {
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-primary);
}

.exp-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    font-family: var(--font-hindi);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.about-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--background);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(235, 114, 21, 0.1);
    color: var(--primary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

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

.info-card strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.info-card span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2px;
}

.about-btn {
    margin-top: 8px;
}

/* ====== IMPACT SECTION ====== */
.impact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-card {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.impact-icon {
    margin-bottom: 12px;
}

.impact-icon svg {
    width: 36px;
    height: 36px;
    opacity: 0.9;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: inline;
}

.impact-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.8;
    display: inline;
}

.impact-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== VISION SECTION ====== */
.vision {
    background: var(--background);
}

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

.vision-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.vision-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(235, 114, 21, 0.1), rgba(17, 148, 46, 0.1));
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
}

.vision-card:hover .vision-card-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.vision-card-icon svg {
    width: 28px;
    height: 28px;
}

.vision-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.vision-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.vision-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(235, 114, 21, 0.06);
    line-height: 1;
}

/* ====== INITIATIVES / TIMELINE ====== */
.initiatives {
    background: var(--surface);
}

.initiatives-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
}

.timeline-item.left {
    padding-right: 50px;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--border);
    border: 3px solid var(--background);
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(235, 114, 21, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-dot.reached {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(235, 114, 21, 0.25), 0 0 20px rgba(235, 114, 21, 0.3);
    transform: scale(1.4);
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: left;
}

.timeline-item.reached .timeline-card {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.timeline-card-header {
    margin-bottom: 12px;
}

.timeline-date {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(235, 114, 21, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-family: var(--font-hindi);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.timeline-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 3px 12px;
    background: var(--surface);
    color: var(--text-secondary);
    font-size: 0.75rem;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

/* ====== QUOTE SECTION ====== */
.quote-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0;
    overflow: hidden;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/rally.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.quote-icon svg {
    width: 48px;
    height: 48px;
}

.quote-content blockquote {
    font-family: var(--font-hindi);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #fff;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 20px;
}

.quote-content cite {
    display: block;
    color: var(--primary-light);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    font-family: var(--font-hindi);
    margin-bottom: 32px;
}

/* ====== GALLERY ====== */
.gallery {
    background: var(--background);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

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

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}

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

.gallery-overlay svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.gallery-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hidden gallery items (for filter) */
.gallery-item.hidden {
    display: none;
}

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

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

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

/* ====== SOCIAL SECTION ====== */
.social {
    background: var(--surface);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.social-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.social-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.social-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.social-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-platform svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.social-follow-btn {
    padding: 5px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-follow-btn:hover {
    background: var(--primary-dark);
}

.social-embed-container {
    min-height: 350px;
    padding: 20px;
}

.social-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    text-align: center;
    color: var(--text-muted);
}

.social-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.social-placeholder p {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.social-placeholder span {
    font-size: 0.82rem;
}

/* Instagram Profile Widget */
.instagram-profile-widget {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.instagram-profile-content {
    background: var(--background);
    margin: 3px;
    border-radius: calc(var(--radius-md) - 3px);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 380px;
    justify-content: center;
}

.instagram-profile-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.instagram-profile-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.instagram-handle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.instagram-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(240, 148, 51, 0.4);
}

.btn-instagram svg {
    width: 20px;
    height: 20px;
}

.instagram-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.instagram-note svg {
    width: 14px;
    height: 14px;
}

/* ====== SCHEMES SECTION ====== */
.schemes {
    background: var(--background);
}

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

.scheme-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.scheme-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.scheme-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.scheme-card h3 {
    font-family: var(--font-hindi);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.scheme-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ====== CONTACT SECTION ====== */
.contact {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

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

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.contact-icon-wrapper {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(235, 114, 21, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.contact-info-card h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-map {
    margin-top: 8px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-group textarea {
    padding-left: 16px;
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(235, 114, 21, 0.1);
}

.form-icon {
    position: absolute;
    left: 14px;
    top: 38px;
    color: var(--text-muted);
    pointer-events: none;
}

.form-icon svg {
    width: 18px;
    height: 18px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--surface);
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    transform: scaleY(-1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 0 40px;
}

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

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo h3 {
    font-family: var(--font-hindi);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-logo p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

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

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-newsletter h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-newsletter > p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    font-family: var(--font-primary);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--primary);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.newsletter-form button svg {
    width: 18px;
    height: 18px;
}

.footer-app-badges {
    margin-top: 20px;
}

.footer-app-badges > p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    transition: var(--transition);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.2);
}

.app-badge svg {
    width: 18px;
    height: 18px;
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

.heart {
    color: #ff4444;
}

/* ====== FLOATING BUTTONS ====== */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: floatPulse 2s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.phone {
    background: var(--primary);
    animation-delay: 1s;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); }
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ====== TOAST ====== */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--background);
    border: 1px solid var(--secondary);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10001;
    transform: translateX(120%);
    transition: var(--transition);
}

.toast.visible {
    transform: translateX(0);
}

.toast-icon {
    color: var(--secondary);
}

.toast-icon svg {
    width: 24px;
    height: 24px;
}

.toast-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.toast-content p {
    font-size: 0.82rem;
    color: var(--text-light);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-close svg {
    width: 18px;
    height: 18px;
}

/* ====== FADE UP ANIMATION ====== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-description {
        margin: 12px auto 0;
    }

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

    .hero-image-wrapper {
        order: 0;
    }

    .hero-image-frame {
        width: 300px;
        height: 350px;
    }

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

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

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

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

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

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

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

@media (max-width: 860px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        padding: 90px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
        z-index: 999;
        gap: 4px;
        align-items: stretch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 8px 12px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
    }

    .timeline-item.left {
        text-align: left;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 12px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 70px 0;
    }

    .top-bar-left {
        display: none;
    }

    .hero-image-frame {
        width: 260px;
        height: 300px;
    }

    .hero-floating-card {
        display: none;
    }

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

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

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

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

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

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