/* ==========================================================================
   Meghu Seva Ashram - Master Design System
   Run by Maa Bhagwati Trust (Exact Parity with politiciansprofile.meghu.org)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary: #0f2c59; /* Deep Campaign Navy Blue */
    --primary-light: #1b3d6f;
    --secondary: #059669; /* Vibrant Development Green */
    --secondary-light: #10b981;
    --accent: #f59e0b; /* Gold Accent */
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --dark: #0b1329; /* Deep Navy Slate */
    --light: #f8fafc; /* Crisp Light Gray */
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --glass-bg: rgba(15, 44, 89, 0.94);
    --glass-border: rgba(255, 255, 255, 0.12);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BASE STYLES */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

/* SECTION TITLES */
.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 400;
}

/* VERTICAL FLOATING SOCIAL BAR (Exact from politiciansprofile.meghu.org) */
.vertical-social-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 8px;
    background: var(--accent);
    border-radius: 16px 0 0 16px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.vertical-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.vertical-social-icon:hover {
    transform: scale(1.15);
    color: #ffffff;
}

.vertical-social-icon.fb { background: #1877f2; }
.vertical-social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.vertical-social-icon.tw { background: #000000; }
.vertical-social-icon.yt { background: #ff0000; }

/* FLOATING JOIN CAMPAIGN BUTTON (Exact from politiciansprofile.meghu.org) */
.floating-join-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1030;
    background: var(--secondary);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    border: none;
    transition: var(--transition-smooth);
}

.floating-join-btn:hover {
    background: #047857;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.5);
}

/* FLOATING COMPLAINT BUTTON (Exact from politiciansprofile.meghu.org) */
.floating-complaint-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1030;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    border: none;
    transition: var(--transition-smooth);
}

.floating-complaint-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
    color: var(--dark) !important;
}

@media (max-width: 768px) {
    .floating-join-btn,
    .floating-complaint-btn {
        padding: 9px 16px;
        font-size: 0.82rem;
    }
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1030;
    background: #25d366;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.whatsapp-float-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* FOOTER SECTION */
.footer-section {
    background: var(--dark) !important;
    border-top: 4px solid var(--accent) !important;
}

.footer-widget h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.footer-widget a {
    color: #94a3b8;
    transition: var(--transition-smooth);
}

.footer-widget a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* KEYFRAMES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
