/* ============================================
   ASTIA SUNTEM - Fresh Youth Design
   Anti-Drug Campaign Platform
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #3B2D6B;
    --primary-light: #5B4A8A;
    --primary-dark: #2A1F4E;
    --secondary: #F07A5E;
    --secondary-dark: #D9634A;
    --accent: #F5A623;
    --accent-dark: #D98F1B;
    --teal: #17A2B8;
    --teal-dark: #138496;
    --dark: #1C1528;
    --dark-soft: #2A2038;
    --text: #2D2642;
    --text-light: #6B6186;
    --text-muted: #9B94AD;
    --bg: #FFFFFF;
    --bg-alt: #F7F5FA;
    --bg-warm: #FFF7F3;
    --bg-glass: rgba(255, 255, 255, 0.92);
    --white: #FFFFFF;
    --border: #E8E4F0;
    --shadow: 0 4px 20px rgba(59, 45, 107, 0.06);
    --shadow-lg: 0 12px 40px rgba(59, 45, 107, 0.1);
    --shadow-glow: 0 0 30px rgba(59, 45, 107, 0.12);
    --gradient-1: linear-gradient(135deg, #3B2D6B 0%, #5B4A8A 100%);
    --gradient-2: linear-gradient(135deg, #F07A5E 0%, #F5A623 100%);
    --gradient-3: linear-gradient(135deg, #1C1528 0%, #3B2D6B 100%);
    --gradient-card: linear-gradient(145deg, rgba(59, 45, 107, 0.02) 0%, rgba(240, 122, 94, 0.02) 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* --- Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(240, 122, 94, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 122, 94, 0.35);
    color: var(--white);
    background: var(--secondary-dark);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.25);
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.35);
    color: var(--white);
    background: var(--accent-dark);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover { background: var(--dark-soft); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* --- Tags/Chips --- */
.tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.tag-primary { background: rgba(59, 45, 107, 0.08); color: var(--primary); }
.tag-accent { background: rgba(240, 122, 94, 0.08); color: var(--secondary); }
.tag-secondary { background: rgba(23, 162, 184, 0.08); color: var(--teal); }

/* --- Section Base --- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
    background: var(--gradient-3);
    color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark .text-muted { color: rgba(255,255,255,0.6); }
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 14px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}
.section-header .tag { margin-bottom: 12px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 45, 107, 0.08);
    transition: all var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(59, 45, 107, 0.08);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.navbar-brand .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}
.navbar-brand span { color: var(--primary); }
.navbar-brand:hover span { color: var(--secondary); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.nav-links a:hover {
    color: var(--secondary);
    background: rgba(240, 122, 94, 0.05);
}
.nav-links a.active {
    color: var(--secondary);
    background: rgba(240, 122, 94, 0.06);
}
.nav-links .btn { margin-left: 8px; padding: 10px 24px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 3px;
    transition: all var(--transition);
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 20px; width: 100%; border-radius: var(--radius-sm); }
}

/* ============================================
   HERO SECTION - Bold & Immersive
   ============================================ */

/* --- Hero Video (fullscreen video background) --- */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 76px;
    background: var(--dark);
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video-bg iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-video-img {
    background-size: cover;
    background-position: center;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 750px;
    padding: 0 24px;
}
.hero-video-content h1 {
    font-size: 4rem;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-video-subtitle {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
    font-family: var(--font-display);
}
.hero-video-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.hero-video-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-video-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 8px auto 0;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--secondary);
    animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
    0% { top: -50%; }
    100% { top: 100%; }
}
@media (max-width: 768px) {
    .hero-video-content h1 { font-size: 2.4rem; }
    .hero-video-subtitle { font-size: 1.1rem; }
    .hero-video-scroll { display: none; }
}

/* --- Hero Centered (gradient + floating shapes) --- */
.hero-centered {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 76px;
    background: linear-gradient(160deg, #fdf6f0 0%, #f0e6ff 35%, #e8f4fd 65%, #fff5f0 100%);
    overflow: hidden;
}
.hero-centered-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-centered-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}
.shape-1 {
    width: 500px; height: 500px;
    background: var(--primary);
    top: -15%; right: -10%;
    animation: float-shape 15s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    background: var(--secondary);
    bottom: -5%; left: -5%;
    animation: float-shape 12s ease-in-out infinite reverse;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--accent);
    top: 30%; left: 10%;
    animation: float-shape 18s ease-in-out infinite 3s;
}
.shape-4 {
    width: 150px; height: 150px;
    background: var(--teal);
    bottom: 25%; right: 15%;
    animation: float-shape 14s ease-in-out infinite 5s;
}
@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.02); }
}
.hero-centered-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}
.hero-centered-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    letter-spacing: 0.03em;
}
.hero-centered h1 {
    font-size: 3.8rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    color: var(--text);
}
.hero-centered h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-centered p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.hero-centered-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-centered-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.trust-avatars {
    display: flex;
}
.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: -8px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.trust-avatar:first-child { margin-left: 0; }
.hero-centered-trust p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
.hero-centered-trust p strong { color: var(--text); }
@media (max-width: 768px) {
    .hero-centered h1 { font-size: 2.4rem; }
    .hero-centered h2 { font-size: 1.1rem; }
}

/* --- Hero Carousel (sliding hero) --- */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 76px;
}
.carousel-track { position: relative; min-height: calc(100vh - 76px); }
.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 21, 40, 0.88) 0%, rgba(59, 45, 107, 0.75) 100%);
}
.carousel-slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 24px;
}
.carousel-slide-content h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.carousel-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 14px;
    font-family: var(--font-display);
}
.carousel-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.carousel-nav {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.carousel-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.carousel-dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.2);
}
.carousel-dot:hover { border-color: var(--white); }
@media (max-width: 768px) {
    .carousel-slide-content h1 { font-size: 2rem; }
    .carousel-subtitle { font-size: 1rem; }
    .carousel-nav { bottom: 20px; }
}

/* --- Hero Split (text + image side by side) --- */
.hero-split {
    min-height: 100vh;
    padding-top: 76px;
    background: var(--bg);
    overflow: hidden;
}
.hero-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 76px);
}
.hero-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 0;
    margin-left: max(24px, calc((100vw - var(--max-width)) / 2));
}
.hero-split-badge {
    display: inline-block;
    background: var(--bg-warm);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    width: fit-content;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-split h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: var(--text);
}
.hero-split h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.3;
}
.hero-split p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-split-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}
.hero-split-social {
    display: flex;
    gap: 10px;
}
.hero-split-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition);
}
.hero-split-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}
.hero-split-image {
    position: relative;
    overflow: hidden;
}
.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: calc(100vh - 76px);
}
.hero-split-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
}
.hero-split-stat .number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}
.hero-split-stat .label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 900px) {
    .hero-split-inner { grid-template-columns: 1fr; }
    .hero-split-text {
        padding: 60px 24px;
        margin-left: 0;
        text-align: center;
        align-items: center;
    }
    .hero-split h1 { font-size: 2.2rem; }
    .hero-split h2 { font-size: 1.2rem; }
    .hero-split-buttons { justify-content: center; }
    .hero-split-social { justify-content: center; }
    .hero-split-image { max-height: 400px; }
    .hero-split-image img { min-height: auto; max-height: 400px; }
    .hero-split-overlay { bottom: 20px; left: 20px; }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1920&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 76px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.92) 0%, rgba(59, 45, 107, 0.88) 50%, rgba(17, 24, 39, 0.94) 100%);
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    z-index: 2;
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    color: var(--white);
}
.hero-content .tag {
    background: rgba(240, 122, 94, 0.2);
    color: var(--accent);
    border: 1px solid rgba(240, 122, 94, 0.3);
    margin-bottom: 20px;
    font-size: 0.8rem;
}
.hero-content h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}
.hero-content h1 .highlight {
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
    display: block;
}
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat h3 {
    font-size: 2.2rem;
    color: var(--secondary);
    font-family: var(--font-display);
}
.hero-stat p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}
.hero-visual { display: none; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { font-size: 1rem; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .hero-visual { display: none; }
}

/* ============================================
   ABOUT - Clean Two-Column
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-lg);
    background: var(--gradient-2);
    z-index: -1;
    opacity: 0.5;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 10px; }
.about-text .subtitle {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.about-feature i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(240, 122, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   VALUES - Glass Cards
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity var(--transition);
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.value-card:hover::before { opacity: 1; }
.value-card .icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    color: var(--white);
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* ============================================
   BOOKS - Modern Cards
   ============================================ */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.book-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.book-cover {
    flex-shrink: 0;
    width: 170px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    padding: 24px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-info { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.book-info h3 { font-size: 1.15rem; margin-bottom: 6px; }
.book-info .author { color: var(--primary); font-size: 0.82rem; font-weight: 600; margin-bottom: 12px; }
.book-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   ARTICLES
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card-image { height: 210px; overflow: hidden; }
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.article-card:hover .article-card-image img { transform: scale(1.06); }
.article-card-body { padding: 24px; }
.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.article-card-meta .category { /* uses .tag-primary */ }
.article-card-body h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.4; }
.article-card-body h3 a { color: var(--text); }
.article-card-body h3 a:hover { color: var(--primary); }
.article-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.article-card .read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.article-card .read-more:hover { gap: 12px; }

/* Single article */
.article-single { padding: 120px 0 60px; }
.article-header { margin-bottom: 36px; }
.article-header .category { /* uses .tag */ }
.article-header h1 { font-size: 2.6rem; margin-bottom: 16px; }
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
}
.article-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    max-height: 500px;
}
.article-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.article-content { font-size: 1.05rem; line-height: 1.9; }
.article-content h2 { font-size: 1.6rem; margin: 36px 0 16px; }
.article-content h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.article-content p { margin-bottom: 18px; }
.article-content img { border-radius: var(--radius); margin: 24px 0; }
.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 28px;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--text-light);
}
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; list-style: disc; }
.article-content li { margin-bottom: 8px; }

@media (max-width: 768px) {
    .articles-grid { grid-template-columns: 1fr; }
    .article-header h1 { font-size: 1.8rem; }
}

/* ============================================
   GALLERY - Masonry-like
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.gallery-filter {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
    font-family: var(--font);
}
.gallery-filter:hover, .gallery-filter.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 45, 107, 0.25);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--white); font-size: 1.5rem; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================
   VIDEOS
   ============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}
.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.video-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--dark);
    overflow: hidden;
}
.video-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card-thumb .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 17, 23, 0.3);
    transition: background var(--transition);
}
.video-card-thumb:hover .play-btn { background: rgba(13, 17, 23, 0.5); }
.play-btn i { color: var(--white); font-size: 3.5rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.video-card-body { padding: 22px; }
.video-card-body h3 { font-size: 1rem; margin-bottom: 6px; }
.video-card-body p { font-size: 0.85rem; color: var(--text-light); }
.platform-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.platform-youtube { background: #FF000015; color: #FF0000; }
.platform-tiktok { background: #00000010; color: #000; }
.platform-instagram { background: #E4405F15; color: #E4405F; }
.platform-facebook { background: #1877F215; color: #1877F2; }

/* ============================================
   TESTIMONIALS - Horizontal scroll cards
   ============================================ */
.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px;
}
.testimonials-slider::-webkit-scrollbar { height: 6px; }
.testimonials-slider::-webkit-scrollbar-track { background: var(--border); border-radius: 6px; }
.testimonials-slider::-webkit-scrollbar-thumb { background: var(--gradient-1); border-radius: 6px; }
.testimonial-card {
    flex-shrink: 0;
    width: 380px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 8px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}
.testimonial-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; }
.testimonial-author-info h4 { font-size: 0.9rem; font-family: var(--font); }
.testimonial-author-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   EVENTS
   ============================================ */
.events-list { display: flex; flex-direction: column; gap: 18px; }
.event-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    align-items: center;
}
.event-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.event-date-box {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    border-radius: var(--radius);
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.event-date-box .day { font-size: 1.7rem; font-weight: 800; line-height: 1; font-family: var(--font-display); }
.event-date-box .month { font-size: 0.72rem; text-transform: uppercase; font-weight: 600; letter-spacing: 0.1em; }
.event-info h3 { font-size: 1.08rem; margin-bottom: 6px; }
.event-info .event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .event-card { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}
.contact-form .form-group { margin-bottom: 22px; }
.contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 45, 107, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-info { padding-top: 8px; }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 32px; }
.contact-info-item .icon-box {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}
.contact-info-item h4 { font-size: 0.92rem; font-family: var(--font); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-light); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================
   SOCIAL MEDIA BAR
   ============================================ */
.social-bar { display: flex; gap: 10px; }
.social-bar a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-bar a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(59, 45, 107, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-about h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-display);
}
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 22px; }
.footer-col h4 {
    color: var(--white);
    font-size: 0.88rem;
    font-family: var(--font);
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    padding: 5px 0;
    transition: all var(--transition);
}
.footer-col a:hover { color: var(--primary-light); transform: translateX(4px); }
.footer-helpline {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer-helpline a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
    text-decoration: none;
}
.footer-helpline a:hover {
    background: rgba(240, 122, 94, 0.12);
    border-color: rgba(240, 122, 94, 0.3);
    color: var(--white);
}
.footer-helpline i {
    color: var(--secondary);
    font-size: 1.1rem;
}
.footer-helpline strong {
    font-size: 0.9rem;
    color: var(--white);
}
.footer-helpline span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}
@media (max-width: 600px) {
    .footer-helpline a { flex-direction: column; gap: 4px; text-align: center; }
}
.footer-bottom {
    padding: 22px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================
   PAGE HEADER - Inner Pages
   ============================================ */
.page-header {
    background: var(--gradient-3);
    padding: 150px 0 70px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 45, 107, 0.12) 0%, transparent 70%);
}
.page-header h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 12px; position: relative; }
.page-header p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; position: relative; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.82rem;
    position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    border: 1px solid var(--border);
    color: var(--text);
}
.pagination a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .active { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 16px 22px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.alert-success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.alert-error { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-2);
    padding: 72px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-section h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 14px; position: relative; }
.cta-section p { font-size: 1.05rem; margin-bottom: 32px; color: rgba(255,255,255,0.85); position: relative; }
.cta-section .btn {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.cta-section .btn:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ============================================
   ANIMATIONS & PARALLAX
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Parallax helper classes */
.section-header {
    will-change: transform, opacity;
    transition: transform 0.1s linear, opacity 0.1s linear;
}
.about-image img,
.hero-split-image img {
    will-change: transform;
    transition: transform 0.1s linear;
}
.banner-section,
.impact-section,
.cta-section {
    will-change: background-position;
    transition: background-position 0.1s linear;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in, .fade-in-left, .fade-in-right { transition: none; opacity: 1; transform: none; }
    .section-header { transition: none; }
    .about-image img, .hero-split-image img { transition: none; transform: none !important; }
    .shape-1, .shape-2, .shape-3, .shape-4 { animation: none; }
    .scroll-line::after { animation: none; }
}

/* ============================================
   CONTENT BODY
   ============================================ */
.content-body p { margin-bottom: 16px; }
.content-body h2 { margin: 28px 0 14px; }
.content-body h3 { margin: 24px 0 12px; }
.content-body img { border-radius: var(--radius); margin: 16px 0; }
.content-body ul, .content-body ol { margin: 16px 0; padding-left: 20px; list-style: disc; }
.content-body li { margin-bottom: 6px; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--secondary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(59, 45, 107, 0.3);
    transition: all var(--transition);
    z-index: 100;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(59, 45, 107, 0.4); }

/* ============================================
   IMPACT / COUNTERS SECTION
   ============================================ */
.impact-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&q=60') center/cover no-repeat;
    opacity: 0.1;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.impact-item {
    text-align: center;
    color: var(--white);
}
.impact-item .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}
.impact-item .label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
@media (max-width: 768px) {
    .impact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============================================
   BANNER WITH BACKGROUND IMAGE
   ============================================ */
.banner-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(59, 45, 107, 0.75) 100%);
}
.banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}
.banner-content h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
}
.banner-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    line-height: 1.8;
}

/* ============================================
   TIKTOK / INSTAGRAM EMBED
   ============================================ */
.social-embed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.social-embed-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.social-embed-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.social-embed-card iframe {
    width: 100%;
    border: none;
}
.social-embed-card .embed-info {
    padding: 16px 20px;
}
.social-embed-card .embed-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.social-embed-card .embed-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   "SPUNE NU DROGURILOR" SECTION
   ============================================ */
.say-no-section {
    background: var(--bg-warm);
    padding: 80px 0;
}
.say-no-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.say-no-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.say-no-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
}
.say-no-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.say-no-card .card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(240, 122, 94, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.say-no-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.say-no-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   SOCIAL FEED SECTION
   ============================================ */
.social-feed-section {
    background: var(--bg-alt);
    padding: 80px 0;
}
.social-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}
.social-tab {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-tab:hover, .social-tab.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.social-tab i { font-size: 1rem; }

/* TikTok specific embed */
.tiktok-embed-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
}
.tiktok-embed-wrapper iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* ============================================
   QUICK FACTS / INFO CARDS
   ============================================ */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.fact-card {
    padding: 48px 36px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
}
.fact-card:last-child { border-right: none; }
.fact-card:hover { background: var(--bg-alt); }
.fact-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 16px;
}
.fact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.fact-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .facts-grid { grid-template-columns: 1fr; }
    .fact-card { border-right: none; border-bottom: 1px solid var(--border); }
}
