/* Booking Page Styles */

/* Hero Section */
.booking-hero {
    position: relative;
    height: 500px;
    background-image: url('../images/booking/booking-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.booking-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.booking-hero .headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-hero .subheadline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Booking Introduction */
.booking-intro {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.intro-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.intro-container p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Booking Form Section */
.booking-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.booking-container {
    display: flex;
    gap: 40px;
}

.booking-form-wrapper {
    flex: 0 0 65%;
    transition: all 0.3s ease;
}

@keyframes highlightForm {
    0% { box-shadow: 0 0 0 rgba(0, 113, 227, 0.0); }
    50% { box-shadow: 0 0 30px rgba(0, 113, 227, 0.4); }
    100% { box-shadow: 0 0 0 rgba(0, 113, 227, 0.0); }
}

.highlight-animation {
    animation: highlightForm 2s ease;
}

.booking-sidebar {
    flex: 0 0 30%;
}

/* Form Styles */
.booking-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.selected-service-notice {
    background-color: rgba(0, 113, 227, 0.1);
    border-left: 4px solid var(--apple-blue, #0071e3);
    padding: 12px 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.selected-service-notice i {
    color: var(--apple-blue, #0071e3);
    margin-right: 10px;
    font-size: 1.2rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group.half {
    width: calc(50% - 10px);
}

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c59d5f;
    outline: none;
    box-shadow: 0 0 0 2px rgba(197, 157, 95, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #c59d5f;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #c59d5f, #e2c285);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #b38e4e, #d1b174);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
}

/* Sidebar Styles */
.sidebar-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.sidebar-section h3 i {
    margin-right: 10px;
    color: #c59d5f;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.sidebar-section ul li:last-child {
    border-bottom: none;
}

.sidebar-section.hours ul li span {
    font-weight: 500;
    color: #333;
    margin-right: 5px;
}

.sidebar-section.contact p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.phone-link, .email-link {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #c59d5f;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.phone-link i, .email-link i {
    margin-right: 8px;
}

.phone-link:hover, .email-link:hover {
    color: #b38e4e;
}

/* Service Highlights */
.service-highlights {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.service-highlights h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.service-highlights h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #c59d5f, #e2c285);
    margin: 15px auto 0;
}

.highlights-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #c59d5f;
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.highlight-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

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

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #c59d5f, #e2c285);
    margin: 15px auto 0;
}

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .booking-container {
        flex-direction: column;
    }
    
    .booking-form-wrapper,
    .booking-sidebar {
        flex: 0 0 100%;
    }
    
    .highlights-container {
        flex-wrap: wrap;
    }
    
    .highlight-item {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        height: 400px;
    }
    
    .booking-hero .headline {
        font-size: 2.5rem;
    }
    
    .booking-hero .subheadline {
        font-size: 1.2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .highlight-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .booking-hero {
        height: 300px;
    }
    
    .booking-hero .headline {
        font-size: 2rem;
    }
    
    .booking-hero .subheadline {
        font-size: 1rem;
    }
    
    .intro-container h2,
    .service-highlights h2,
    .faq-section h2 {
        font-size: 2rem;
    }
}
