/* CONTACT INFO CARDS */
.info-section {
    padding: 50px 60px 30px;
}

.info-section h2 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-section p.sub {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    border: 1.5px solid #111;
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.info-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
}

/* MAIN CONTENT */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 60px 50px;
}

/* FORM */
.form-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-section p.sub {
    color: #111;
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #111;
    border-radius: 0px;
    font-size: 0.88rem;
    color: #333;
    outline: none;
    transition: border 0.2s;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #111;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.btn-submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    width: 100%;
    
}

.btn-submit:hover {
    background: #f5a623;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

/* DEPARTMENTS */
.dept-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.dept-section p.sub {
    color: #555;
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.dept-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dept-card {
    border: 1.5px solid #111;
    border-radius: 0px;
    padding: 18px 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
}

.dept-card:hover {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.09);
    border-color: #bbb;
}

.dept-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dept-card p {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 8px;
}

.dept-card .email-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #333;
}

.dept-card .email-row svg {
    width: 15px;
    height: 15px;
    color: #555;
    flex-shrink: 0;
}

/* MAP */
.map-section {
    padding: 0 60px 50px;
}

.map-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    border: 1.5px solid #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 900px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }

    .info-section,
    .map-section {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
