/* ═══════════════════════════════════════════════════
   RZ CONTACTS + FOOTER
═══════════════════════════════════════════════════ */

/* ─── Contacts Section ─── */
.rz-contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Quick actions */
.rz-contacts__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.rz-contacts__action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rz-radius-sm);
    text-decoration: none;
    color: #fff;
    transition:
        background var(--rz-transition),
        border-color var(--rz-transition),
        transform var(--rz-transition-spring);
}

.rz-contacts__action:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.rz-contacts__action-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--rz-radius-xs);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: background var(--rz-transition);
}

.rz-contacts__action-icon--accent {
    background: var(--rz-gradient-primary);
    color: #fff;
}

.rz-contacts__action:hover .rz-contacts__action-icon {
    background: rgba(255, 255, 255, 0.12);
}

.rz-contacts__action:hover .rz-contacts__action-icon--accent {
    background: var(--rz-gradient-primary);
}

.rz-contacts__action-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2px;
}

.rz-contacts__action-value {
    font-size: var(--rz-text-base);
    font-weight: 600;
    color: #fff;
}

/* Info cards */
.rz-contacts__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.rz-contacts__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rz-radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rz-contacts__card--highlight {
    border-color: rgba(149, 193, 31, 0.2);
    background: rgba(149, 193, 31, 0.06);
}

.rz-contacts__card--map {
    grid-column: 1 / -1;
    padding: 0;
    min-height: 200px;
    overflow: hidden;
}

.rz-contacts__card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
}

.rz-contacts__card-title {
    font-size: var(--rz-text-lg);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.rz-contacts__card-desc {
    font-size: var(--rz-text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.rz-contacts__card-phone {
    font-size: var(--rz-text-xl);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color var(--rz-transition);
}

.rz-contacts__card-phone:hover {
    color: var(--rz-success);
}

.rz-contacts__card-address {
    font-size: var(--rz-text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.rz-contacts__card-schedule {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.rz-contacts__card-schedule > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.rz-contacts__card-schedule > div > span:first-child {
    color: rgba(255, 255, 255, 0.5);
}

.rz-contacts__card-schedule > div > span:last-child {
    color: #fff;
    font-weight: 600;
}

/* Map lazy placeholder */
.rz-contacts__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: inherit;
}

.rz-contacts__map-activate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--rz-font-body);
    font-size: 13px;
    cursor: pointer;
    transition: color var(--rz-transition);
}

.rz-contacts__map-activate:hover {
    color: rgba(255, 255, 255, 0.7);
}

.rz-contacts__map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* Contacts responsive */
@media (max-width: 1099px) {
    .rz-contacts__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 599px) {
    .rz-contacts__actions {
        grid-template-columns: 1fr;
    }

    .rz-contacts__cards {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */

.rz-footer {
    background: var(--rz-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 0;
}

.rz-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--rz-transition);
}

.rz-footer a:hover {
    color: #fff;
}

/* Grid */
.rz-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand */
.rz-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rz-footer__logo {
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.rz-footer__logo .rz-logo {
    height: 28px;
    width: auto;
}

.rz-footer__desc {
    font-size: var(--rz-text-sm);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 280px;
    margin: 0;
}

/* Nav groups */
.rz-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rz-footer__nav-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}

.rz-footer__nav a {
    font-size: 14px;
    padding: 2px 0;
}

/* Payment */
.rz-footer__payment {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rz-footer__payment img {
    opacity: 0.5;
    transition: opacity var(--rz-transition);
}

.rz-footer__payment img:hover {
    opacity: 0.8;
}

/* Bottom */
.rz-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 12px;
}

.rz-footer__copy {
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.rz-footer__privacy {
    color: rgba(255, 255, 255, 0.3);
}

.rz-footer__privacy:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer responsive */
@media (max-width: 899px) {
    .rz-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .rz-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 599px) {
    .rz-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px 20px 20px;
    }

    .rz-footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
