.contact-page {
    padding: 150px 0;
    background: linear-gradient(125deg, #0f0f0f, #1a1a1a);
}

.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: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: #FF3131;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #ccc;
    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: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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;
}

.span-date{
    background: rgba(215, 36, 29, 1);
    border: 1px solid rgba(215, 36, 29, 0.3);
    padding: 3px 12px;
  
    border-radius: 30px;
}
.hours-summary{
    margin-top: 10px;
}
.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: black;
    margin-bottom: 5px;
}

.card-value {
    font-size: 1.1rem;
    color: black;
    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;
    }
}

.directions-btn, .hours-btn{
display: block;
    align-items: center;
    gap: 0.5rem;
    border: none;
    background-color: transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    color: #000000;
    text-decoration: none;
    font-weight: 400 !important;
    font-size: 1rem;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99990;
    backdrop-filter: blur(15px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    width: 90%;
    color: black !important;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: modalSlideIn 0.3s ease forwards;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: black;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #D7241D;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #D7241D;
}

.modal-body {
    padding: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid black;
}

.hours-row:last-child {
    border-bottom: none;
    gap: 15px;
}

.current-day {
    background-color: rgba(215, 36, 29, 0.3);
    border-radius: 0.5rem;
    color: #D7241D;
}

.day {
    font-weight: 600;
    color: black;
}

.time {
    color: black;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
