/* =========================
   GENERAL
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a{
    text-decoration: none;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding{
    padding: 90px 0;
}


/* =========================
   HERO SECTION
========================= */

.contact-hero{
    background:
        linear-gradient(
            rgba(11,93,42,0.90),
            rgba(11,93,42,0.90)
        ),
        url("../img/10.jpg") center/cover;

    color: #fff;
    text-align: center;
    padding: 110px 0;
}

.hero-content{
    max-width: 750px;
    margin: auto;
}

.breadcrumb{
    margin-bottom: 20px;
}

.breadcrumb a{
    color: #fff;
}

.breadcrumb span{
    margin: 0 8px;
}

.contact-hero h1{
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p{
    font-size: 17px;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-heading span,
.contact-text > span{
    color: #0b5d2a;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 13px;
}

.section-heading h2{
    font-size: 36px;
    margin: 12px 0;
    color: #222;
}

.section-heading p{
    color: #777;
}


/* =========================
   CONTACT INFORMATION
========================= */

.contact-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card{
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.contact-card:hover{
    transform: translateY(-8px);
}

.contact-icon{
    width: 65px;
    height: 65px;
    margin: auto auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eaf5ee;
    color: #0b5d2a;
    border-radius: 50%;
    font-size: 24px;
}

.contact-card h3{
    margin-bottom: 12px;
}

.contact-card p{
    color: #777;
    font-size: 14px;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    background: #f7f9f8;
}

.contact-wrapper{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2{
    font-size: 40px;
    margin: 12px 0 20px;
}

.contact-text > p{
    color: #666;
    margin-bottom: 25px;
}

.contact-list{
    margin-top: 25px;
}

.contact-list-item{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-list-item i{
    color: #0b5d2a;
}


/* =========================
   SOCIAL LINKS
========================= */

.social-links{
    margin-top: 35px;
}

.social-links h4{
    margin-bottom: 15px;
}

.social-links a{
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-right: 8px;
    align-items: center;
    justify-content: center;
    background: #0b5d2a;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover{
    background: #083f1d;
    transform: translateY(-4px);
}


/* =========================
   FORM
========================= */

.contact-form-box{
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group{
    margin-bottom: 20px;
}

.form-group label{
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
}

.form-group textarea{
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: #0b5d2a;
}

.submit-btn{
    border: none;
    background: #0b5d2a;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn i{
    margin-left: 8px;
}

.submit-btn:hover{
    background: #083f1d;
}


/* =========================
   AREA COUNCILS
========================= */

.area-councils{
    background: #fff;
}

.council-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.council-card{
    border: 1px solid #eee;
    padding: 35px 30px;
    border-radius: 8px;
    transition: 0.3s;
}

.council-card:hover{
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.council-card h3{
    color: #0b5d2a;
    margin-bottom: 20px;
}

.council-card p{
    margin-bottom: 12px;
    color: #666;
}

.council-card i{
    color: #0b5d2a;
    width: 25px;
}


/* =========================
   MAP
========================= */

.map-section{
    width: 100%;
}

.map-section iframe{
    display: block;
}


/* =========================
   TABLET RESPONSIVENESS
========================= */

@media(max-width: 992px){

    .navbar{
        gap: 12px;
    }

    .contact-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper{
        grid-template-columns: 1fr;
    }

    .council-grid{
        grid-template-columns: 1fr;
    }

}


/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media(max-width: 768px){

    .nav-container{
        flex-direction: column;
        gap: 20px;
    }

    .navbar{
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-hero{
        padding: 80px 0;
    }

    .contact-hero h1{
        font-size: 34px;
    }

    .section-heading h2{
        font-size: 28px;
    }

    .contact-text h2{
        font-size: 32px;
    }

    .form-row{
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid{
        grid-template-columns: 1fr;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width: 550px){

    .section-padding{
        padding: 65px 0;
    }

    .contact-grid{
        grid-template-columns: 1fr;
    }

    .contact-form-box{
        padding: 25px 20px;
    }

    .contact-hero h1{
        font-size: 30px;
    }

    .navbar a{
        font-size: 13px;
    }

}