/* ====================================================
   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;
}

/* ====== NAVBAR ====== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    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;
    -webkit-backdrop-filter: blur(10px);
    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(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    background: linear-gradient(135deg, #fff 0%, var(--saffron) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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);
    -webkit-backdrop-filter: blur(10px);
    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: var(--primary);
    border: none;
    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: #fff;
}

.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;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.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.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
    word-wrap: break-word;
}

.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: clamp(1.3rem, 2.5vw, 1.5rem);
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.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);
    -webkit-backdrop-filter: blur(10px);
    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.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.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.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.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 (Infinite Marquee) ====== */
.gallery {
    background: var(--background);
    overflow: hidden;
}

.gallery-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.gallery-marquee::before,
.gallery-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.gallery-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.gallery-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: galleryScroll 90s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-slide {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-slide:hover {
    transform: scale(1.03);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* ====== SOCIAL SECTION ====== */
.social {
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.social .section-title,
.social .section-label,
.social .section-subtitle {
    color: #fff;
}

.social .section-label i,
.social .section-label span {
    color: var(--primary);
}

.social .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.social .section-divider span {
    background: rgba(255, 255, 255, 0.15);
}

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

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

.social-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 117, 26, 0.15);
}

.social-link-card:hover::before {
    opacity: 0.08;
}

.social-link-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.social-link-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.social-link-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link-facebook {
    background: #1877F2;
}

.social-link-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.social-link-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.social-link-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.social-link-arrow {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.social-link-arrow svg {
    width: 22px;
    height: 22px;
}

.social-link-card:hover .social-link-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ====== 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: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.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-map iframe {
    border: 0;
    border-radius: 12px;
}

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

.form-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.3;
}

.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: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.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: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.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;
}

/* ====== EYE CAMP POPUP ====== */
.camp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.camp-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.camp-popup {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.camp-popup-overlay.active .camp-popup {
    transform: scale(1) translateY(0);
}

.camp-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.camp-popup-close:hover {
    background: var(--primary);
}

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

.camp-popup-image {
    position: relative;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f7;
}

.camp-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.camp-popup-form {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.camp-popup-header {
    margin-bottom: 24px;
}

.camp-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(235, 114, 21, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.camp-popup-badge svg {
    width: 14px;
    height: 14px;
}

.camp-popup-header h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.camp-popup-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.camp-form-group {
    margin-bottom: 14px;
}

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

.camp-form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    transition: border-color 0.2s ease;
    outline: none;
    background: #f9f9fb;
    box-sizing: border-box;
}

.camp-form-group input:focus {
    border-color: var(--primary);
    background: #fff;
}

.camp-form-submit {
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 4px;
}

.camp-form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

.camp-form-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border: 1.5px solid var(--primary);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.camp-form-call:hover {
    background: var(--primary);
    color: #fff;
}

.camp-form-call svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 700px) {
    .camp-popup {
        grid-template-columns: 1fr;
        max-height: 95vh;
        margin: 10px;
    }

    .camp-popup-image {
        max-height: 180px;
        padding: 12px;
    }

    .camp-popup-form {
        padding: 20px 16px;
    }

    .camp-popup-header h2 {
        font-size: 1.2rem;
    }

    .camp-popup-header p {
        font-size: 0.82rem;
    }

    .camp-popup-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }

    .camp-form-group input {
        padding: 9px 12px;
        font-size: 0.85rem;
    }

    .camp-form-submit {
        padding: 11px;
        font-size: 0.9rem;
    }

    .camp-form-call {
        font-size: 0.78rem;
        padding: 8px;
    }
}

/* ====== 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;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .about-btn {
        display: inline-flex;
    }

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

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

    .social-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

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

    .section-header {
        margin-bottom: 48px;
    }
}

@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;
        overflow-y: auto;
    }

    .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: 60px 0;
        --container-padding: 0 16px;
    }

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

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

    .top-bar .container {
        justify-content: center;
    }

    .hero {
        min-height: 0;
        padding: 40px 0 60px;
    }

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

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

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .hero-badge span {
        font-size: 0.75rem;
    }

    .hero-tagline {
        margin-top: 12px;
    }

    .hero-description {
        font-size: 0.87rem;
        line-height: 1.7;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-label {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

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

    .about-experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 14px 20px;
    }

    .exp-number {
        font-size: 1.4rem;
    }

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

    .info-card {
        padding: 12px 14px;
    }

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

    .vision-card {
        padding: 28px 22px;
    }

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

    .gallery-slide {
        width: 260px;
        height: 340px;
    }

    .gallery-marquee::before,
    .gallery-marquee::after {
        width: 40px;
    }

    .social-link-card {
        padding: 20px 22px;
        gap: 16px;
    }

    .social-link-icon {
        width: 48px;
        height: 48px;
    }

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

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

    .scheme-card {
        padding: 24px 20px;
    }

    .timeline-card {
        padding: 20px;
    }

    .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 20px;
    }

    .contact-map iframe {
        height: 200px;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

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

    .back-to-top {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
    }

    .strip-item {
        font-size: 0.8rem;
    }

    .party-strip {
        padding: 10px 0;
    }

    .camp-popup-header h2 {
        font-size: 1.2rem;
    }

    .camp-popup-form {
        padding: 20px 16px;
    }
}

@media (max-width: 400px) {
    :root {
        --container-padding: 0 12px;
    }

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

    .hero-image-frame {
        width: 190px;
        height: 230px;
    }

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

    .gallery-slide {
        width: 220px;
        height: 280px;
    }

    .about-experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -10px;
        display: inline-block;
    }

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

    .navbar .container {
        height: 60px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-name {
        font-size: 0.95rem;
    }

    .footer-logo img {
        width: 40px;
        height: 40px;
    }
}
