.contact-hero {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-hero p {
    font-size: 1rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-content {
    padding: 60px 0 100px;
    background-color: #fafafa;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.info-card .card-icon {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0d1b2a;
}

.info-card h4 {
    font-size: 1.1rem;
    color: #0b1521;
    margin-bottom: 12px;
}

.info-card p,
.info-card div {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

.info-card .label-bold {
    font-weight: 600;
    color: #374151;
    margin-top: 8px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-box,
.office-details-box {
    background: #fff;
    padding: 40px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.contact-form-box h3,
.office-details-box h3 {
    font-size: 1.8rem;
    color: #0b1521;
    margin-bottom: 8px;
}

.contact-form-box p.subtitle,
.office-details-box p.subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-contact {
    margin-bottom: 20px;
}

.form-group-contact label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a252c;
    margin-bottom: 6px;
}

.form-group-contact input,
.form-group-contact textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
    outline: none;
}

.form-group-contact textarea {
    height: 140px;
    resize: vertical;
}

.helper-text {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 4px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    color: #6b7280;
}

.btn-submit-contact {
    background-color: #0d1b2a;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.office-card-inner {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.address-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0b1521;
    margin-bottom: 12px;
}

.office-card-inner p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-left: 24px;
}

.map-placeholder {
    width: 100%;
    height: 220px;
    background-color: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.quick-contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0b1521;
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 8px;
}

.quick-contact-details p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.quick-contact-details .label {
    font-weight: 600;
    color: #374151;
}

@media (max-width: 900px) {

    .info-cards-grid,
    .contact-main-grid,
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}