/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;  /* removes underline */
    color: inherit;         /* removes blue, uses parent color */
}

/* ================= NAV ================= */
.navHeadContainer {
    background:
        linear-gradient(rgba(31, 81, 58, 0.5), rgba(31, 81, 58, 0.9)),
        url('../ClientImages/contactUSPage.jpeg');
    background-color: #1F513AE5;
    min-height: 500px; /* ✅ FIXED */
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* NAVBAR */
.navbarCon {
    width: 95%;
    background-color: white;
    border-radius: 40px;
    padding: 10px 20px;
}

/* FLEX WRAPPER */
.imagesNavConList {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO + MENU */
.imageList {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LOGO */
.imagesNavConList .imageList img {
    height: 60px;
}

/* NAV MENU */
.navMainList ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.navMainList ul li {
    font-weight: 600;
    font-size: 14px;
    color: rgba(34, 40, 42, 0.7);
    cursor: pointer;
}

.navMainList ul li a {
    text-decoration: none;
    color: inherit;
}

/* BUTTON */
.navContactButton button {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background-color: #38644f;
    color: white;
    font-weight: 600;
}

/* ================= HERO ================= */
.aboutHeroContent {
    width: 90%;
    max-width: 1200px;
    margin-top: 50px;
}

.aboutHeroContent h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 100%;
    word-wrap: break-word;
}

.aboutHeroContent p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.6;
}

/* ================= CONTACT SECTION ================= */
.contactSection {
    background-color: #f5f5f5;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.contactWrapper {
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* FORM SIDE */
.contactForm {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.formRow {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.inputGroup {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inputGroup label {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.inputGroup input,
.inputGroup select,
.inputGroup textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: none;
}

.fullWidth {
    width: 100%;
    margin-bottom: 20px;
}

.sendBtn {
    background-color: #2e7d32;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

/* INFO PANEL */
.contactInfo {
    background: rgba(241, 237, 228, 1);
    padding: 30px;
    border-radius: 12px;
}

.contactInfo h3 {
    margin-bottom: 20px;
}

.infoItem {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.infoItem span {
    font-size: 20px;
}

.infoItem p {
    font-size: 13px;
    color: gray;
}

.infoValue {
    font-weight: 600;
}

.socials p {
    margin-bottom: 10px;
}

.icons {
    display: flex;
    gap: 10px;
}

.icons span {
    width: 35px;
    height: 35px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

/* ================= FOOTER ================= */
.footerSection {
    width: 100%;
    background-color: #1f513a;
    color: white;
    padding: 80px 20px 30px;
}

.footerContainer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footerLeft img {
    width: 60px;
    margin-bottom: 15px;
}

.footerLeft p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footerLinks h4,
.footerContact h4 {
    margin-bottom: 15px;
}

.footerLinks ul {
    list-style: none;
}

.footerLinks ul li {
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

/* SOCIAL */
.socialIcons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.socialIcons span {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* BOTTOM */
.footerBottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 768px) {
    /* NAVBAR (Handled by global.css) */
    /* .imagesNavConList {
        flex-direction: column;
        gap: 15px;
    }

    .imageList {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    } */

    /* MENU STACK */
    .navMainList ul {
        flex-direction: column;
        gap: 15px;
        background: white;
        padding: 20px;
        border-radius: 20px;
        width: 100%;
    }

    .navMainList ul li {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    /* BUTTON */
    .navContactButton button {
        width: 100%;
        max-width: 200px;
    }

    /* HERO */
    .aboutHeroContent {
        text-align: center;
    }

    .aboutHeroContent h3 {
        font-size: 28px;
    }

    .aboutHeroContent p {
        font-size: 16px;
    }
    

}

/* ================= CONTACT RESPONSIVE ================= */
@media (max-width: 900px) {

    .contactWrapper {
        grid-template-columns: 1fr; /* STACK */
    }

    .contactInfo {
        order: -1; /* moves info panel ABOVE form (optional but nice UX) */
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .formRow {
        flex-direction: column; /* STACK INPUTS */
        gap: 15px;
    }

    .contactForm,
    .contactInfo {
        padding: 20px;
    }

    .sendBtn {
        width: 100%; /* full width button */
        text-align: center;
    }
}


