/* =================BREADCRUMB SECTION==================== */
.breadcrumb-section {
    padding: 30px 0;
    background: #cecdcd4d;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.breadcrumb-option a {
    display: inline-block;
    color: rgb(179, 179, 179);
    margin-right: 24px;
    position: relative;
}

.breadcrumb-option a::after {
    position: absolute;
    right: -15px;
    top: 12px;
    width: 6px;
    height: 6px;
    content: "";
    background: rgb(92, 92, 92);
    border-radius: 50%;
}

.breadcrumb-option a span {
    color: rgb(179, 179, 179);
}

/* ====================MAPS========================== */
.map {
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/*-----------------------------------*/
hr {
    margin-top: 50px;
    border: 1px slolid #cecdcd4d;
    width: 100%;
}

/* ====================HOURS SECTION========================== */
.hours {
    padding: 50px 0;
    background-color: var(--bg-color);
}

.hours__inner {
    width: 100%;
    margin: 0 auto;
}

.hours__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-section__info a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hours__title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hours__title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: 0.3px;
}

.hours__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hours__list {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
}

.hours__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.hours__item:last-child {
    border-bottom: none;
}

.hours__day {
    font-weight: 500;
    color: var(--text-color);
}

.hours__time {
    color: var(--text-muted);
}

.hours__time--closed {
    color: #aaa;
    font-style: italic;
}

/* ================CONTACT SECTION============================= */
.contact-section {
    width: 100%;
}

.contact-section__inner {
    display: flex;
    flex-direction: column;

    margin: 0 auto;
}

.contact-section__title {
    display: flex;
    justify-self: center;

    font-size: 30px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: 0.3px;
}

/*--------------from----------------*/
.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;

    padding: 40px 20px;
    background: #cecdcd4d;
    margin-bottom: 50px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form__group br{
    display: none;
}

.form__group p{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form__label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.form__label span {
    color: #cc0000;
    margin-left: 2px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-color);
    background: var(--white);
    transition: border-color 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--accent-light);
}

.form__textarea {
    resize: vertical;
    max-height: 200px;
    /* height: 150px; */
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-light);
    cursor: pointer;
}

.form__error {
    font-size: 16px;
    color: #cc0000;
    display: block;
}

.form__error[hidden] {
    display: none;
}

.form__required-note {
    font-size: 16px;
    color: var(--text-color);
}

.form__submit {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--text-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.form__submit:hover {
    background-color: var(--text-color);
    color: var(--white);
}

.form__message {
    display: none;
    padding: 10px 14px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
}

.form__message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form__message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form__message--visible {
    display: block;
}

/*==================RESPONSIVE=========================*/
@media (max-width: 1200px) {

    /*---------CONTACT---------*/
    .contact-section {
        padding: 80px 0px;
    }

    .contact-section .container {
        padding: 20px;
    }

    .form {
        gap: 7px;
    }
}

@media (max-width: 1000px) {

    /*---------contact----------*/
    .contact-section__inner {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 25px;
    }

    .contact-section__left,
    .contact-section__right {
        width: 100%;
        max-width: unset;
    }
}

@media (max-width: 800px) {
    .hours__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 75px;
    }

    .hours__list {
        max-width: 500px;
        width: 100%;
    }

    .contact-section__info {
        order: 2;
    }

    .contact-section {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .hours .container {
        padding: 10px;
    }

    .contact-section .container {
        padding: 0 10px;
    }

    .form {
        padding: 20px 10px;
    }
}