.contact-hero {
    position: relative;
    background: linear-gradient(120deg, rgba(10, 16, 30, 0.85) 0%, rgba(10, 16, 30, 0.72) 100%);
    padding: 120px 0 28px;
    border-bottom: 1px solid #e7ecf3;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
    background-image: url("{% static 'assets/img/bg/about_bg_2.jpg' %}");
}

.contact-hero .container,
.contact-hero .row,
.contact-hero .col-lg-8 {
    position: relative;
    z-index: 2;
}

.contact-hero .hero-title {
    font-size: 32px;
    line-height: 1.1;
}

.contact-hero .hero-text {
    max-width: 760px;
}

.contact-section {
    padding-top: 32px;
    padding-bottom: 64px;
    background: #fdfdfd;
}

.contact-section .contact-tile,
.contact-section .contact-form-card {
    background: #fff;
    border: 1px solid #e7ecf3;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.contact-section .work-area.contact-tile {
    padding-top: 18px;
    padding-bottom: 6px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.contact-card {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid #e7ecf3;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-card_icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #0d1b2a;
    display: grid;
    place-items: center;
}

.contact-card_label {
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.contact-card_value {
    color: #374151;
    margin: 0;
    text-decoration: none;
}

.contact-card_value a {
    color: inherit;
}

.contact-steps .step-list {
    display: grid;
    gap: 10px;
}

.contact-steps .step-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-steps .step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
}