/* Custom Styles - Watoto-inspired design for CODA */

:root {
    --watoto-orange: #c45c26;
    --watoto-orange-dark: #a04a1f;
    --watoto-dark: #1a1a1a;
    --watoto-text: #2c2c2c;
    --watoto-text-muted: #5a5a5a;
    --watoto-bg: #ffffff;
    --watoto-bg-alt: #f5f5f5;
    --primary-color: var(--watoto-orange);
    --secondary-color: var(--watoto-text-muted);
    --dark-color: var(--watoto-dark);
    --light-color: var(--watoto-bg-alt);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--watoto-text);
    padding-top: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body > .navbar {
    flex-shrink: 0;
}

body > section,
body > .hero-section {
    flex-shrink: 0;
}

body > footer {
    margin-top: auto;
    flex-shrink: 0;
}

html {
    margin: 0;
    padding: 0;
}

/* Navigation - Watoto-style: light bar, dark text, orange CTA */
.navbar {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    backdrop-filter: blur(10px);
}

.navbar::before {
    display: none;
}

.navbar .container {
    position: relative;
    z-index: 1;
}

.navbar.navbar-dark .navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--watoto-dark) !important;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.navbar.navbar-dark .navbar-brand:hover {
    color: var(--watoto-orange) !important;
}

.navbar.navbar-dark .navbar-brand img {
    transition: transform 0.2s ease;
}

.navbar.navbar-dark .navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--watoto-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 4px;
    padding: 0.5rem 0.875rem !important;
    border-radius: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--watoto-orange) !important;
    background: rgba(196, 92, 38, 0.08);
}

.navbar .btn-light {
    background: var(--watoto-orange) !important;
    border-color: var(--watoto-orange) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    border-radius: 6px !important;
    transition: all 0.2s ease;
}

.navbar .btn-light:hover {
    background: var(--watoto-orange-dark) !important;
    border-color: var(--watoto-orange-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 92, 38, 0.3);
}

.navbar-toggler {
    border-color: rgba(0,0,0,0.15);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section - Watoto-style: full-bleed image, dark overlay, centered copy */
.hero-section {
    position: relative;
    background: var(--watoto-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/New/IMG-20260321-WA0015.jpg') center/cover;
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-section .btn-light {
    background: #fff !important;
    border: none;
    color: var(--watoto-dark) !important;
    font-weight: 700;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.hero-section .btn-light:hover {
    background: var(--watoto-bg-alt) !important;
    color: var(--watoto-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-section .btn-outline-light {
    border-width: 2px;
    font-weight: 700;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

.hero-lead {
    font-size: 1.25rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Landing: Mission line */
.landing-mission {
    background: var(--watoto-bg);
}

.landing-mission-text {
    font-size: 1.25rem;
    color: var(--watoto-text);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 500;
}

.landing-mission-text strong {
    color: var(--watoto-dark);
    font-weight: 700;
}

/* Landing: Stats bar */
.landing-stats {
    background: var(--watoto-dark);
    color: #fff;
}

.landing-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--watoto-orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

.landing-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
    font-weight: 600;
}

/* Landing: Section titles */
.landing-sec-title {
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--watoto-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.landing-sec-sub {
    color: var(--watoto-text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Landing: Who we serve cards */
.landing-who {
    background: var(--watoto-bg-alt);
}

.landing-card {
    display: block;
    background: var(--watoto-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
}

.landing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.landing-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.landing-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.landing-card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--watoto-orange);
    background: rgba(255,255,255,0.95);
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
}

.landing-card-body {
    padding: 1.5rem 1.25rem;
}

.landing-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--watoto-dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.landing-card-desc {
    font-size: 0.95rem;
    color: var(--watoto-text-muted);
    margin-bottom: 1rem;
    line-height: 1.65;
    font-weight: 500;
}

.landing-card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--watoto-orange);
    letter-spacing: 0.3px;
}

.landing-card:hover .landing-card-link {
    text-decoration: underline;
}

/* Landing: How we help pillars */
.landing-how {
    background: var(--watoto-bg);
}

.landing-pillar {
    display: block;
    padding: 2rem 1.25rem;
    border-radius: 12px;
    background: var(--watoto-bg-alt);
    transition: all 0.3s ease;
    color: inherit;
}

.landing-pillar:hover {
    background: #efefef;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.landing-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--watoto-orange);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.landing-pillar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--watoto-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.landing-pillar-desc {
    font-size: 0.9rem;
    color: var(--watoto-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

.landing-how .btn-dark {
    background: var(--watoto-orange) !important;
    border-color: var(--watoto-orange) !important;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.landing-how .btn-dark:hover {
    background: var(--watoto-orange-dark) !important;
    border-color: var(--watoto-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 92, 38, 0.3);
}

/* Landing: One story / Our heart */
.landing-story {
    margin: 0;
}

.landing-story-img-wrap {
    min-height: 360px;
    overflow: hidden;
}

.landing-story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.landing-story-content {
    background: var(--watoto-dark);
    color: #fff;
    padding: 3rem 2rem;
}

.landing-story-inner {
    max-width: 480px;
    margin: 0 auto;
}

.landing-story-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--watoto-orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

.landing-story-title {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.landing-story-desc {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.75rem;
    line-height: 1.75;
    font-size: 1.05rem;
    font-weight: 500;
}

.landing-story .btn-dark {
    background: var(--watoto-orange) !important;
    border-color: var(--watoto-orange) !important;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.landing-story .btn-dark:hover {
    background: var(--watoto-orange-dark) !important;
    border-color: var(--watoto-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 92, 38, 0.3);
}

@media (max-width: 991px) {
    .landing-story-img-wrap,
    .landing-story-img-wrap img {
        min-height: 260px;
    }
    .landing-story-content {
        padding: 2rem 1.5rem;
    }
}

/* Program blocks (Watoto-style: image + content, alternating) */
.program-block {
    margin: 0;
}

.program-block-img {
    min-height: 380px;
    overflow: hidden;
}

.program-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
    transition: transform 0.4s ease;
}

.program-block:hover .program-block-img img {
    transform: scale(1.03);
}

.program-block-content {
    background: #fff;
    padding: 3.5rem 2.5rem;
}

.program-block-inner {
    max-width: 520px;
    margin: 0 auto;
}

.program-block-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--watoto-orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

.program-block-title {
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--watoto-dark);
    letter-spacing: -0.01em;
}

.program-block-title strong {
    color: var(--watoto-orange);
}

.program-block-desc {
    color: var(--watoto-text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.75;
    font-size: 1.05rem;
    font-weight: 500;
}

.program-block .btn-dark {
    background: var(--watoto-orange) !important;
    border-color: var(--watoto-orange) !important;
    font-weight: 700;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.program-block .btn-dark:hover {
    background: var(--watoto-orange-dark) !important;
    border-color: var(--watoto-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 92, 38, 0.3);
}

/* Alternating content background (Watoto-style) */
.program-block:nth-child(even) .program-block-content {
    background: var(--watoto-bg-alt);
}

/* Final CTA (Watoto-style) */
.cta-final {
    background: var(--watoto-orange);
}

.cta-final h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 2.2rem;
}

.cta-final .btn-light {
    background: #fff !important;
    color: var(--watoto-dark) !important;
    font-weight: 700;
    border: none;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.cta-final .btn-light:hover {
    background: var(--watoto-bg-alt) !important;
    color: var(--watoto-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-final .btn-outline-light {
    border-width: 2px;
    font-weight: 700;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.cta-final .btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .program-block-img,
    .program-block-img img {
        min-height: 280px;
    }
    .program-block-content {
        padding: 2rem 1.5rem;
    }
    .program-block-title {
        font-size: 1.5rem;
    }
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.program-card {
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.program-card i {
    transition: transform 0.3s ease;
}

.program-card:hover i {
    transform: scale(1.2);
}

/* Stat Boxes */
.stat-box {
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn-lg {
    padding: 14px 42px;
    font-size: 1.05rem;
}

/* Section Spacing */
section {
    padding: 90px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Forms */
.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--watoto-orange);
    box-shadow: 0 0 0 0.2rem rgba(196, 92, 38, 0.15);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 92, 38, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: white;
    font-size: 3rem;
}

/* Modal */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: 1px solid #e0e0e0;
    border-radius: 12px 12px 0 0;
    padding: 1.75rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
    padding: 1.5rem;
}

/* Page Header (Watoto-style) */
.page-header {
    position: relative;
    background: url('../img/20251128_163903.jpg') center/cover;
    padding: 120px 0 70px;
    color: rgb(250, 248, 248);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--watoto-text);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-author {
    font-weight: 700;
    color: var(--watoto-orange);
}

/* Impact Numbers */
.impact-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.85rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stat-box {
        margin-bottom: 15px;
    }
    
    .landing-sec-title {
        font-size: 1.65rem;
    }
    
    .landing-story-title {
        font-size: 1.5rem;
    }
    
    .program-block-title {
        font-size: 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
}

/* Footer Styling */
footer {
    background: var(--watoto-dark) !important;
    border-top: 4px solid var(--watoto-orange);
    line-height: 1.8;
}

footer h5, footer h6 {
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links a {
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--watoto-orange) !important;
    padding-left: 4px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.footer-social:hover {
    background: var(--watoto-orange);
    transform: translateY(-3px);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
}

/* Progress Bar */
.progress {
    height: 25px;
    border-radius: 50px;
    background-color: #e0e0e0;
}

.progress-bar {
    border-radius: 50px;
}

/* Donation Form */
.donation-amount-btn {
    margin: 5px;
    min-width: 100px;
}

.donation-amount-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 3rem;
    color: var(--watoto-orange);
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 10px);
    background: var(--primary-color);
}

.timeline-item:last-child::after {
    display: none;
}

/* Footer (Watoto-style: dark) */
footer {
    margin-bottom: 0;
    padding: 3rem 1.5rem 2rem;
    background: var(--watoto-dark) !important;
}

footer .container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

footer .row.g-4,
footer .row.g-lg-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

footer .row.align-items-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

footer .col-lg-4,
footer .col-md-4,
footer .col-6,
footer .col-12 {
    min-width: 220px;
    flex: 1 1 220px;
}

footer a.text-muted {
    transition: color 0.2s ease;
}

footer a.text-muted:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer hr.bg-secondary {
    border-color: rgba(255, 255, 255, 0.2) !important;
    opacity: 1;
}

footer .footer-text {
    color: rgba(255, 255, 255, 0.75) !important;
}

footer .footer-social {
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

footer .footer-social:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1.5rem;
    }

    footer .row.g-4,
    footer .row.g-lg-5,
    footer .row.align-items-center {
        text-align: center;
        justify-content: center;
    }

    footer .row.align-items-center {
        gap: 1rem;
    }

    footer .d-flex.gap-3 {
        justify-content: center;
    }

    footer .list-unstyled.footer-text li {
        text-align: left;
    }

    footer .col-lg-4,
    footer .col-md-4,
    footer .col-6,
    footer .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
