/* ================= Contact Section Block ================= */
.contact-section {
    background: #ffffff;
    padding: 60px 0;
    width: 100%;
}

.contact-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title */
.contact-section-title {
    color: #cb3638;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.2;
}

/* Description */
.contact-section-description {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Content Layout - Three Columns */
.contact-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Left Column - Contact Info (Location, Phone, Email) */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Middle Column - Hours */
.contact-hours-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-title {
    color: #cb3638;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.contact-info-content {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-content a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #cb3638;
}

.contact-info-content p {
    margin: 0 0 8px;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

/* Right Column - Image */
.contact-image-column {
    width: 100%;
    height: 100%;
}

.contact-section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Buttons Section */
.contact-section-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #cb3638;
    color: #fff;
    border-radius: 999px;
    padding: 12px 24px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background: #fff;
    color: #cb3638;
}

.contact-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    /* On tablet, stack hours with contact info */
    .contact-info-column {
        grid-column: 1;
    }
    
    .contact-hours-column {
        grid-column: 2;
    }
    
    .contact-image-column {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .contact-section-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
    
    .contact-section-description {
        margin-bottom: 30px;
    }
    
    .contact-section-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-section-content > * {
        width: 100%;
    }
    
    .contact-info-column {
        gap: 24px;
    }
    
    .contact-hours-column {
        gap: 12px;
    }
    
    .contact-image-column {
        margin-top: 0;
    }
    
    .contact-section-buttons {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }
    
    .contact-button {
        width: 100%;
    }
}

