/* ================================================
   Book Classes Page Specific Styles
   ================================================ */

/* ================================================
   Hero Section
   ================================================ */

.classes-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.classes-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.classes-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.classes-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.classes-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.classes-hero-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 40px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.classes-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.classes-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-enquiry,
.btn-hero-book {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-hero-enquiry {
    background: #B3005E;
    color: white;
    border-color: #B3005E;
}

.btn-hero-enquiry:hover {
    background: transparent;
    color: #B3005E;
    border-color: #B3005E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 0, 94, 0.3);
}

.btn-hero-book {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-hero-book:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .classes-hero {
        min-height: 500px;
    }

    .classes-hero-container {
        padding: 40px 30px;
    }

    .classes-hero-title {
        font-size: 2.5rem;
    }

    .classes-hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-enquiry,
    .btn-hero-book {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .classes-hero-container {
        padding: 30px 20px;
    }

    .classes-hero-title {
        font-size: 2rem;
    }

    .classes-hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero-enquiry,
    .btn-hero-book {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ================================================
   Booking Section
   ================================================ */

.booking-section {
    padding: 80px 20px;
    background: #ffffff;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Instructor Booking Block */
.instructor-booking {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 50px;
}

/* Left Column - Image and Bio */
.instructor-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instructor-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bio Card */
.instructor-bio-card {
    background: #faf8f5;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
}

.instructor-bio-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B3005E;
}

.instructor-bio-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bio-highlights {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: #B3005E;
    font-size: 1rem;
}

.highlight-item span {
    font-size: 0.9rem;
    color: #333;
}

.bio-quote {
    font-style: italic;
    color: #B3005E;
    font-size: 1rem;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-left: 3px solid #B3005E;
    border-radius: 4px;
    margin-bottom: 0;
}

.instructor-booking-content {
    padding: 20px 0;
}

.instructor-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.instructor-dates {
    font-size: 1.4rem;
    color: #B3005E;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Availability Badge */
.availability-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #B3005E !important;
    padding: 10px 20px;
    border: 2px solid #B3005E;
    border-radius: 4px;
    margin: 15px 0 20px 0;
    font-size: 0.9rem;
    max-width: fit-content;
    letter-spacing: 0.5px;
}

.availability-badge i {
    font-size: 0.95rem;
    color: #B3005E;
}

.availability-badge span {
    color: #B3005E;
    font-size: 0.9rem;
}

.availability-badge span strong {
    font-weight: 600;
    color: #B3005E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Course Details */
.course-details {
    background: #faf8f5;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.course-details h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B3005E;
}

.schedule-list {
    margin-bottom: 25px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    margin-bottom: 10px;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(179, 0, 94, 0.1);
}

.schedule-item i {
    color: #B3005E;
    font-size: 1.1rem;
}

.schedule-item span {
    color: #333;
    font-size: 0.95rem;
}

/* Course Info Grid */
.course-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

.info-box i {
    color: #B3005E;
    font-size: 1.1rem;
    margin-top: 2px;
}

.info-box span {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Course Breakdown */
.course-breakdown {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.course-breakdown h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #B3005E;
}

.week-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.week-item:hover {
    background: #faf8f5;
    transform: translateX(5px);
}

.week-item:last-child {
    margin-bottom: 0;
}

.week-number {
    font-weight: 700;
    color: #B3005E;
    font-size: 0.95rem;
}

.week-content {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Booking Action */
.booking-action {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
    border-radius: 8px;
}

.price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.price-label {
    color: #666;
    font-size: 1.05rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #B3005E;
}

/* PayPal Button */
.paypal-form {
    display: block;
    margin: 20px 0;
    text-align: center;
}

.btn-paypal-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-paypal-custom:hover {
    background: white;
    color: #B3005E;
    border-color: #B3005E;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(179, 0, 94, 0.3);
}

.btn-paypal-custom i {
    font-size: 1.2rem;
}

.btn-paypal {
    display: inline-block;
    padding: 16px 50px;
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-paypal:hover {
    background: white;
    color: #B3005E;
    border-color: #B3005E;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(179, 0, 94, 0.3);
}

/* Alternative Payment */
.alternative-payment {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.alternative-payment p {
    margin: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.alternative-payment p:first-child {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.alternative-payment a {
    color: #B3005E;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alternative-payment a:hover {
    color: #8a0046;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .instructor-booking {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .instructor-booking {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .instructor-left-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 60px 20px;
    }
    
    .booking-title {
        font-size: 2.2rem;
    }
    
    .instructor-left-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .course-info-grid {
        grid-template-columns: 1fr;
    }
    
    .week-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .instructor-booking {
        padding: 20px;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .instructor-name {
        font-size: 1.8rem;
    }
    
    .course-details {
        padding: 20px;
    }
    
    .course-breakdown {
        padding: 20px;
    }
    
    .week-item {
        padding: 12px;
    }
    
    .price-highlight {
        flex-direction: column;
        gap: 8px;
        padding: 15px 20px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .btn-paypal {
        padding: 14px 40px;
        font-size: 1rem;
    }
}