/* assets/css/style.css - Modern Design System for BHAGWAN BABA BAHUUDDESHIYA SEVABHAVI SANSTHA */

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

:root {
    /* Primary Brand Colors (Amber / Saffron / Sacred Gold) */
    --brand-primary: #b45309;         /* Rich Saffron Amber */
    --brand-primary-light: #d97706;   /* Vibrant Golden Amber */
    --brand-primary-dark: #78350f;    /* Deep Earth Ochre */
    
    /* Secondary & Accent Colors (Terracotta Coral & Golden Marigold) */
    --brand-secondary: #ea580c;       /* Sacred Terracotta Coral */
    --brand-secondary-hover: #c2410c; /* Deep Sunset Rust */
    --brand-accent: #f59e0b;          /* Radiant Amber Gold */
    --brand-accent-hover: #d97706;
    --brand-highlight: #fde047;       /* Bright Marigold Gold */
    --brand-green: #15803d;           /* Auspicious Seva Green */
    --brand-rose: #e11d48;            /* Compassion Rose */
    
    /* Backgrounds & Surfaces */
    --bg-main: #ffffff;
    --bg-surface: #fffbeb;           /* Warm Amber Tint Surface */
    --bg-surface-alt: #fef3c7;       /* Soft Marigold Tint */
    --bg-dark-slate: #1c1917;         /* Deep Warm Stone Charcoal */
    --bg-dark-card: #292524;
    --glass-bg: rgba(255, 255, 255, 0.94);
    --glass-border: rgba(245, 158, 11, 0.2);
    
    /* Text Colors */
    --text-heading: #1c1917;
    --text-body: #44403c;
    --text-muted: #78716c;
    --text-light: #fef3c7;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows & Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 50px;
    
    --shadow-sm: 0 2px 10px rgba(120, 53, 15, 0.06);
    --shadow-md: 0 10px 30px rgba(120, 53, 15, 0.08);
    --shadow-lg: 0 20px 45px rgba(120, 53, 15, 0.12);
    --shadow-glow-primary: 0 10px 30px rgba(217, 119, 6, 0.35);
    --shadow-glow-secondary: 0 10px 30px rgba(234, 88, 12, 0.35);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Typography */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.68;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.025em;
}

a {
    color: var(--brand-primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--brand-secondary);
}

/* Custom Modern Buttons System */
.btn-ngo-primary {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-primary:hover {
    background: linear-gradient(135deg, #b45309 0%, var(--brand-primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
    color: #ffffff !important;
}

.btn-ngo-secondary {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-hover) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-secondary:hover {
    background: linear-gradient(135deg, var(--brand-secondary-hover) 0%, #9a3412 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
    color: #ffffff !important;
}

.btn-ngo-outline {
    background: transparent;
    color: var(--brand-primary) !important;
    border: 2px solid var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-outline:hover {
    background-color: var(--brand-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ngo-outline-light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-outline-light:hover {
    background: #ffffff;
    color: var(--brand-primary-dark) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Header Top Bar */
.top-header-bar {
    background: linear-gradient(90deg, #1c1917 0%, #292524 50%, #1c1917 100%);
    color: #d6d3d1;
    font-size: 0.875rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.top-header-bar a {
    color: #fef3c7;
}

.top-header-bar a:hover {
    color: var(--brand-accent);
}

.helpline-chip {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(251, 191, 36, 0.18) 100%);
    color: var(--brand-highlight);
    border: 1px solid rgba(245, 158, 11, 0.5);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Glassmorphism Header & Sticky Navbar */
.header-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-custom {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 25px rgba(120, 53, 15, 0.07);
    padding: 12px 0;
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand-wrapper img {
    height: 54px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.navbar-brand-wrapper:hover img {
    transform: scale(1.04);
}

.brand-text-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-text-sub {
    font-size: 0.70rem;
    color: #92400e;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-link-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading) !important;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--brand-primary) !important;
    background-color: rgba(245, 158, 11, 0.12);
}

.nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary-light) 0%, var(--brand-secondary) 100%);
    border-radius: 3px;
}

/* Modern Hero Section */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-slider-wrapper .carousel-item {
    height: 680px;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.90) 0%, rgba(120, 53, 15, 0.78) 50%, rgba(28, 25, 23, 0.88) 100%);
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.5);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    color: var(--brand-highlight);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-badge-pill i {
    color: var(--brand-accent);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-lead {
    font-size: 1.22rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 650px;
    font-weight: 400;
    line-height: 1.6;
}

/* Floating Hero Stat Card */
.hero-stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.hero-stat-card .stat-val {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.hero-stat-card .stat-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-top: 6px;
}

/* Section Title Styling */
.section-tagline {
    font-family: var(--font-heading);
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(245, 158, 11, 0.14);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 18px;
}

/* Who We Are & Feature Cards */
.feature-card-modern {
    background: var(--bg-main);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

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

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(234, 88, 12, 0.16) 100%);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 22px;
    transition: var(--transition-base);
}

.feature-card-modern:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-secondary) 100%);
    color: #ffffff;
    transform: rotate(6deg) scale(1.05);
}

/* Key Causes Cards */
.cause-card {
    background: var(--bg-main);
    border: 1px solid #fed7aa;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.cause-img-box {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.cause-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cause-card:hover .cause-img-box img {
    transform: scale(1.08);
}

.cause-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(28, 25, 23, 0.88);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.cause-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.progress-custom {
    height: 10px;
    background-color: #fef3c7;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-bar-custom {
    background: linear-gradient(90deg, var(--brand-primary-light) 0%, var(--brand-secondary) 100%);
    border-radius: var(--radius-pill);
}

/* Active Campaign horizontal/grid layout */
.campaign-card-horizontal {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid #fed7aa;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.campaign-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-accent);
}

.badge-live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(234, 88, 12, 0.14);
    color: var(--brand-secondary);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(234, 88, 12, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

/* Impact Statistics Counter Section */
.impact-stats-section {
    background: linear-gradient(135deg, #1c1917 0%, var(--brand-primary-dark) 50%, #292524 100%);
    color: #ffffff;
    padding: 95px 0;
    position: relative;
}

.glass-stat-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: var(--radius-lg);
    padding: 36px 22px;
    text-align: center;
    transition: var(--transition-base);
}

.glass-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.glass-stat-card i {
    font-size: 2.8rem;
    color: var(--brand-highlight);
    margin-bottom: 16px;
}

.glass-stat-card .counter-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #fed7aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-stat-card .counter-label {
    font-size: 0.95rem;
    color: #fef3c7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Calendar Date Badge & Events */
.event-item-card {
    background: var(--bg-surface);
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md);
    padding: 22px;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 20px;
}

.event-item-card:hover {
    background: #ffffff;
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.event-date-box {
    width: 78px;
    height: 78px;
    min-width: 78px;
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.3);
}

.event-date-box .day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

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

/* Activity Item */
.activity-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid #fed7aa;
    transition: var(--transition-base);
}

.activity-card:hover {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border-color: var(--brand-secondary);
}

.activity-thumb {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

/* Photo Gallery Zoom Grid */
.gallery-hover-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
}

.gallery-hover-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.88) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #ffffff;
}

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

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

/* Testimonial Cards */
.testimonial-card-modern {
    background: var(--bg-surface);
    border: 1px solid #fed7aa;
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-card-modern::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.5rem;
    color: rgba(217, 119, 6, 0.15);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-primary-light);
}

.star-rating {
    color: var(--brand-accent);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* Newsletter Section */
.newsletter-banner {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--bg-dark-slate) 100%);
    border-radius: var(--radius-lg);
    padding: 55px 45px;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.newsletter-input-pill {
    background: #ffffff;
    border-radius: var(--radius-pill);
    padding: 6px;
    display: flex;
    align-items: center;
}

.newsletter-input-pill input {
    border: none;
    outline: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
}

/* Footer Section */
.footer-dark-modern {
    background: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
    color: #d6d3d1;
    padding-top: 85px;
    padding-bottom: 35px;
}

.footer-dark-modern h5 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-dark-modern h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-secondary) 0%, var(--brand-highlight) 100%);
    border-radius: 3px;
}

.footer-dark-modern ul li {
    margin-bottom: 12px;
}

.footer-dark-modern ul li a {
    color: #fef3c7;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-dark-modern ul li a:hover {
    color: var(--brand-accent);
    transform: translateX(4px);
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    margin-right: 8px;
}

.social-icon-btn:hover {
    background: var(--brand-secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

/* Floating WhatsApp Pulsing Widget */
.whatsapp-pulse {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-base);
    animation: waPulse 2s infinite;
}

.whatsapp-pulse:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top Button */
.back-top-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 46px;
    height: 46px;
    background: var(--brand-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-base);
}

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

.back-top-btn:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-4px);
}

/* Page Header Inner Banner */
.inner-page-header {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.92) 0%, rgba(120, 53, 15, 0.88) 100%), url('../images/bhagwan_baba_cover.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 85px 0;
    text-align: center;
    position: relative;
}

.inner-page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: 0 12px 32px rgba(120, 53, 15, 0.15);
        margin-top: 14px;
        border: 1px solid rgba(251, 191, 36, 0.4);
    }
    .nav-link-custom {
        padding: 10px 16px !important;
        margin-bottom: 4px;
    }
    .nav-link-custom.active::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero-title { font-size: 2.3rem; }
    .hero-slider-wrapper .carousel-item { height: auto; min-height: 520px; padding: 60px 0; }
    .section-title { font-size: 2.0rem; }
}

/* Legacy Utility & Button Classes Compatibility */
.page-header {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.92) 0%, rgba(120, 53, 15, 0.88) 100%), url('../images/bhagwan_baba_cover.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 85px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.btn-primary-ngo {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-ngo:hover {
    background: linear-gradient(135deg, #b45309 0%, var(--brand-primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
    color: #ffffff !important;
}

.btn-secondary-ngo {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-hover) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-ngo:hover {
    background: linear-gradient(135deg, var(--brand-secondary-hover) 0%, #9a3412 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
    color: #ffffff !important;
}

.btn-outline-ngo {
    background: transparent;
    color: var(--brand-primary) !important;
    border: 2px solid var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-ngo:hover {
    background-color: var(--brand-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.card-ngo {
    background: var(--bg-main);
    border: 1px solid #fed7aa;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

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

.progress-ngo {
    height: 10px;
    background-color: #fef3c7;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-bar-ngo {
    background: linear-gradient(90deg, var(--brand-primary-light) 0%, var(--brand-secondary) 100%);
    border-radius: var(--radius-pill);
}

.text-primary-color { color: var(--brand-primary) !important; }
.text-secondary-color { color: var(--brand-secondary) !important; }
.bg-primary-color { background-color: var(--brand-primary) !important; }
.bg-secondary-color { background-color: var(--brand-secondary) !important; }
.bg-light-grey { background-color: var(--bg-surface) !important; }
