/* --- Contact --- */
#contact-section {
    display: none;
    width: 100%;
    min-height: 60vh;
    padding-top: 10vh;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(50px, 12vw, 300px);
    flex-wrap: wrap;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #9ca3af;
    min-width: 200px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.plus-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-item.active .plus-icon {
    transform: rotate(45deg);
}

.contact-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    text-align: left;
}

.contact-item.active .contact-details {
    max-height: 500px;
    opacity: 1;
    margin-top: 35px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.detail-label {
    font-size: 11px;
    color: #000;
    margin-bottom: -2px;
}

.detail-value-email {
    text-transform: lowercase;
    font-size: 10px;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #9ca3af;
    line-height: 1.8;
}

.detail-value-office {
    font-size: 9px;
    line-height: 1.6;
    color: #9ca3af;
    margin-top: 4px;
}

.detail-row-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.social-link {
    font-size: 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.arrow-icon-thin {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    stroke-width: 1.2;
}

@media (max-width: 900px) {
    #contact-section {
    padding-top: 0.35rem !important;
    padding-left: 8% !important;
    padding-right: 8% !important;
    min-height: auto;
}

    .contact-content {
        justify-content: flex-start;
        align-items: stretch;
        flex-direction: column;
        gap: 32px;
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .contact-item {
        min-width: 0;
        width: 100%;
        padding-bottom: 2px;
    }

    .category-header {
        width: auto;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding: 1px 0;
    }

    .plus-icon {
        font-size: 16px;
        line-height: 1;
    }

    .contact-item.active .contact-details {
        max-height: 300px;
        margin-top: 12px;
    }

    .detail-row {
        margin-bottom: 14px;
    }

    .detail-label {
        font-size: 10px;
        margin-bottom: 1px;
    }

    .detail-value-email,
    .social-link {
        font-size: 10px;
        line-height: 1.5;
    }

    .detail-value-office {
        font-size: 9px;
        line-height: 1.6;
        margin-top: 3px;
    }

    .detail-row-social {
        margin-bottom: 8px;
    }
}

