.contact-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container-contact {
    max-width: 1400px;
    margin: 5% auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-header {
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: #FF3131;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: grid;
   
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.address-card {
    grid-column: 1 / -1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #FF3131;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-icon i {
    color: white;
    font-size: 1.4rem;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 5px;
}

.card-value {
    font-size: 1.1rem;
    color: #2d3436;
    font-weight: 500;
    line-height: 1.4;
}

.hours-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hours-title {
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 20px;
    font-weight: 600;
}

.hours-cards {
    display: grid;
    gap: 15px;
}

.hours-card {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-card.closed {
    background: #fee2e2;
}

.day-range {
    font-weight: 500;
    color: #2d3436;
}

.time-range {
    color: #636e72;
    font-weight: 500;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;


    min-height: 450px;
}

@media (max-width: 1024px) {
    .container-contact {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .hours-title {
        font-size: 1.3rem;
    }
}