@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* ===== WRAP ===== */
.lcf-centres-wrap {
    font-family: 'Open Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ===== HEADER ===== */
.lcf-centres-header {
    text-align: center;
    margin-bottom: 50px;
}

.lcf-centres-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1e5c2e;
    margin-bottom: 12px;
}

.lcf-centres-sub {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 20px;
}

.lcf-centres-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.lcf-centres-divider span {
    display: block;
    width: 50px;
    height: 2px;
    background: #1e5c2e;
    border-radius: 2px;
}

.lcf-centres-divider i {
    color: #1e5c2e;
    font-size: 16px;
}

/* ===== STATE BLOCK ===== */
.lcf-state-block {
    margin-bottom: 40px;
}

.lcf-state-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e5c2e;
    border-left: 4px solid #1e5c2e;
    padding-left: 14px;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* ===== GRID ===== */
.lcf-contacts-grid {
    display: grid;
    gap: 18px;
}

.lcf-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lcf-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lcf-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== CARD ===== */
.lcf-contact-card {
    background: #ffffff;
    border: 1px solid #e0f0e3;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.lcf-contact-card:hover {
    box-shadow: 0 6px 24px rgba(30,92,46,0.13);
    transform: translateY(-3px);
}

/* ===== NAME ROW ===== */
.lcf-contact-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.lcf-contact-icon {
    font-size: 20px;
    color: #1e5c2e;
    flex-shrink: 0;
}

.lcf-contact-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1e5c2e;
    line-height: 1.3;
}

/* ===== ROLE ===== */
.lcf-contact-role {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin: 0 0 10px 28px;
}

/* ===== ADDRESS ===== */
.lcf-contact-address {
    font-size: 13px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
    display: flex;
    gap: 7px;
    align-items: flex-start;
}

.lcf-contact-address i {
    color: #1e5c2e;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== PHONE ===== */
.lcf-contact-phone {
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.lcf-contact-phone i {
    color: #1e5c2e;
    font-size: 12px;
}

.lcf-contact-phone a {
    color: #444;
    text-decoration: none;
}

.lcf-contact-phone a:hover {
    color: #1e5c2e;
}

/* ===== EMAIL ===== */
.lcf-contact-email {
    font-size: 13px;
    color: #444;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.lcf-contact-email i {
    color: #1e5c2e;
    font-size: 12px;
}

.lcf-contact-email a {
    color: #1e5c2e;
    text-decoration: none;
    font-weight: 600;
}

.lcf-contact-email a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .lcf-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .lcf-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .lcf-cols-2,
    .lcf-cols-3,
    .lcf-cols-4 {
        grid-template-columns: 1fr;
    }

    .lcf-centres-title { font-size: 26px; }
    .lcf-state-title   { font-size: 17px; }
}
