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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Header  */
header {
    background: linear-gradient(135deg, #156e93, #19849f);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 0;
    flex-wrap: wrap;
}

.logo {
    /* width: 80px; */
    cursor: pointer;
    animation: fadeIn 1s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80px;
    /* filter: brightness(0) invert(1); */
}
.logo-name{
    display: flex;
    align-items: start;
    flex-direction: column;
}
.logo-text{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    /* padding: 25px 0px 0px 0px; */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.menupages ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.menupages ul a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.menupages ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e7a133;
    transition: width 0.3s ease;
}

.menupages ul a:hover::after {
    width: 100%;
}

.menupages ul a:hover {
    color: #e7a133;
}

.donate-btn {
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    background-color: #d27d32;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 125, 50, 0.3);
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 125, 50, 0.5);
    background-color: #e7a133;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(21, 110, 147, 0.9), rgba(25, 132, 159, 0.9)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600');
    background-size: cover;
    background-position: center;
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 32px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info h2 {
    font-size: 42px;
    color: #156e93;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    line-height: 32px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #156e93, #19849f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 22px;
    color: #156e93;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 26px;
}

.info-text a {
    color: #156e93;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #d27d32;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.contact-form h3 {
    font-size: 32px;
    color: #156e93;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #156e93;
    box-shadow: 0 0 0 4px rgba(21, 110, 147, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #156e93, #19849f);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(21, 110, 147, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 110, 147, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    padding: 0;
    background: white;
}

.map-container {
    width: 100%;
    height: 500px;
    /* background: linear-gradient(135deg, #156e93, #19849f); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    font-size: 24px;
    position: relative;
    overflow: hidden;
}
.map-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 0;
    pointer-events: none;
}
.map-container:hover iframe{
    pointer-events: auto;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.85); 
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.map-overlay h3 a:hover{
    color: #d27d32;
}
.map-overlay a{
    text-decoration: none;
    color: black;
}
.map-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}


.map-overlay h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.map-overlay p {
    font-size: 18px;
    opacity: 0.95;
}

/* Get Involved Section */
.get-involved {
    padding: 80px 20px;
    background: #f8f9fa;
}

.involved-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.involved-container h2 {
    font-size: 42px;
    color: #156e93;
    margin-bottom: 20px;
}

.involved-container > p {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.involved-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.option-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.option-card:nth-child(1) { animation-delay: 0.1s; }
.option-card:nth-child(2) { animation-delay: 0.2s; }
.option-card:nth-child(3) { animation-delay: 0.3s; }

.option-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d27d32, #e7a133);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
    color: white;
}

.option-card h3 {
    font-size: 24px;
    color: #156e93;
    margin-bottom: 15px;
}

.option-card p {
    font-size: 16px;
    color: #666;
    line-height: 26px;
    margin-bottom: 25px;
}

.option-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #156e93, #19849f);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 110, 147, 0.3);
}

.option-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 110, 147, 0.5);
}

/* Success Message */
.success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}


/* Footer */
footer {
    background: linear-gradient(135deg, #156e93, #19849f);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e7a133;
}


.footer-section a {
    color: rgba(255,255,255,0.9);
    line-height: 28px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-section p{
    color: rgba(255,255,255,0.9);
    line-height: 28px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a:hover {
    color: #e7a133;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e7a133;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

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

/* WhatsApp Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.popup-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #25D366;
}

.popup-info h4 {
    color: white;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.popup-info p {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    margin: 3px 0 0 0;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(255,255,255,0.2);
}

.popup-body {
    padding: 20px;
    background: #e5ddd5;
    min-height: 120px;
}

.message-bubble {
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    max-width: 90%;
}

.message-bubble::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.message-bubble p {
    color: #333;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 0;
}

.message-time {
    font-size: 11px;
    color: #999;
    display: block;
    text-align: right;
    margin-top: 5px;
}

.popup-footer {
    padding: 15px;
    background: white;
}

.start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.start-chat-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

.start-chat-btn i {
    font-size: 20px;
}

/* Notification Badge */
.whatsapp-button::after {
    content: '1';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-popup {
        width: 280px;
        bottom: 75px;
        right: -10px;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    nav{
        position: relative;
    }
    .menupages {
         display: none;
        width: 100%;
        background: linear-gradient(135deg, #156e93, #19849f);
        margin-top: 15px;
        border-radius: 10px;
        position: absolute;
        top: 100%;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .menupages.active {
        display: block;
    }

    .menupages ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }
    .donate-btn {
        margin-top: 15px;
        display: none;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    .involved-options {
        grid-template-columns: 1fr;
    }
    .info-card{
        padding: 20px 0px;
    }
    .map-container {
        height: 400px;
    }

    .map-overlay {
        padding: 25px;
    }
}
