  :root{
    --lf-primary:#1f7a3a;
    --lf-secondary:#6fbf8e;
    --lf-accent:#c9a24d;
    --lf-dark:#0f3d24;
    --lf-white:#ffffff;
    --lf-light:#f4faf6;
  }

  *{margin:0;padding:0;box-sizing:border-box}
  body{
    font-family:'Poppins',sans-serif;
    background:var(--lf-light);
  }
/* --- PAGE HERO --- */
.page-title {
    background: linear-gradient(rgba(15, 81, 52, 0.85), rgba(15, 81, 52, 0.85)),
                url('../images/who-we-are.jpeg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 195px 8%; /* +150px total height */
    text-align: center;
}

.page-title h1 {
    font-size: clamp(32px, 5vw, 55px);
    margin-bottom: 15px;
}

/* --- CONTACT INFO --- */
.contact-info-section {
    padding: 100px 8%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    color: var(--brand-green);
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-box {
    padding: 50px 40px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 4px solid var(--brand-green);
}

.contact-box:hover {
    transform: translateY(-6px);
}

.contact-box i {
    font-size: 45px;
    color: var(--brand-green);
    margin-bottom: 25px;
}

.contact-box h4 {
    font-size: 22px;
    color: var(--brand-green);
    margin-bottom: 15px;
}

.highlight {
    color: var(--brand-green);
    font-weight: 700;
}

/* --- FORM & MAP --- */
.form-map-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
}

.contact-form {
    padding: 100px 16%;
    background: var(--light-bg);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--brand-green);
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brand-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
}

.submit-btn {
    background: var(--brand-green);
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--brand-green-dark);
}

/* --- MAP --- */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 450px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .form-map-split {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 60px 8%;
    }
}

/* ================= MAP SECTION ================= */

.lf-map-section{
    padding:100px 8%;
    background:var(--light-bg);
}

.lf-map-header{
    text-align:center;
    margin-bottom:40px;
}

.lf-map-header h2{
    font-size:34px;
    color:var(--brand-green);
    margin-bottom:12px;
}

.lf-map-header p{
    font-size:16px;
    color:#475569;
    max-width:720px;
    margin:0 auto;
}

/* MAP CONTAINER */
.lf-map-container{
    width:100%;
    height:450px; /* 👈 GOOD, PROFESSIONAL SIZE */
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
    background:#fff;
}

.lf-map-container iframe{
    width:100%;
    height:100%;
    border:none;
}

/* MOBILE */
@media (max-width:768px){
    .lf-map-section{
        padding:70px 6%;
    }

    .lf-map-container{
        height:320px;
    }

    .lf-map-header h2{
        font-size:28px;
    }
}
