@import '/assets/css/base.css';
@import '/assets/css/header.css';
@import '/assets/css/footer.css';

/* Booking Page Specific Styles */
.booking-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.1) 0%, rgba(184, 131, 60, 0.08) 100%);
}

.booking-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-hero__content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.booking-hero__lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.booking-hero__image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Services Overview */
.booking-services {
    padding: 60px 0;
}

.services-overview__grid {
    margin-top: 40px;
}

.service-overview-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #b8833c;
}

.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-overview-card__icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-overview-card__title {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.service-overview-card__text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-overview-card__features {
    list-style: none;
    text-align: left;
}

.service-overview-card__features li {
    padding: 8px 0;
    color: #666;
    padding-left: 25px;
    position: relative;
}

.service-overview-card__features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b8833c;
    font-weight: bold;
}

/* Booking Form Section */
.booking-form-section {
    padding: 60px 0;
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 40px auto;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-fieldset {
    border: none;
    padding: 25px;
    background: #f9f7f4;
    border-radius: 8px;
}

.form-fieldset legend {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label span {
    color: #d9534f;
}

.input,
.select,
.textarea {
    padding: 12px 15px;
    border: 1px solid #d4c4b0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    border-color: #b8833c;
    box-shadow: 0 0 0 3px rgba(184, 131, 60, 0.1);
}

.textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Booking Process */
.booking-process {
    padding: 60px 0;
}

.booking-steps__grid {
    margin-top: 40px;
}

.booking-step {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.booking-step:hover {
    transform: translateY(-4px);
}

.booking-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d2b48c 0%, #b8833c 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.booking-step__title {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.booking-step__text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Availability Section */
.availability {
    padding: 60px 0;
}

.availability__info {
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid #f0ebe2;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card em {
    color: #b8833c;
    font-style: italic;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq__items {
    max-width: 700px;
    margin: 40px auto;
}

.faq__item {
    background: white;
    border: 1px solid #e8e4dd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq__question {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #f9f7f4;
    cursor: pointer;
    font-weight: 600;
    color: #2c2c2c;
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: #f0ebe2;
}

.faq__item[open] .faq__question {
    background: #f0ebe2;
}

.faq__answer {
    padding: 20px;
    color: #666;
    line-height: 1.7;
}

/* Support Section */
.support-section {
    padding: 60px 0;
}

.support__options {
    margin-top: 40px;
}

.support-option {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.support-option h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.support-option p {
    color: #666;
    margin-bottom: 10px;
}

.support-option strong {
    color: #b8833c;
}

.support-option .btn {
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-hero__grid,
    .services-overview__grid,
    .booking-steps__grid,
    .availability__info,
    .support__options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-hero__content h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        padding: 40px 0;
    }

    .booking-hero__content h1 {
        font-size: 1.5rem;
    }

    .form-fieldset {
        padding: 15px;
    }

    .form-fieldset legend {
        font-size: 1rem;
    }

    .booking-step {
        padding: 20px;
    }

    .booking-step__number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .support-option,
    .info-card {
        padding: 20px;
    }
}
