/* Styles for Contact Page */

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background-color: #F5F5DC;
}

.contact-form__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-form__content {
    padding-right: 20px;
}

.contact-form__title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8B4513;
}

.contact-form__text {
    margin-bottom: 30px;
    color: #555555;
}

.contact-form__form {
    width: 100%;
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333333;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: #8B4513;
    outline: none;
}

.contact-form__textarea {
    height: 150px;
    resize: vertical;
}

.contact-form__checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-form__checkbox {
    margin-right: 10px;
}

.contact-form__checkbox-label {
    font-size: 14px;
    color: #666666;
}

.contact-form__link {
    color: #008080;
    text-decoration: underline;
}

.contact-form__link:hover {
    color: #006666;
}

.contact-form__button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8B4513;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form__button:hover {
    background-color: #6B3100;
}

.contact-form__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form__img {
    width: 100%;
    height: auto;
}

/* Map Section */
.map {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.map__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #8B4513;
}

.map__subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map__frame {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.map__info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.map__info-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    background-color: #F5F5DC;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map__info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map__info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #8B4513;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
}

.map__info-content {
    flex: 1;
}

.map__info-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333333;
}

.map__info-text {
    color: #555555;
    margin: 0;
}

.map__info-text a {
    color: #008080;
    transition: color 0.3s ease;
}

.map__info-text a:hover {
    color: #006666;
}

/* Business Hours Section */
.hours {
    padding: 80px 0;
    background-color: #F5F5DC;
}

.hours__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hours__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours__img {
    width: 100%;
    height: auto;
}

.hours__content {
    padding-left: 20px;
}

.hours__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #8B4513;
}

.hours__text {
    margin-bottom: 30px;
    color: #555555;
}

.hours__list {
    list-style: none;
    margin: 0 0 30px 0;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #DDDDDD;
}

.hours__item:last-child {
    border-bottom: none;
}

.hours__day {
    font-weight: 500;
    color: #333333;
}

.hours__time {
    color: #8B4513;
    font-weight: 500;
}

.hours__note {
    display: flex;
    align-items: flex-start;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours__note i {
    color: #008080;
    margin-right: 15px;
    margin-top: 3px;
}

.hours__note p {
    margin: 0;
    color: #555555;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.faq__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #8B4513;
}

.faq__subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 20px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    overflow: hidden;
}

.faq__question {
    padding: 20px;
    background-color: #F5F5DC;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.faq__question:hover {
    background-color: #EAE0C8;
}

.faq__question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #8B4513;
}

.faq__item.active .faq__question::after {
    content: '-';
}

.faq__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 20px;
    max-height: 1000px;
}

.faq__answer p {
    margin: 0;
    color: #555555;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #F5F5DC;
}

.gallery__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #8B4513;
}

.gallery__subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.1);
}

/* Delivery Section */
.delivery {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.delivery__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.delivery__content {
    padding-right: 20px;
}

.delivery__title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #8B4513;
}

.delivery__text {
    margin-bottom: 30px;
    color: #555555;
}

.delivery__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.delivery__feature {
    display: flex;
    align-items: flex-start;
}

.delivery__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #008080;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-right: 15px;
}

.delivery__feature-title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333333;
}

.delivery__feature-text {
    font-size: 14px;
    color: #666666;
}

.delivery__button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8B4513;
    color: #FFFFFF;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.delivery__button:hover {
    background-color: #6B3100;
    color: #FFFFFF;
}

.delivery__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.delivery__img {
    width: 100%;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .map__info {
        justify-content: center;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form__container,
    .hours__container,
    .delivery__container {
        grid-template-columns: 1fr;
    }
    
    .contact-form__content,
    .delivery__content {
        padding: 0;
        order: 1;
    }
    
    .hours__content {
        padding: 0;
        order: 0;
    }
    
    .contact-form__image,
    .delivery__image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .hours__image {
        order: 1;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .hours__item {
        flex-direction: column;
    }
    
    .hours__day {
        margin-bottom: 5px;
    }
}
