/* ================================================
   CONTACT SECTION STYLES
   ================================================ */

.contact-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 255, 136, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Panel (single card) ---- */
.contact-panel {
    max-width: 740px;
    margin: 0 auto;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

/* ---- Row ---- */
.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 36px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:hover {
    background: rgba(255, 255, 255, 0.015);
}

/* ---- Icon ---- */
.contact-row-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.contact-row:hover .contact-row-icon {
    transform: scale(1.06);
}

.contact-row-icon.location {
    background: rgba(0, 255, 136, 0.08);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.contact-row-icon.phone {
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-tertiary);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.contact-row-icon.whatsapp {
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.contact-row-icon.hours {
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.15);
}

/* ---- Body ---- */
.contact-row-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.contact-row-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.contact-row-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.contact-row-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-row-numbers a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.contact-row-numbers a:hover {
    color: var(--accent-primary);
}

/* ---- Action Button ---- */
.contact-row-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    background: rgba(0, 255, 136, 0.07);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--accent-primary);
    font-size: 0.83rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.contact-row-action:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.25);
}

.contact-row-action:active {
    transform: scale(0.95);
    box-shadow: none;
}

.contact-row-action.whatsapp-action {
    background: rgba(37, 211, 102, 0.07);
    border-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.contact-row-action.whatsapp-action:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.contact-row-action.whatsapp-action:active {
    transform: scale(0.95);
    box-shadow: none;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .contact-row {
        padding: 20px 18px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .contact-row-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .contact-row-action {
        margin-left: 60px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}
