/* ============================================================
   CONTACT & LOCATION SECTION - PREMIUM STYLING
============================================================ */

.contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    margin: 60px 0;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0 0 12px 0;
}

.contact-header p {
    color: #cfcfcf;
    font-size: 1rem;
    margin: 0;
}

/* ========================= */
/* CONTACT GRID            */
/* ========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ========================= */
/* CONTACT INFO            */
/* ========================= */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 161, 79, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    animation: slideIn 0.6s ease-out forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(200, 161, 79, 0.4);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #c8a14f;
}

.contact-title {
    font-weight: 700;
    color: #f5f5f5;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: #c8a14f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-decoration: underline;
    color: #f5f5f5;
}

/* ========================= */
/* BUTTONS GROUP           */
/* ========================= */
.contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(200, 161, 79, 0.1);
    color: #c8a14f;
    border: 1px solid #c8a14f;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-contact:hover {
    background: #c8a14f;
    color: #0f0f0f;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #f5f5f5;
}

.btn-call {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
    border-color: #009688;
}

.btn-call:hover {
    background: #009688;
    color: #f5f5f5;
}

/* ========================= */
/* MAP CONTAINER           */
/* ========================= */
.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(200, 161, 79, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: rgba(200, 161, 79, 0.05);
    color: #c8a14f;
    font-weight: 600;
}

/* ========================= */
/* HORARIOS                */
/* ========================= */
.horarios-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.horarios-table tr {
    border-bottom: 1px solid rgba(200, 161, 79, 0.1);
}

.horarios-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.horarios-table td:first-child {
    color: #c8a14f;
    font-weight: 600;
}

.horarios-table td:last-child {
    color: #cfcfcf;
    text-align: right;
}

.horarios-table tr:last-child {
    border-bottom: none;
}

.estado-abierto {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s ease-in-out infinite;
}

.estado-cerrado {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    margin-right: 6px;
}

/* ========================= */
/* ANIMATIONS              */
/* ========================= */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================= */
/* RESPONSIVE              */
/* ========================= */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
        margin: 40px 0;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .contact-buttons {
        flex-wrap: wrap;
    }

    .btn-contact {
        flex: 1;
        min-width: 120px;
    }

    .horarios-table td {
        padding: 8px 0;
        font-size: 0.85rem;
    }
}
