/* ========== Contact Cards (Top) ========== */
.contact-cards {
    background: #fff;
}

.contact-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;

    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card__icon {

    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.contact-card__icon i {
    font-size: 28px;
    color: #fff;
}

.contact-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    letter-spacing: -0.5px;
}

.contact-card p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.contact-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold);
}

/* ========== Hours & Map Section ========== */
.hours-card,
.map-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    height: 100%;
    min-height: 450px;
}

.hours-card {
    padding: 32px;
}

.hours-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #111;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #f0f0f0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.hours-row.is-today {
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    border-bottom-color: transparent;
    padding-left: 16px;
    padding-right: 16px;
}

.hours-row.is-today .hours-day {
    font-weight: 800;
    color: var(--gold);
}

.hours-day {
    font-weight: 600;
    color: #111;
}

.hours-time {
    color: #666;
    font-size: 15px;
}

.hours-time.closed {
    color: #999;
    font-style: italic;
}

.hours-card__footer {
    margin-top: 24px;
    padding: 16px;
    background: #fff3e0;
    border-left: 3px solid #ff9800;
    border-radius: 4px;
    font-size: 14px;
    color: #d84315;
}

.hours-card__footer i {
    margin-right: 6px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
}

/* ========== Contact Form - Clean & Minimal ========== */
.form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.contact-form-clean .form-control {
    border: 1px solid #ddd;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.contact-form-clean .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.contact-form-clean .form-group {
    margin-bottom: 20px;
}

.whatsapp-option {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ========== CTA Card ========== */
.cta-card {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-card .btn-light {
    background: #fff;
    color: var(--gold);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
}

.cta-card .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========== Info Cards (Bottom) ========== */
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid transparent;
}

.info-card:hover {
    border-color: #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);

}

.info-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.info-card:hover .info-card__icon {
    background: var(--gold);
}

.info-card__icon i {
    font-size: 28px;
    color: var(--gold);
    transition: all 0.3s;
}

.info-card:hover .info-card__icon i {
    color: #fff;
}

.info-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.info-card p {
    color: #666;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 32px 24px;
    }

    .cta-card {
        padding: 32px 24px;
        text-align: center;
    }

    .cta-card .btn-light {
        width: 100%;
    }

    .hours-card,
    .map-card {
        min-height: 350px;
    }
}

/* ========== Alerts ========== */
.alert {
    border-radius: 8px;
    border: none;
    padding: 16px 20px;
}

.alert i {
    margin-right: 8px;
}