.contact-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.contact-hero h1 {
    font-size: 54px;
    font-weight: 800;
    margin: 20px 0;
}

.contact-hero p {
    color: #666;
    font-size: 18px;
}

.contact-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.contact-highlights div {
    font-weight: 600;
}

.contact-highlights i {
    color: #2563eb;
}

.contact-info {
    padding: 90px 0;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 25px;
}

.contact-card i {
    font-size: 34px;
    color: #2563eb;
}

.contact-card a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.contact-form-section {
    padding: 100px 0;
    background: #f8fbff;
}

.support-box > div {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.support-box i {
    width: 55px;
    height: 55px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.contact-form .form-control,
.contact-form .form-select {
    height: 58px;
    border-radius: 12px;
}

.contact-form textarea.form-control {
    height: auto;
    resize: none;
}

@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-highlights {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

.office-location {
    padding: 100px 0;
    background: #fff;
}

.map-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.office-card {
    background: #f8fbff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
}

.office-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.office-item:last-child {
    margin-bottom: 0;
}

.office-item i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.office-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.office-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.business-hours {
    padding: 100px 0;
    background: #f8fbff;
}

.hour-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.hour-card:hover {
    transform: translateY(-8px);
}

.hour-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.hour-card span {
    color: #2563eb;
    font-weight: 600;
}

.contact-faq {
    padding: 100px 0;
}

.contact-faq .accordion-item {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-faq .accordion-button {
    padding: 22px;
    font-weight: 600;
}

.contact-faq .accordion-button:not(.collapsed) {
    background: #2563eb;
    color: #fff;
}

.contact-faq .accordion-button:focus {
    box-shadow: none;
}

.contact-faq .accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .office-card {
        padding: 30px;
    }

    .office-item {
        align-items: flex-start;
    }
}
