/* Contact Page Styles */
.contact-container {
    padding: 60px 0;
}

.contact-header {
    margin-bottom: 50px;
    text-align: center;
}

.contact-header h1 {
    font-weight: 700;
    color: var(--zph-darkblue);
    margin-bottom: 15px;
}

.contact-info-card {
    background: #fff;
    border-radius: var(--zph-border-radius);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid var(--zph-lightgrey);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--zph-lightblue);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info-item .info-text h6 {
    margin-bottom: 2px;
    font-weight: 600;
    color: var(--zph-darkgrey);
}

.contact-form-card {
    background: #fff;
    border-radius: var(--zph-border-radius);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--zph-lightgrey);
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--zph-darkgrey);
}

.btn-send {
    background-color: var(--zph-darkblue);
    border-color: var(--zph-darkblue);
    padding: var(--zph-btn-padding-y) var(--zph-btn-padding-x);
    font-weight: 600;
    border-radius: var(--zph-border-radius);
    transition: var(--zph-transition);
}

.btn-send:hover {
    background-color: var(--zph-lightblue);
    border-color: var(--zph-lightblue);
    transform: translateY(-2px);
}