/* =================================== */
/* HERO SECTION */
/* =================================== */
.hero-section {
    background-color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin: 0 0 30px 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.hero-signup-btn {
    font-size: 1.5rem !important;
    padding: 15px 40px !important;
    font-weight: 700 !important;
    background-color: #f6c324 !important;
    border-color: #f6c324 !important;
    color: #333 !important;
}

.hero-signup-btn:hover {
    background-color: #e0b020 !important;
    border-color: #e0b020 !important;
}

/* =================================== */
/* BOOKING FORM */
/* =================================== */
.booking-form-section {
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.booking-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.booking-form-title {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 30px;
}

.parent-signup {
    background-color: #f6c324; /* Secondary */
    color: #333;
    border-color: #f6c324;
}
.parent-signup:hover {
    background-color: #e0b020;
    border-color: #e0b020;
}

.student-signup {
    background-color: #3aa3a0; /* Primary */
    color: #fff;
    border-color: #3aa3a0;
}
.student-signup:hover {
    background-color: #2f8a87;
    border-color: #2f8a87;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.simple-auth-form .btn {
    width: 280px;
    padding: 15px;
    font-size: 1.1rem;
}

/* =================================== */
/* FEATURES SECTION */
/* =================================== */
.features-section {
    padding: 60px 20px;
    background-color: #f4f7f6;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.features-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f6c324;
    margin: 15px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #f6c324;
    transition: transform 0.2s;
    color: #fff;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #f6c324;
    margin-top: 0;
    margin-bottom: 15px;
    min-height: 40px;
}

.feature-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #e0e0e0;
}

/* ── Feature availability badges ──────────────────────── */
.feature-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.feature-badge-ms2 {
    background: rgba(246, 195, 36, 0.18);
    color: #f6c324;
    border: 1px solid rgba(246, 195, 36, 0.35);
}
.feature-badge-all {
    background: rgba(58, 163, 160, 0.18);
    color: #3aa3a0;
    border: 1px solid rgba(58, 163, 160, 0.35);
}

/* =================================== */
/* ABOUT SECTION */
/* =================================== */
.about-section {
    background-color: #3aa3a0;
    padding: 60px 20px;
    color: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image-wrapper {
    flex: 1;
    max-width: 350px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-text-wrapper { flex: 2; }
.about-text-wrapper h2 { font-size: 3.5rem; font-weight: 700; margin-top: 0; margin-bottom: 25px; color: #ffffff; }
.about-text-wrapper p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 15px; }

/* =================================== */
/* REVIEWS SECTION */
/* =================================== */
.reviews-section {
    background-color: #f6c324;
    padding: 60px 20px;
}

#google-reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

#google-reviews-container h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

#google-reviews-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #3aa3a0;
    margin: 15px auto 0;
}

.review-card {
    background-color: #fff;
    border-top: 4px solid #3aa3a0;
    border-radius: 8px;
    padding: 25px;
    margin: 0 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Slick Dots Customization */
#reviews-list .slick-dots {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: center;
}
#reviews-list .slick-dots li { display: inline-block; margin: 0 6px; }
#reviews-list .slick-dots li button {
    padding: 0; width: 12px; height: 12px; border: none; border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2); text-indent: -9999px; cursor: pointer;
}
#reviews-list .slick-dots li.slick-active button { background-color: #3aa3a0; }

/* =================================== */
/* FAQ SECTION */
/* =================================== */
.faq-section {
    background-color: #3aa3a0;
    padding: 60px 20px;
}

.faq-section .content-box { max-width: 900px; margin: 0 auto; }
.faq-section .content-box h2 { color: #fff; text-align: center; font-size: 2.5rem; font-weight: 700; }

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    position: relative;
    list-style: none;
}
.faq-question:hover { background-color: #f8f9fa; }
.faq-question::after {
    content: '+';
    position: absolute; right: 25px; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; font-weight: 300; color: #3aa3a0;
}
.faq-item[open] > .faq-question::after { content: '−'; }

.faq-answer {
    padding: 0 25px 20px 25px;
    color: #555;
    line-height: 1.6;
}

/* =================================== */
/* RESPONSIVE */
/* =================================== */
@media (max-width: 992px) {
    .about-container { gap: 30px; }
    .about-text-wrapper h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero-section { padding: 40px 15px; }
    .hero-title { font-size: 2.5rem; }
    .about-container { flex-direction: column; text-align: center; }
    .about-image-wrapper { margin-bottom: 30px; max-width: 300px; }
    .form-actions { flex-direction: column; }
    .simple-auth-form .btn { width: 100%; }
}

/* =================================== */
/* PHYSICAL TUTORING SECTION */
/* =================================== */
.physical-tutoring-section {
    background-color: #f6c324;
    color: #000;
    padding: 60px 20px;
    text-align: center;
}

.physical-tutoring-container {
    max-width: 800px;
    margin: 0 auto;
}

.physical-tutoring-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.physical-tutoring-section p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.physical-tutoring-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 30px;
    background-color: #000;
    color: #f6c324;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.physical-tutoring-cta:hover {
    transform: scale(1.05);
    color: #f6c324;
    text-decoration: none;
}
