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

:root {
    --bg-deep: #07080a;
    --bg-dark: #0e1116;
    --bg-card: rgba(20, 24, 33, 0.75);
    --bg-glass: rgba(14, 17, 22, 0.65);
    
    /* Premium Gold Palette */
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa7c11;
    --gold-muted: #c5a880;
    --gold-bronze: #8c7853;
    --gold-gradient-linear: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    --gold-gradient-radial: radial-gradient(circle, #f3e5ab 0%, #d4af37 70%, #8c7853 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
    --gold-border: rgba(197, 168, 128, 0.25);
    --gold-border-hover: rgba(212, 175, 55, 0.6);
    
    /* Text & UI */
    --text-primary: #f5f6f8;
    --text-muted: #a0a6b5;
    --text-gold: #e5d5be;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --max-width: 1280px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-deep);
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-bronze);
    border-radius: 5px;
    border: 2px solid var(--bg-deep);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Common Classes / Components */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-padding {
    padding: 7rem 0;
}

.text-gradient {
    background: var(--gold-gradient-linear);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-glow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: var(--gold-gradient-linear);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.gold-glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.gold-glow-btn:hover::before {
    left: 100%;
}

.gold-glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.gold-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: transparent;
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gold-outline-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.section-header .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.section-header .divider {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient-linear);
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.section-header .divider::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-deep);
    padding: 0 8px;
    color: var(--gold-primary);
    font-size: 10px;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.15);
}

.glass-card:hover::before {
    opacity: 1;
}

/* HEADER & NAVBAR */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(7, 8, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.logo-text span {
    font-size: 0.65rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-top: -2px;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.mobile-only {
    display: none !important;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient-linear);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none;
}

/* HERO SLIDER SECTION */
.hero-slider-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease-out;
    z-index: -2;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 8, 10, 0.6), rgba(7, 8, 10, 0.8));
    z-index: -1;
}

.slider-content-container {
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slider-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.slide.active .slider-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.slide-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.slide-title span {
    color: var(--gold-primary);
}

.slide-desc {
    font-size: 1.25rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 17, 22, 0.5);
    color: var(--gold-primary);
    border: 1px solid var(--gold-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--gold-primary);
    color: #000;
}

.prev-btn { left: 2rem; }
.next-btn { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--gold-primary);
}

/* ABOUT SECTION */
.about {
    background: var(--bg-dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-frame {
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.about-img-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(14, 17, 22, 0.95));
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    max-width: 250px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;
}

.about-floating-card p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-gold);
}

.about-floating-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.about-feature-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.about-feature-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* IMPACT COUNTERS SECTION */
.impact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
    position: relative;
    border-top: 1px solid var(--gold-border);
}

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

.impact-card {
    text-align: center;
    padding: 3rem 2rem;
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
    display: inline-block;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.impact-number {
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.impact-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* WORK INITIATIVES SECTION */
.initiatives {
    background: var(--bg-deep);
    position: relative;
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.search-box input {
    width: 100%;
    padding: 0.9rem 1.5rem 0.9rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-muted);
    font-size: 1rem;
}

.filter-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0.4rem;
    background: rgba(14, 17, 22, 0.8);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
}

.filter-btn {
    padding: 0.7rem 1.6rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--gold-gradient-linear);
    color: var(--bg-deep);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: var(--transition-smooth);
}

.initiative-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-top {
    position: relative;
}

.card-banner {
    width: calc(100% + 5rem);
    height: 180px;
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    border-radius: calc(var(--border-radius-lg) - 1px) calc(var(--border-radius-lg) - 1px) 0 0;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.initiative-card:hover .card-banner {
    opacity: 1;
}

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.initiative-card:hover .card-icon-box {
    background: var(--gold-gradient-linear);
    color: var(--bg-deep);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: rotate(5deg);
}

.initiative-card h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.initiative-card:hover h3 {
    color: var(--gold-primary);
}

.initiative-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    cursor: pointer;
}

.learn-more-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.learn-more-link:hover i {
    transform: translateX(5px);
}

/* COLLABORATION HUB SECTION */
.collaboration {
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--gold-border);
}

.collab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.collab-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.collab-card {
    cursor: pointer;
    text-align: left;
}

.collab-card.selected {
    border-color: var(--gold-primary);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.collab-card .collab-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.collab-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.collab-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Collaboration Dynamic Form */
.collab-form-box {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    position: sticky;
    top: 120px;
}

.collab-form-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.collab-form-box p.form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(7, 8, 10, 0.6);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

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

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Success State Styles */
.form-success-overlay {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.form-success-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.form-success-overlay p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* CTAs & DONATION PROMPTS */
.donate-cta {
    background: linear-gradient(135deg, rgba(20, 24, 33, 0.9) 0%, rgba(7, 8, 10, 0.95) 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="none" stroke="%23d4af37" stroke-width="0.1" stroke-opacity="0.1"/></svg>');
    background-size: cover;
    position: relative;
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-quick-donate {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.quick-amt-btn {
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    background: transparent;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quick-amt-btn:hover,
.quick-amt-btn.active {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

/* DETAILS MODALS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: var(--bg-dark);
    border: 1px solid var(--gold-primary);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: var(--transition-smooth);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

.modal-overlay.open .modal-window {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--gold-gradient-linear);
    color: var(--bg-deep);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transform: rotate(90deg);
}

.modal-header-hero {
    padding: 4rem 3rem 2rem 3rem;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid var(--gold-border);
    position: relative;
}

.modal-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.modal-header-hero h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.modal-body {
    padding: 3rem;
}

.modal-body-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-body-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body-content h3::before {
    content: '✦';
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.modal-list {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-list-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.modal-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.modal-impact-summary {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.modal-impact-summary .icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.modal-impact-summary h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.modal-impact-summary p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--gold-border);
    padding: 6rem 0 2rem 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gold-gradient-linear);
    color: var(--bg-deep);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold-primary);
    margin-top: 0.3rem;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 0.9rem 4rem 0.9rem 1.2rem;
    background: rgba(7, 8, 10, 0.6);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--gold-primary);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 50px;
    background: var(--gold-gradient-linear);
    border: none;
    border-radius: calc(var(--border-radius-sm) - 2px);
    color: var(--bg-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.footer-bottom {
    border-top: 1px solid var(--gold-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a:hover {
    color: var(--gold-primary);
}

/* SCROLL FADE-IN ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* KEYFRAMES */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-desc {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-grid,
    .collab-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-floating-card {
        right: 0;
    }
    
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .collab-form-box {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(14, 17, 22, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--gold-border);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: 85vh;
        padding: 2.5rem 1.5rem;
        overflow-y: auto;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-actions > a {
        display: none; /* In mobile menu, we integrate action buttons */
    }
    
    .mobile-only {
        display: list-item !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .collab-cards {
        grid-template-columns: 1fr;
    }
    
    .modal-window {
        max-height: 90vh;
    }
    
    .modal-header-hero {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

/* EMERGENCY SLIDER HOTFIX */
#homeSlider .slide {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    opacity: 0 !important; visibility: hidden !important;
    z-index: 1 !important;
}
#homeSlider .slide.active {
    opacity: 1 !important; visibility: visible !important;
    z-index: 2 !important;
}

/* ==========================================
   ENTERPRISE MULTI-PAGE UTILITIES
========================================== */
.subpage-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 5rem;
    overflow: hidden;
    text-align: center;
    background-image: linear-gradient(rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><rect width="80" height="80" fill="%2307080a"/><circle cx="40" cy="40" r="30" fill="none" stroke="%23d4af37" stroke-width="0.15" stroke-opacity="0.15"/></svg>');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--gold-border);
}

.subpage-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-deep), transparent);
    z-index: 2;
}

.subpage-hero-content {
    z-index: 5;
    max-width: 800px;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.subpage-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.subpage-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Detail Grids */
.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.detail-main {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 3.5rem;
    backdrop-filter: blur(10px);
}

.detail-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.detail-main h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem 0;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-main h3::before {
    content: '✦';
    font-size: 0.9rem;
}

.detail-main p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
}

.sidebar-widget h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

/* Tables & Lists */
.roadmap-list {
    list-style: none;
    margin-top: 1.5rem;
}

.roadmap-step {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.roadmap-step::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 30px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--gold-border);
}

.roadmap-step:last-child::before {
    display: none;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold-gradient-linear);
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.roadmap-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.roadmap-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact Desks */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    text-align: center;
    padding: 3rem 2rem;
}

.contact-card i {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Donation Pages */
.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tax-exempt-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-primary);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tax-exempt-box i {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.tax-exempt-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tax-exempt-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.bank-details {
    background: rgba(7, 8, 10, 0.5);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    padding: 2rem;
    margin-top: 1.5rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    font-size: 0.95rem;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--gold-muted);
    font-weight: 500;
}

.bank-val {
    color: var(--text-primary);
    font-family: monospace;
    font-size: 1rem;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-grid,
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   DYNAMIC ARTICLE PAGE
========================================== */
.article-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.article-hero-content {
    max-width: 800px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gold-muted);
}

.meta-tag {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.article-layout {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Share Sidebar */
.share-sidebar {
    position: relative;
}

.sticky-share {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.share-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.fb { background: #1877F2; }
.share-btn.x { background: #000; border: 1px solid #333; }
.share-btn.wa { background: #25D366; }
.share-btn.li { background: #0A66C2; }
.share-btn.cp { background: var(--bg-card); color: var(--gold-primary); border: 1px solid var(--gold-border); }

/* Article Content */
.article-content {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
}

.article-featured-image {
    width: 100%;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.5rem;
    object-fit: cover;
    max-height: 500px;
}

.article-text-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.lead-paragraph {
    font-size: 1.3rem;
    color: var(--text-gold);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.article-text-body h2 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin: 2.5rem 0 1rem;
}

.article-text-body p {
    margin-bottom: 1.5rem;
}

.article-text-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-text-body li {
    margin-bottom: 0.8rem;
}

.article-text-body blockquote {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold-primary);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-gold);
}

.article-text-body blockquote cite {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-muted);
    margin-top: 1rem;
    font-style: normal;
}

/* Author Box */
.article-author-box {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient-linear);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-deep);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .share-sidebar {
        display: flex;
        justify-content: center;
    }
    .sticky-share {
        position: static;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin-bottom: 2rem;
    }
    .share-title {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        margin-right: 1rem;
        display: flex;
        align-items: center;
    }
    .article-content {
        padding: 1.5rem;
    }
}

/* ==========================================
   DYNAMIC INITIATIVE PAGE
========================================== */
.initiative-hero {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.initiative-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}

.initiative-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.deep-section {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 1.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-border);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}
.timeline-marker {
    position: absolute;
    left: -2.9rem;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gold-primary);
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--gold-glow);
}
.timeline-content h3 {
    color: var(--text-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.benefit-card {
    background: rgba(14, 17, 22, 0.5);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(197, 168, 128, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
}
.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}
.benefit-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}
.benefit-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--gold-primary);
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}
.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Sticky CTA Sidebar */
.sticky-cta-card {
    position: sticky;
    top: 100px;
    background: var(--bg-glass);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.sticky-cta-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}
.share-btn-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.share-btn-small:hover { transform: translateY(-3px); }
.share-btn-small.fb { background: #1877F2; }
.share-btn-small.x { background: #000; border: 1px solid #333; }
.share-btn-small.wa { background: #25D366; }

@media (max-width: 992px) {
    .initiative-layout {
        grid-template-columns: 1fr;
    }
    .deep-section {
        padding: 2rem;
    }
}

/* ==========================================
   ADVANCED RICH RSS BLOG FEED & SIDEBAR SYSTEM
   ========================================== */

/* RSS-Feed Container Layout */
.rss-feed-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.rss-feed-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* RSS-Style Card */
.rss-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.rss-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

.rss-thumbnail-wrapper {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 180px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.rss-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rss-card:hover .rss-thumbnail {
    transform: scale(1.05);
}

.rss-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rss-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.rss-badge {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.75rem;
}

.rss-title {
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    transition: var(--transition-smooth);
}

.rss-title a:hover {
    color: var(--gold-primary);
}

.rss-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.rss-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.rss-readmore i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.rss-readmore:hover i {
    transform: translateX(5px);
}

/* Detailed Page Two-Column Layout */
.article-detail-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* Sidebar Widgets */
.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: sticky;
    top: 100px;
}

.widget-card {
    background: var(--bg-glass);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-md);
    padding: 1.8rem;
    backdrop-filter: blur(8px);
}

.widget-title {
    font-size: 1.15rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Related Articles Widget */
.widget-related-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.related-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.related-thumb {
    width: 65px;
    height: 65px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.related-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.related-item-title {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.related-item:hover .related-item-title {
    color: var(--gold-primary);
}

.related-item-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Callout Box / Short Note */
.article-callout {
    background: rgba(212, 175, 55, 0.04);
    border-left: 4px solid var(--gold-primary);
    padding: 1.8rem 2.2rem;
    margin: 2.5rem 0;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    position: relative;
}

.article-callout::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.callout-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-gold);
    position: relative;
    z-index: 1;
}

/* Media Embeds (Video/Images) */
.article-media-container {
    margin: 2.5rem 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--gold-border);
}

.responsive-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.responsive-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ad Placement Containers */
.ad-placement-box {
    margin: 2.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.ad-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    letter-spacing: 2px;
}

.custom-banner-ad-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    display: block;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.custom-banner-ad-img:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Tag Cloud in Sidebar & Footer */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-cloud-item {
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.tag-cloud-item:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

/* Custom layout responsive overrides */
@media (max-width: 992px) {
    .rss-feed-layout,
    .article-detail-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .sidebar-widgets {
        position: static;
    }
    
    .rss-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rss-thumbnail-wrapper {
        height: 220px;
    }
}


/* ===========================================
   RAZORPAY PAYMENT INTEGRATION STYLES
   =========================================== */

/* Payment Trust Badges */
.payment-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-muted);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.trust-badge i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.trust-badge:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

/* Security Checklist */
.security-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.security-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.security-checklist li:last-child {
    border-bottom: none;
}

.security-checklist li i {
    color: #28a745;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Payment Disclaimer */
.payment-disclaimer {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.payment-disclaimer i {
    color: var(--gold-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Payment Error Alert */
.payment-error-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
    transition: opacity 0.3s ease;
}

.payment-error-alert > i {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.payment-error-alert strong {
    display: block;
    color: #dc3545;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.payment-error-alert p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.error-close {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1.3rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0 0.3rem;
    line-height: 1;
    opacity: 0.7;
    transition: 0.2s;
}

.error-close:hover {
    opacity: 1;
}

/* Payment Result Overlay */
.payment-result-overlay {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.payment-result-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.result-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Result Icon */
.result-icon-wrapper {
    margin-bottom: 1.5rem;
}

.result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2.5rem;
}

.success-icon-animated {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 2px solid rgba(40, 167, 69, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

.warning-icon-animated {
    background: rgba(240, 173, 78, 0.1);
    color: #f0ad4e;
    border: 2px solid rgba(240, 173, 78, 0.3);
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
}

@keyframes warningPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(240, 173, 78, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(240, 173, 78, 0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Payment Receipt Card */
.payment-receipt-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 420px;
    text-align: left;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.receipt-row:last-child {
    border-bottom: none;
}

.receipt-row span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.receipt-row strong {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.status-paid {
    color: #28a745 !important;
}

/* Receipt Note */
.receipt-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.receipt-note i {
    color: var(--gold-primary);
    margin-right: 0.4rem;
}

/* Result Actions */
.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Fade In Animation */
.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Quick Amount Buttons INR styling */
.quick-amt-btn {
    font-family: 'Outfit', sans-serif;
}

/* ─── Payment Responsive ─── */
@media (max-width: 768px) {
    .payment-trust-badges {
        gap: 0.5rem;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }
    
    .payment-receipt-card {
        max-width: 100%;
    }
    
    .receipt-note {
        max-width: 100%;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .result-actions .gold-glow-btn,
    .result-actions .gold-outline-btn {
        text-align: center;
    }
    
    .payment-result-overlay h3 {
        font-size: 1.4rem;
    }
    
    .payment-error-alert {
        flex-wrap: wrap;
    }
}
