.contacthero-section,
.hours-section,
.contactinfo-section,
.map-section,
.form-section {
    padding: 40px 20px;
    text-align: center;
    color: #000;
    font-family: Arial, sans-serif;
}

.contacthero-section {
    background-color: #f0f0f0;
    color: white;
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url('/images/sliderphoto1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: bold;
    font-size: 2.5rem;
}

    .contacthero-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .contacthero-section .overlay h1 {
            text-transform: uppercase;
            position: relative;
            z-index: 2;
            margin: 0 20px;
            text-align: center;
            font-weight: bold;
            font-size: 3rem;
        }

@media (min-width: 768px) {
    .contacthero-section,
    .hours-section,
    .contactinfo-section,
    .map-section,
    .form-section {
        padding: 60px 80px;
    }

    .contacthero-section {
        height: 350px;
        font-size: 3rem;
    }

        .contacthero-section .overlay h1 {
            font-size: 4rem;
        }
}

@media (min-width: 1200px) {
    .contacthero-section,
    .hours-section,
    .contactinfo-section,
    .map-section,
    .form-section {
        padding: 80px 120px;
    }
}

.hours-section {
    background-color: #f5f5f5;
    background-image: #fff;
    padding: 2rem 1.5rem;
    color: #ffffff;
    text-align: center;
}

.hours-card {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    padding-left: 2.5rem;
    text-align: left;
    overflow: hidden;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

    .hours-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: #EC1C24;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

.hours-title {
    font-family: Arial, sans-serif;
    color: #EC1C24;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    position: relative;
    border-bottom: 2px solid #EC1C24;
    padding-bottom: 0.5rem;
}

.icon-clock {
    width: 1.8rem;
    height: 1.8rem;
    stroke: #EC1C24;
    flex-shrink: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    transition: background-color 0.3s ease;
}

    .hours-row:first-child {
        border-top: none;
        padding-top: 0;
    }

    .hours-row:hover {
        background-color: rgba(236, 28, 36, 0.1);
        border-radius: 6px;
        padding-left: 0.5rem;
    }

.day {
    font-weight: 600;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-row {
    width: 1.2rem;
    height: 1.2rem;
    stroke: #EC1C24;
    flex-shrink: 0;
}

.time {
    font-weight: normal;
    color: #444;
    font-family: Arial, sans-serif;
}

@media (min-width: 768px) {
    .hours-list {
        flex-direction: column;
    }

    .hours-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.map-section {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    text-align: center;
}

.map-heading {
    color: #EC1C24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

    .map-container iframe {
        width: 100%;
        height: 450px;
        border: none;
        border-radius: 12px;
    }

.map-address {
    margin-top: 0.8rem;
    color: #333;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .map-heading {
        font-size: 2rem;
    }
}

.contactinfo-section {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
}

.contactinfo-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

    .contact-card:hover {
        background-color: #fafafa;
        transform: translateY(-3px);
    }

.icon-badge {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #EC1C24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon {
    width: 1.8rem;
    height: 1.8rem;
    stroke: #ffffff;
}

.contact-heading {
    font-size: 1.25rem;
    color: #EC1C24;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-detail {
    color: #444;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

    .contact-detail:hover {
        color: #EC1C24;
    }

@media (min-width: 768px) {
    .contactinfo-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-card {
        flex: 1;
        max-width: 100%;
    }
}
