/* ================================================================
   DDO SOMALIA CONTACT PAGE - STYLES
   ================================================================ */

/* =========================
   TOP HEADER - CONTACT PAGE
========================= */

.top-header-contact {
    background: #12961C;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    font-size: 0.9rem;
}

.top-header-contact .top-header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.top-header-contact .header-contact {
    display: flex;
    gap: 2rem;
}

.top-header-contact .header-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.top-header-contact .header-contact a:hover {
    color: #24B15E;
}

.top-header-contact .header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-header-contact .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-header-contact .language-switch select {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-header-contact .language-switch select:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* =========================
   NAVBAR - CONTACT PAGE
========================= */

.navbar-contact {
    position: fixed;
    top: 3rem;
    width: 100%;
    z-index: 1000;
    background: white;
    padding: 0.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container-contact {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    gap: 2rem;
}

.nav-container-contact .logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-menu-contact {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu-contact a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu-contact a:hover,
.nav-menu-contact a.active {
    color: #24B15E;
}

.donate-btn-contact {
    background: #12961C;
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.donate-btn-contact:hover {
    background: #24B15E;
}

.mobile-menu-toggle-contact {
    display: none;
    background: #12961C;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* =========================
   CONTACT PAGE SECTIONS
========================= */

.contact-page {
    width: 100%;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 70%, transparent 100%), 
                url('../images/ddo-bg-004.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: -8rem;
    padding-top: 8rem;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 150, 28, 0.1);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    color: white;
    text-align: left;
    padding: 3rem 2rem;
}

.contact-hero-label {
    font-size: 0.9rem;
    color: #24B15E;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: #f8f8f8;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #f0f8f5;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info-icon {
    font-size: 2.5rem;
    color: #12961C;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.contact-info-detail {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-detail a {
    color: #12961C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-detail a:hover {
    color: #24B15E;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.form-column {
    display: flex;
    flex-direction: column;
}

.map-column {
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #12961C;
    box-shadow: 0 0 0 3px rgba(18, 150, 28, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(18, 150, 28, 0.3);
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Contact Map */
.contact-map-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map-section h3 {
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 1.3rem;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    flex-grow: 1;
}

.contact-map iframe {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

/* Donate Card Below Map */
.donate-card-below-map {
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(18, 150, 28, 0.2);
    height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.donate-card-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.donate-card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.donate-btn-contact-card {
    display: inline-block;
    background: white;
    color: #12961C;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.donate-btn-contact-card:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Office Locations Inline (Below Map) */
.office-locations-inline {
    margin-top: 3rem;
}

.office-locations-inline h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.office-locations-inline .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.offices-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.office-card-small {
    background: white;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #12961C;
    transition: all 0.3s ease;
}

.office-card-small:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.office-card-small h3 {
    font-size: 1rem;
    color: #12961C;
    margin-bottom: 1rem;
    font-weight: 700;
}

.office-card-small .office-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-card-small .office-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-card-small .office-details i {
    color: #12961C;
    font-size: 0.85rem;
}

.office-card-small .office-details a {
    color: #12961C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-card-small .office-details a:hover {
    color: #24B15E;
    text-decoration: underline;
}

/* Office Locations */
.office-locations {
    padding: 5rem 2rem;
    background: white;
}

.office-locations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.office-card {
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #12961C;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.office-card h3 {
    color: #000;
    margin-bottom: 1.5rem;
}

.office-details p {
    color: #666;
    margin: 0.75rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.office-details a {
    color: #12961C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-details a:hover {
    color: #24B15E;
}

/* FAQ Section */
.contact-faq {
    padding: 5rem 2rem;
    background: white;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.faq-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-left h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
}

.faq-left p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #12961C;
    flex-shrink: 0;
}

.category-item p {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.faq-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    background: #f8f8f8;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-header:hover {
    background: #f0f0f0;
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-title i {
    font-size: 1.2rem;
    color: #12961C;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #12961C;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #24B15E;
    color: white;
}

.faq-content p {
    margin: 0;
    padding: 0;
    color: white;
}

.faq-item.active .faq-header {
    background: #000;
}

.faq-item.active .faq-header .faq-title {
    color: white;
}

.faq-item.active .faq-header .faq-title i {
    color: white;
}

.faq-item.active .faq-toggle {
    color: white;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 1.5rem 1.75rem;
}

/* CTA Section */
.contact-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #12961C 0%, #24B15E 100%);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary {
    background: white;
    color: #12961C;
}

.btn-cta-primary:hover {
    background: #f0f8f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #12961C;
    transform: translateY(-3px);
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px) {
    .top-header-contact {
        padding: 0.75rem 1rem;
    }

    .top-header-contact .top-header-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .top-header-contact .header-contact {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
        align-items: center;
    }

    .top-header-contact .header-right {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: center;
    }

    .nav-container-contact {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
        height: auto;
        gap: 0.5rem;
    }

    .nav-container-contact .logo {
        width: 50px;
        height: 50px;
    }

    .mobile-menu-toggle-contact {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .donate-btn-contact {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .nav-menu-contact {
        display: none;
        order: 4;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-menu-contact.active {
        display: flex;
    }

    .contact-hero {
        min-height: 50vh;
        background-attachment: scroll;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2.5rem 2rem;
        border-radius: 10px;
    }

    .contact-map {
        height: 400px;
    }

    .contact-map-section {
        padding: 2.5rem 1.5rem;
    }

    .contact-info-grid,
    .offices-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-content {
        padding: 2rem 1rem;
    }

    .contact-info-section,
    .contact-form-section,
    .office-locations,
    .contact-faq,
    .contact-cta {
        padding: 3rem 1rem;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left h2 {
        font-size: 2rem;
    }

    .faq-categories {
        flex-direction: row;
        gap: 1rem;
    }

    .category-item {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .category-item p {
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}

/* Mobile Responsive - Fix button and card sizes */
@media (max-width: 768px) {
    /* Contact Info Cards */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-card {
        padding: 2rem 1.75rem;
        border-radius: 10px;
    }

    .contact-info-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .contact-info-card h3 {
        font-size: 1.1rem;
    }

    /* Contact Form */
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
        border-radius: 10px;
    }

    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        background: #12961C;
        color: white;
        font-weight: 600;
        border-radius: 4px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background: #24B15E;
    }

    /* Map */
    .contact-map {
        height: 400px;
        border-radius: 8px;
    }

    /* Office Locations */
    .offices-grid-inline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .office-card-small {
        padding: 1rem;
    }

    .office-card-small h3 {
        font-size: 1rem;
    }

    .office-details {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left h2 {
        font-size: 1.5rem;
    }

    .faq-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-item {
        padding: 1rem;
    }

    .category-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    /* CTA Section */
    .contact-cta h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    /* Donate Card Below Map */
    .donate-card-below-map {
        padding: 2.5rem 2rem;
        height: auto;
        min-height: 300px;
    }

    .donate-card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .donate-card-content p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .donate-btn-contact-card {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    /* Contact Info Cards */
    .contact-info-card {
        padding: 1rem;
        text-align: center;
    }

    .contact-info-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
        margin: 0 auto 0.75rem;
    }

    .contact-info-card h3 {
        font-size: 1rem;
    }

    .contact-info-detail {
        font-size: 0.85rem;
    }

    /* Form */
    .form-header h2 {
        font-size: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }

    /* Map */
    .contact-map {
        height: 250px;
    }

    .contact-map-section h3 {
        font-size: 1.1rem;
    }

    /* Office Cards */
    .office-card-small {
        padding: 0.85rem;
    }

    .office-card-small h3 {
        font-size: 0.95rem;
    }

    .office-details {
        font-size: 0.8rem;
    }

    .office-details p {
        margin-bottom: 0.4rem;
    }

    /* FAQ */
    .faq-left h2 {
        font-size: 1.25rem;
    }

    .category-item {
        padding: 0.75rem;
    }

    .category-item p {
        font-size: 0.85rem;
    }

    .category-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .faq-title {
        font-size: 0.95rem;
    }

    /* CTA */
    .contact-cta h2 {
        font-size: 1.25rem;
    }

    .contact-cta p {
        font-size: 0.9rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
    }

    /* Donate Card */
    .donate-card-below-map {
        padding: 1rem;
    }

    .donate-card-content h3 {
        font-size: 1.1rem;
    }

    .donate-card-content p {
        font-size: 0.9rem;
    }

    .donate-btn-contact-card {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
    }
}
/* =========================
   FORM VALIDATION & MESSAGES
========================= */

/* Form Message Display */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Field Error States */
.form-control.error {
    border-color: #d32f2f !important;
    background-color: #ffebee;
}

.form-control.error:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Error Message Display */
.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    font-weight: 500;
    min-height: 1.2rem;
}

/* Loading State */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Submit Button Loading State */
.submit-btn:disabled,
.donate-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #12961C;
    box-shadow: 0 0 0 3px rgba(18, 150, 28, 0.1);
}

/* Checkbox Styling */
.checkbox-option input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-option label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

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

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