/* ===========================================
   pagePartials/contactLinksModal.css
   Contact & Links Modal
   =========================================== */

/* Section Groups */
.cl-modal-section {
    margin-bottom: 28px;
}

.cl-modal-section:last-child {
    margin-bottom: 0;
}

.cl-modal-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--page-text-muted, #9ca3af);
    margin-bottom: 12px;
    padding-left: 2px;
}

/* ============================================
   Contact Methods (Phone, Email, Address, etc.)
   ============================================ */

.cl-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cl-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cl-contact-row:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.cl-contact-row:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cl-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cl-icon-phone {
    background: #ecfdf5;
    color: #059669;
}

.cl-icon-email {
    background: #eff6ff;
    color: #2563eb;
}

.cl-icon-address {
    background: #fef3c7;
    color: #d97706;
}

.cl-icon-whatsapp {
    background: #ecfdf5;
    color: #25d366;
}

.cl-icon-telegram {
    background: #eff6ff;
    color: #0088cc;
}

.cl-contact-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cl-contact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--page-text-primary, #1f2937);
    line-height: 1.3;
}

.cl-contact-value {
    font-size: 13px;
    color: var(--page-text-secondary, #6b7280);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cl-contact-arrow {
    flex-shrink: 0;
    color: var(--page-text-muted, #9ca3af);
    transition: transform 0.2s ease;
}

.cl-contact-row:hover .cl-contact-arrow {
    transform: translateX(2px);
    color: var(--page-text-secondary, #6b7280);
}

/* ============================================
   Social & Links
   ============================================ */

.cl-social-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cl-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cl-social-row:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.cl-social-row:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cl-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cl-icon-website {
    background: #f0fdf4;
    color: #16a34a;
}

.cl-icon-instagram {
    background: linear-gradient(135deg, #fef3c7, #fce7f3);
    color: #e1306c;
}

.cl-icon-facebook {
    background: #eff6ff;
    color: #1877f2;
}

.cl-icon-tiktok {
    background: #f5f5f5;
    color: #000000;
}

.cl-icon-youtube {
    background: #fef2f2;
    color: #ff0000;
}

.cl-icon-x {
    background: #f5f5f5;
    color: #000000;
}

.cl-icon-linkedin {
    background: #eff6ff;
    color: #0a66c2;
}

.cl-icon-pinterest {
    background: #fef2f2;
    color: #e60023;
}

.cl-icon-yelp {
    background: #fef2f2;
    color: #d32323;
}

.cl-icon-custom {
    background: #f3f4f6;
    color: #6b7280;
}

.cl-social-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cl-social-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--page-text-primary, #1f2937);
    line-height: 1.3;
}

.cl-social-value {
    font-size: 13px;
    color: var(--page-text-secondary, #6b7280);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cl-social-arrow {
    flex-shrink: 0;
    color: var(--page-text-muted, #9ca3af);
    transition: transform 0.2s ease;
}

.cl-social-row:hover .cl-social-arrow {
    transform: translate(2px, -2px);
    color: var(--page-text-secondary, #6b7280);
}

/* ===========================================
   Desktop (768px+)
   =========================================== */

@media screen and (min-width: 768px) {
    .cl-modal-section-label {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .cl-contact-row,
    .cl-social-row {
        padding: 16px 18px;
    }

    .cl-contact-icon,
    .cl-social-icon {
        width: 44px;
        height: 44px;
    }

    .cl-contact-label,
    .cl-social-label {
        font-size: 15px;
    }

    .cl-contact-value,
    .cl-social-value {
        font-size: 14px;
    }
}
