:root {
    --treehouse-green: #2D6A4F;
    --treehouse-green-dark: #1B4332;
    --treehouse-green-light: #40916C;
    --treehouse-green-pale: #D8F3DC;
    --treehouse-orange: #F4A261;
    --treehouse-terracotta: #E76F51;
    --treehouse-dark: #1A1A1A;
    --treehouse-gray: #6C757D;
    --treehouse-light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--treehouse-dark);
    background: #ffffff;
    line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo{
    height: 45px;
    width: auto;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--treehouse-green-dark);
}

.brand-text span {
    font-weight: 300;
    color: var(--treehouse-gray);
}

/* ============================================
   FIX: NAVBAR ON TABLET (769px - 992px)
   ============================================ */

@media (min-width: 769px) and (max-width: 992px) {
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--treehouse-green-pale);
    z-index: 999;
  }
  
  .nav-links.open {
    display: flex !important;
    animation: slideDown 0.25s ease;
  }
}

@media (max-width: 576px) {
    .desktop-only {
        display: none;
    }
    .navbar-logo {
        height: 35px;
    }
}


.navbar-brand i {
    color: var(--treehouse-green);
    margin-right: 8px;
}

.navbar-brand span {
    font-weight: 300;
    color: var(--treehouse-gray);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links li a {
    color: var(--treehouse-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--treehouse-green);
    background: var(--treehouse-green-pale);
}

.btn-donate-nav {
    background: var(--treehouse-green);
    color: #fff !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.btn-donate-nav:hover {
    background: var(--treehouse-green-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.25);
}

.btn-donate-nav i {
    margin-right: 8px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--treehouse-dark);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--treehouse-green-pale);
    color: var(--treehouse-green);
}

/* ============================================
   TABLET & MOBILE — 992px and below
   ============================================ */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .container {
        position: relative;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 12px 20px 20px;
        gap: 4px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        border-top: 2px solid var(--treehouse-green-pale);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
        animation: slideDown 0.25s ease;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--treehouse-dark);
        transition: all 0.2s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: var(--treehouse-green-pale);
        color: var(--treehouse-green);
    }

    .btn-donate-nav {
        width: 100%;
        text-align: center !important;
        margin-top: 8px;
        padding: 14px 20px !important;
        border-radius: 10px !important;
        background: var(--treehouse-green) !important;
        justify-content: center;
        display: flex !important;
        align-items: center;
        gap: 8px;
        transform: none !important;
        box-shadow: none !important;
    }

    .btn-donate-nav:hover {
        background: var(--treehouse-green-dark) !important;
    }

    .nav-links li:last-child {
        border-top: 1px solid var(--treehouse-green-pale);
        padding-top: 8px;
        margin-top: 4px;
    }
}

/* ============================================
   SLIDE DOWN ANIMATION
   ============================================ */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: auto;
    padding: 40px 0 20px;
    background: linear-gradient(135deg,
            rgba(27, 67, 50, 0.92) 0%,
            rgba(45, 106, 79, 0.85) 40%,
            rgba(27, 67, 50, 0.92) 100%),
        url('../images/about/treehouse-photo-012.jpg') center/cover no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge i {
    margin-right: 8px;
    color: var(--treehouse-orange);
}

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.hero-tagline .text-green { color: #95D5B2; }
.hero-tagline .text-orange { color: var(--treehouse-orange); }
.hero-tagline .text-red { color: var(--treehouse-terracotta); }

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-donate {
    background: var(--treehouse-orange);
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 30px rgba(244, 162, 97, 0.35);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-donate:hover {
    background: var(--treehouse-terracotta);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 162, 97, 0.45);
}

.btn-donate i { margin-right: 10px; }

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-outline:hover i { transform: translateX(4px); }

/* ============================================
   HERO RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 30px 0 70px;
    }
    .hero-section .hero-tagline {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    .hero-section .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.6;
        padding: 0 10px;
    }
    .hero-section .hero-badge {
        font-size: 0.75rem !important;
        padding: 4px 12px;
    }
    .hero-section .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-section .btn-donate,
    .hero-section .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-tagline {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }
    .hero-section .hero-description {
        font-size: 0.85rem !important;
        line-height: 1.5;
    }
    .hero-section .hero-badge {
        font-size: 0.7rem !important;
        padding: 3px 10px;
    }
    .hero-section {
        padding: 20px 0 15px;
    }
    .hero-section .hero-content {
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .hero-section .hero-tagline {
        font-size: 1.3rem !important;
        line-height: 1.2;
    }
    .hero-section .hero-description {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }
    .hero-section .hero-badge {
        font-size: 0.65rem !important;
        padding: 3px 8px;
    }
    .hero-section .btn-donate,
    .hero-section .btn-outline {
        font-size: 0.85rem !important;
        padding: 12px 16px !important;
    }
}

/* ============================================
   HERO STATS
   ============================================ */
.hero-stats {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 20px 0;
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

@media (max-width:480px) {
    .hero-stats{
        margin-left: 20px;
        margin-right: 20px;
        border-radius:30px
    }
    
}

.stat-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    max-width: 280px;
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.stat-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg,
        rgba(27, 67, 50, 0.85) 0%,
        rgba(45, 106, 79, 0.75) 50%,
        rgba(27, 67, 50, 0.85) 100%
    );
    z-index: 1;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-overlay {
    background: linear-gradient(135deg,
        rgba(27, 67, 50, 0.92) 0%,
        rgba(45, 106, 79, 0.85) 50%,
        rgba(27, 67, 50, 0.92) 100%
    );
}

.stat-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 20px;
    width: 100%;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
    padding: 5rem 0 4rem;
    background-color: var(--treehouse-light);
}

.impact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
}

.impact-item {
    flex: 1 1 180px;
    min-width: 150px;
    max-width: 220px;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.impact-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-number.animated,
.impact-number.animated {
    opacity: 1;
    transform: translateY(0);
}

.impact-label {
    font-size: 1rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.4;
}

/* ============================================
   HOW WE HELP
   ============================================ */
.help-section {
    padding: 5rem 0;
    background: #ffffff;
}

.help-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.help-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--treehouse-dark);
}

.help-description {
    font-size: 1.1rem;
    color: var(--treehouse-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.help-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-links a {
    color: var(--treehouse-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.help-links a:hover { color: var(--treehouse-green-dark); }

.help-links a i {
    font-size: 0.8rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.help-links a:hover i { transform: translateX(4px); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--treehouse-green);
    padding: 5rem 0;
    color: white;
}

.cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline-light i { margin-right: 8px; }

/* ============================================
   FOOTER - EVENLY DISTRIBUTED ON DESKTOP
   ============================================ */

.footer {
    background: var(--treehouse-dark);
    color: #fff;
    padding: 40px 0 20px;
    border-top: 3px solid var(--treehouse-green);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FOOTER GRID - EVENLY DISTRIBUTED */
.footer-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;  /* ← EVENLY DISTRIBUTED */
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

/* Each widget - equal distribution */
.footer-widget {
    flex: 1 1 0;
    min-width: 0;
}

/* First widget - Treehouse Family - same as others */
.footer-widget:first-child {
    flex: 0 1 auto;
    max-width: 280px;
}

/* All widgets equal */
.footer-widget:not(:first-child) {
    flex: 0 1 auto;
    min-width: 140px;
    max-width: 200px;
}

.footer-widget h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--treehouse-green-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget h5 i {
    color: var(--treehouse-green-light);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a{
    color: #ffffff;
    font-size: small;
}

.footer-contact p i {
    color: var(--treehouse-green-light);
    width: 18px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* WHITE LINKS */
.footer-contact p a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-contact p a:hover {
    color: var(--treehouse-orange) !important;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--treehouse-orange) !important;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: var(--treehouse-green);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .footer-widget {
        min-width: 180px;
        max-width: 280px;
    }
    
    .footer-widget:first-child {
        max-width: 320px;
    }
    
    .footer-widget:not(:first-child) {
        min-width: 160px;
        max-width: 220px;
    }
}

/* ============================================
   RESPONSIVE - TABLET (1024px and below)
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 25px;
    }
    
    .footer-widget {
        flex: 0 1 calc(33.33% - 25px);
        min-width: 170px;
        max-width: 220px;
    }
    
    .footer-widget:first-child {
        flex: 0 1 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .footer-widget:first-child .footer-text {
        max-width: 450px;
        text-align: center;
    }
    
    .footer-widget:first-child .footer-contact p {
        justify-content: center;
    }
    
    .footer-widget:first-child h5 {
        justify-content: center;
    }
    
    .footer-widget:first-child .social-icons {
        justify-content: center;
    }
    
    .footer-widget:not(:first-child) {
        flex: 0 1 calc(33.33% - 25px);
        min-width: 150px;
        max-width: 200px;
        text-align: left;
        align-items: flex-start;
    }
}

/* ============================================
   RESPONSIVE - TABLET SMALL (768px and below)
   ============================================ */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-grid {
        flex-wrap: wrap;
        gap: 25px 20px;
        justify-content: center;
    }
    
    .footer-widget:first-child {
        flex: 0 1 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .footer-widget:not(:first-child) {
        flex: 0 1 calc(50% - 20px);
        min-width: 140px;
        max-width: 200px;
        text-align: center;
        align-items: center;
    }
    
    .footer-widget h5 {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (576px and below)
   ============================================ */
@media (max-width: 576px) {
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer .container {
        padding: 0 15px;
    }
    
    .footer-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 25px;
        align-items: center;
        justify-content: center;
    }
    
    .footer-widget {
        flex: 0 1 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        text-align: center;
        align-items: center;
    }
    
    .footer-widget:first-child {
        flex: 0 1 100% !important;
        max-width: 100% !important;
    }
    
    .footer-widget:not(:first-child) {
        flex: 0 1 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    .footer-widget h5 {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-contact p {
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL (360px and below)
   ============================================ */
@media (max-width: 360px) {
    .footer {
        padding: 20px 0 10px;
    }
    
    .footer .container {
        padding: 0 10px;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .footer-widget h5 {
        font-size: 0.85rem;
    }
    
    .footer-text {
        font-size: 0.75rem;
    }
    
    .footer-contact p {
        font-size: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-contact p a {
        font-size: 0.7rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 0.65rem;
    }
}