.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* =========================
   HEADER
========================= */

.contact-info-head-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-head-container h1 {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-font);
    margin: 0;
    position: relative;
}

.contact-info-head-container h1::after {
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background: url('../../images/icons/hero-horizontal-seperator.svg') no-repeat left center;
    transform: rotate(180deg);
    margin-top: 14px;
}

.contact-info-head-container p {
    font-size: 1rem;
    color: var(--light-font);
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
    opacity: 0.9;
}

/* =========================
   BODY
========================= */

.contact-info-body-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   ITEM CARD
========================= */

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(8, 47, 93, 0.08);
    box-shadow:
        0 6px 18px rgba(15, 23, 42, 0.05),
        0 1px 4px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(8, 47, 93, 0.16);
    box-shadow:
        0 10px 22px rgba(15, 23, 42, 0.07),
        0 2px 8px rgba(15, 23, 42, 0.05);
}
.contact-info-item.disabled {
    pointer-events: none;
    cursor: default;
}
/* =========================
   ICON
========================= */

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--medium-blue-bg), var(--light-blue-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(8, 47, 93, 0.22);
    position: relative;
}

.contact-info-icon::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-info-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* =========================
   DETAILS
========================= */

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.contact-info-details h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-font);
}

.contact-info-details p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--light-font);
    line-height: 1.6;
    opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .contact-info-item {
        padding: 13px 14px;
        gap: 14px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon img {
        width: 18px;
        height: 18px;
    }
}