.hicoding-contact {
    background: none;
    color: #0f172a;
    padding: 72px 0 110px;
}
.hicoding-contact__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}
.hicoding-contact__hero {
    text-align: center;
    margin-bottom: 28px;
}
.hicoding-contact__pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .02em;
}
.hicoding-contact__hero h2 {
    margin: 12px 0 8px;
    font-size: 32px;
    color: #111827;
}
.hicoding-contact__hero p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
}
.hicoding-contact__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 22px 0 32px;
}
.contact-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 16px 15px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.contact-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0c8d4b;
}
.contact-card__icon svg {
    width: 26px;
    height: 26px;
}
.contact-card__icon--phone {
    background: linear-gradient(135deg, #d5ffea, #d1f6ff);
}
.contact-card__icon--email {
    background: linear-gradient(135deg, #e9f5ff, #ffe6f3);
}
.contact-card__icon--map {
    background: linear-gradient(135deg, #e5ffed, #e6f7ff);
}
.contact-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-card__label {
    font-weight: 700;
    color: #111827;
}
.contact-card__desc {
    color: #4b5563;
    font-size: 13px;
}
.contact-card__link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
}
.contact-card__link.muted {
    color: #6b7280;
}
.contact-card__link:hover {
    text-decoration: underline;
}

.hicoding-contact__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 38px;
}
.hicoding-contact__steps {
    background: #f7faf7;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}
.hicoding-contact__steps .steps-title {
    color: #16a34a;
    font-weight: 700;
    margin: 0 0 6px;
}
.hicoding-contact__steps h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.45;
}
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.steps-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
}
.steps-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #22c55e);
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}

.hicoding-contact__form-card {
    background: #f8fafb;
    border-radius: 18px;
    padding: 22px 20px 26px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    color: #0f172a;
}
.hicoding-contact__notice {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}
.hicoding-contact__notice.is-success {
    background: #e8f7ef;
    color: #0f9d58;
}
.hicoding-contact__notice.is-error {
    background: #fef2f2;
    color: #b91c1c;
}
.hicoding-contact__form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #0f172a;
}
.form-field span {
    font-weight: 700;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    font-size: 14px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    outline: none;
}
.form-field textarea {
    resize: vertical;
    min-height: 110px;
}
.form-field--full {
    grid-column: 1 / -1;
}
.hicoding-contact__submit {
    margin-top: 10px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, #34d399, #22c55e);
    color: #0b2416;
    font-weight: 800;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 10px 26px rgba(34, 197, 94, 0.35);
    transition: transform .1s ease, box-shadow .1s ease;
}
.hicoding-contact__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(34, 197, 94, 0.4);
}

@media (max-width: 1024px) {
    .hicoding-contact__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .hicoding-contact {
        padding: 48px 0 72px;
    }
    .hicoding-contact__form .form-grid {
        grid-template-columns: 1fr;
    }
    .hicoding-contact__cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .contact-card {
        padding: 14px;
    }
}
