:root {
    --primary-green: #0bbd43;
    --dark-green: #09a038;
    --light-green: #E8FFF3;
    --accent-red: #fe0000;
    --gradient-green: linear-gradient(135deg, #0bbd43 0%, #0ee052 100%);
    --dark-bg: #1A1A2E;
    --darker-bg: #0F0F1E;
    --text-dark: #323232;
    --text-light: #666666;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --primary-color: #0cbd44;
    --accent-color: #fe0000;
    --bg-light: #f8f9fa;
    --bg-sponsor: #eff0fa;
}

@font-face {
  font-family: comfortaa;
  src: url(fonts/Comfortaa-Bold.ttf);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.navbar.fixed-top {
    position: relative; /* make it scroll with the page */
    top: 0;             /* remove any top offset */
}

/* Navbar Styles */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
    height: 75px;
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-dark) !important;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.5rem;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;

}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;

}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.donate-btn {
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 25px;
    padding: 0.6rem 1.8rem !important;
}

.nav-link.donate-btn:hover {
    background: #0aa63a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 189, 68, 0.3);
}

.nav-link.donate-btn::after {
    display: none;
}

/* Hamburger Icon Animation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Navbar Styles */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 2px;
        height: auto;
    }
    
    .navbar-collapse {
        padding: 1rem 0.5rem;
    }
    
    .navbar-nav {
        align-items: flex-start;
    }
    
    .nav-link {
        padding: 0.8rem 0 !important;
        width: 100%;
        position: relative;
    }
    
    .nav-link::after {
        width: 100%;
        opacity: 0;
    }
    
    .nav-link:hover::after {
        opacity: 1;
    }
    
    .nav-link.donate-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
        width: auto;
    }
}
/* Mobile Navbar Styles */
@media (max-width: 578px) {
    .navbar {
        padding: 10px 25px;
    }
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-green);
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation-delay: 2s;
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 40px) scale(0.9); }
}

.hero-content {
    padding-right: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.brand-text {
    color: var(--primary-green);
    font-weight: 700;
}

span#macheza_app{
    font-family: comfortaa;
    font-size: 30px;
    color: #07c944;
    font-weight: bold;
    text-transform: lowercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.heart-icon{
    color: #fe0000;                 /* Fill color */
    -webkit-text-stroke: 1px black; /* Stroke */
    font-size: 18px;            /* Optional size */
}
.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-meta {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-green);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 106, 0.4);
}

.download-links {
    display: flex;
    gap: 1rem;
}


.store-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.store-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Phone Mockup */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 25px;
    background: var(--text-dark);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-content {
    padding: 80px 20px 20px;
}

.phone-icon {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3);
}

.phone-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.chat-bubble {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
    animation: slideIn 0.5s ease;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chat-received {
    background: #F0F0F0;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-sent {
    background: var(--primary-green);
    color: var(--white);
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.emoji {
    font-size: 1.2rem;
}

.phone-floating-card {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: cardFloat 3s ease-in-out infinite;
}

.phone-floating-card i {
    font-size: 2rem;
    color: var(--primary-green);
}

.card-1 {
    top: 10%;
    right: 0%;
    animation-delay: 0.5s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* About Section */
.download-section {
    background: var(--gray-light);
}
.download-info{
    height: 500px;          /* or any height you want */
    padding: 20px;
}

p#download-text{
    line-height: 1.4;
    color: #555;
    font-size: 20px;
    margin-top: 10px;
}

.section-label {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-success {
    background: var(--primary-green);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.about-illustration img {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
}

.floating {
    animation: floatingImage 3s ease-in-out infinite;
}

@keyframes floatingImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Best Messaging Section */
.best-messaging-section {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 150px;
    height: 150px;
    background: var(--light-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}


.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3);
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}


.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-block {
    width: 100%;
    padding: 1rem;
}

@media (max-width: 991px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #3d3d3d;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.2rem;
    color: #3d3d3d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-support {
    font-size: 1rem;
    color: #3d3d3d;
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-light {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-green);
}

.btn-light:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateY(-3px);
}

    /* Modal background */
   
   
/*Donation*/
 /* Modal background */
   
    .modal-content {
      background: #ffffff;
      margin: 10% auto;
      padding: 25px;
      width: 90%;
      max-width: 420px;
      border-radius: 10px;
      text-align: center;
      font-family: sans-serif;
      transform: scale(0.7);
      transition: transform 0.3s ease;
    }

    /* Close button */
    .close {
      float: right;
      font-size: 22px;
      cursor: pointer;
    }

    /* Text */
    .modal-text {
      color: #444;
      margin: 15px 0;
      font-size: 17px;
    }

    
    /* Donation methods */
    .donation-container {
        background: #eff0fa;
        border-radius: 15px;
        padding: 20px;
    }
    .donation-methods {
        display: flex;           /* horizontal layout */
        justify-content: center; /* center horizontally */
        gap: 20px;               /* spacing between cards */
        flex-wrap: nowrap;       /* keep them in one row */
        margin-top: 15px;
        
    }

    .method-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        padding: 15px;
        width: 220px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .method-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Method content */
    .method {
        display: flex;
        flex-direction: column; /* default desktop: icon on top */
        align-items: center;
        text-align: center;
    }

    #airtel {
        width: 65px;
        margin-bottom: 10px;
    }

    #tnm {
        width: 50px;
        margin-bottom: 10px;
    }

    #paypal {
        width: 45px;
        margin-bottom: 10px;
    }

    .method span {
        display: block;
        font-size: 14px;
        line-height: 1.4;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;

    }



    .method span p {
        margin: 4px 0 0 0;
        font-size: 13px;
    }

    /* =======================
       Responsive for Mobile
    ======================= */
    @media screen and (max-width: 768px) {
        .donation-container {
            padding: 15px;
        }

        .donation-methods {
            flex-direction: column; /* stack cards vertically */
            align-items: center;
        }

        .method-card {
            padding: 5px;
            width: 100%; /* full width on mobile */
        }

        .method {
            flex-direction: row; /* icon left, text right */
            align-items: center;
            text-align: left;
        }

        #airtel {
            width: 50px;
            margin-bottom: 10px;
            margin: 0 5px 0 0; 
        }

        #tnm {
            width: 40px;
            margin-bottom: 10px;
            margin: 0 5px 0 0; 
        }

        #paypal {
            width: 35px;
            margin-bottom: 10px;
            margin: 0 5px 0 0; 
        }
        

        .method span {
            font-size: 14px;
        }

        .method span p {
            font-size: 13px;
        }
    }


    /* OPEN Animation */
    .modal.show {
      display: block;
      opacity: 1;
    }

    .modal.show .modal-content {
      transform: scale(1);
    }

    /* CLOSE Animation */
    .modal.hide {
      opacity: 0;
    }

    .modal.hide .modal-content {
      transform: scale(0.7);
    }


    /* Donate button */
    .donate-btn {
      background: #25d366;
      color: #fff;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 6px;
      margin-top: 10px;
      font-size: 16px;
      cursor: pointer;
    }



/* Sponsors Section */
.sponsors-section {
    padding: 80px 0;
    background: #eff0fa;
    overflow: hidden;
}

.sponsors-container {
    position: relative;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.sponsors-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.sponsors-slider {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.sponsor-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 1rem;
    min-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.sponsors-slider:hover {
    animation-play-state: paused;
}

.sponsor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), #0aa63a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.sponsor-details {
    flex: 1;
    text-align: left;
}

.sponsor-details h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.sponsor-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsor-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.sponsor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.sponsor-dot:hover {
    background: #a0a0a0;
    transform: scale(1.2);
}

.sponsor-dot.active {
    background: var(--primary-green);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .sponsor-card {
        min-width: 320px;
        flex-direction: column;
        text-align: center;
    }
    
    .sponsor-details {
        text-align: center;
    }
}

.faq-section {
    background: var(--gray-light);
    margin: 0 auto;
    padding: 40px 0px;
}
 .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-header h1 .highlight {
    color: #00c853;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.15);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #f8fdf9;
}

.faq-question h3 {
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: #00c853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: #00a843;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px;
    }
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 1px;
}

.footer-col {
    flex: 1; 
    margin-bottom: 10px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.social-links i {
    display: inline-block;
    text-align: center;
    justify-content: center;
}

.social-links a {
    display: inline-block;
    text-align: center;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

.site-notice{
    top: 0;
    left: 0;
    width: 100%;
    background: #faa21d;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;

    z-index: 1050; /* Above navbar */
}

.site-notice strong{
    text-decoration: underline;
}


#feedbackToast {
    border-radius: 5px; /* optional: remove rounded corners for banner look */
    max-width: 100%;   /* full width */
}

.toast-success {
    background-color: #0edd51 !important; /* black, 80% opacity */
    color: #000;
}

.toast-error {
    background-color: #fe0000 !important; /* Bootstrap danger red */
    color: #000;
}
