/* ========================================
   YARI Website - Styles (Light Theme)
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #fff7ed;

    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;

    --accent-orange: #F97316;
    --accent-orange-light: #FFF7ED;
    --accent-orange-hover: #ea580c;
    --accent-green: #22C55E;
    --accent-green-light: #F0FDF4;
    --accent-blue: #3b82f6;
    --accent-blue-light: #EFF6FF;

    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #F97316, #fb923c);
    --gradient-green: linear-gradient(135deg, #22C55E, #4ade80);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: var(--text-primary);
}

.nav-logo .logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange);
    background: var(--accent-orange-light);
}

.nav-donate {
    background: var(--gradient-orange);
    color: white !important;
    margin-left: 8px;
}

.nav-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 16px;
        text-align: center;
        font-size: 18px;
    }

    .nav-donate {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 48px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 50%, #eff6ff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 40% 50% at 20% 30%, rgba(249, 115, 22, 0.1), transparent),
        radial-gradient(circle 30% 40% at 80% 70%, rgba(34, 197, 94, 0.08), transparent);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-orange);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-orange);
}

.hero-title {
    margin-bottom: 24px;
}

.title-small {
    display: block;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-secondary);
}

.title-big {
    display: block;
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--accent-orange-light);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    padding: 0;
    border: none;
}

.hero-stats .stat-divider {
    background: transparent;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
}

.hero-card img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

/* Hero Responsive */
@media (min-width: 1025px) {
    .hero {
        padding-left: 0;
        padding-right: 0;
    }

    .hero .container {
        justify-content: center;
    }

    .hero-content {
        text-align: left;
    }

    .hero-desc {
        margin-left: 0;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
        border-top: none;
        padding-top: 0;
    }

    .stat-divider {
        width: 1px;
        height: auto;
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        border-top: 1px solid var(--border-color);
        padding-top: 24px;
    }

    .hero-visual {
        display: none;
    }

    .stat-divider {
        width: 1px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }
}

/* ========================================
   Section Base
   ======================================== */
.section {
    padding: var(--section-padding);
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

/* ========================================
   Tentang Section
   ======================================== */
.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tentang-content {
    text-align: left;
}

.tentang-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}

.tentang-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tentang-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.tentang-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.tentang-content strong {
    color: var(--accent-orange);
}

.tentang-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    border-color: var(--accent-orange);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--accent-green-light);
    color: var(--accent-green);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--accent-blue-light);
    color: var(--accent-blue);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

    .tentang-logo {
        margin: 0 auto 24px;
    }
}

/* ========================================
   Program Section
   ======================================== */
.program {
    background: var(--bg-primary);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.program-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.program-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.program-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.program-tag.sosial {
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}

.program-tag.pendidikan {
    background: var(--accent-blue-light);
    color: var(--accent-blue);
}

.program-tag.lingkungan {
    background: var(--accent-green-light);
    color: var(--accent-green);
}

.program-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.program-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Aktivitas Section
   ======================================== */
.aktivitas {
    background: var(--bg-secondary);
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.galeri-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.galeri-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.galeri-item:hover::after {
    opacity: 1;
}

.galeri-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 8px;
    border: 2px dashed var(--border-color);
}

.galeri-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--text-muted);
    opacity: 0.5;
}

/* ========================================
   Donasi Section
   ======================================== */
.donasi {
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
}

.donasi-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.donasi-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.donasi-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.donasi-content > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.rekening-info h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.rekening-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.rekening-card:hover {
    border-color: var(--accent-orange);
    background: var(--accent-orange-light);
}

.bank-logo {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.bank-logo svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-orange);
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bank-name {
    font-weight: 600;
    color: var(--text-primary);
}

.bank-nomor {
    font-family: monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

.bank-atas-nama {
    font-size: 13px;
    color: var(--text-muted);
}

.donasi-visual {
    text-align: center;
    padding: 40px;
}

.donasi-icon {
    animation: pulse 2s infinite;
}

.donasi-icon svg {
    width: 100px;
    height: 100px;
    stroke: var(--accent-orange);
    fill: none;
}

.donasi-quote {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-top: 16px;
}

@media (max-width: 768px) {
    .donasi-box {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }

    .donasi-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .rekening-card {
        justify-content: center;
    }

    .donasi-visual {
        display: none;
    }
}

/* ========================================
   Kontak Section
   ======================================== */
.kontak {
    background: var(--bg-primary);
}

.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
}

.kontak-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontak-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.kontak-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.kontak-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-orange);
}

.kontak-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.kontak-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.sosial-links h4 {
    margin-bottom: 16px;
}

.sosial-icons {
    display: flex;
    gap: 12px;
}

.sosial-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.sosial-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
    fill: none;
    transition: var(--transition-fast);
}

.sosial-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.sosial-btn:hover svg {
    stroke: white;
}

/* Contact Form */
.kontak-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* WhatsApp Button */
.kontak-form .btn {
    margin-top: 8px;
    background: #25D366;
}

.kontak-form .btn:hover {
    background: #20BD5A;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.kontak-form .btn svg {
    stroke: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

    .kontak-form {
        padding: 24px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-primary);
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.footer-tagline {
    font-weight: 600;
    color: var(--accent-orange) !important;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .sosial-icons {
        justify-content: center;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-orange {
    color: var(--accent-orange);
}

.text-green {
    color: var(--accent-green);
}

.bg-orange {
    background: var(--accent-orange);
}

.bg-green {
    background: var(--accent-green);
}
