/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #00529b 100%);
    padding: 60px 0;
    color: var(--text-white);
    text-align: center;
}

.header-content h1 {
    color: var(--text-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Booking Section
   =================================== */
.booking-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
}

/* ===================================
   Booking Info - Left Column
   =================================== */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h2,
.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expectation-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.expectation-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc 0%, #00529b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expectation-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.expectation-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.expectation-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.services-list i {
    color: #28a745;
    font-size: 1.1rem;
}

/* ===================================
   Booking Form - Right Column
   =================================== */
.booking-form-wrapper {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.form-section h3 i {
    color: var(--primary-color);
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-light);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-disclaimer i {
    color: var(--primary-color);
    margin-top: 0.15rem;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #00529b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Calendar Embed Container
   =================================== */
.calendar-embed-container {
    width: 100%;
    min-height: 800px;
    margin-top: 1.5rem;
    position: relative;
    overflow: visible;
}

.calendar-embed-container iframe {
    min-height: 800px;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-info {
        order: 2;
    }

    .booking-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .header-content h1 {
        font-size: 1.75rem;
        flex-direction: column;
    }

    .booking-section {
        padding: 60px 0;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .info-card {
        padding: 1.5rem;
    }

    .expectation-item {
        flex-direction: column;
        text-align: center;
    }

    .expectation-icon {
        margin: 0 auto;
    }
}
