/* Tuition Page Styles */
.tuition-page {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #0f172a;
    line-height: 1.6;
}

/* Hero Section */
.tuition-hero {
    position: relative;
    min-height: 40vh !important;
    display: flex;
    align-items: center;
    background: #0f172a;
    overflow: hidden;
    padding: 30px 0 30px;
    margin-top: -70px;
    padding-top: 100px;
}

.tuition-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% -10%, rgba(59,130,246,0.35), transparent),
        radial-gradient(ellipse 60% 50% at -10% 80%, rgba(30,58,138,0.4), transparent),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(99,102,241,0.2), transparent);
}

.tuition-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.tuition-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.tuition-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.35);
    color: #93c5fd;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.tuition-hero__badge i {
    color: #60a5fa;
    font-size: 1rem;
}

.tuition-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    margin-bottom: 0;
}

.tuition-hero__text-side {}

/* Icon Side */
.tuition-hero__icon-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-card {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
    animation: heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-icon-main {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 60px rgba(59,130,246,0.4);
    animation: heroFloat 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero-icon-float {
    position: absolute;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
}

.hero-icon-float--1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    top: 20px;
    right: 20px;
    animation: heroFloat 3.5s ease-in-out infinite 0.5s;
}

.hero-icon-float--2 {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #059669, #34d399);
    bottom: 30px;
    right: 30px;
    animation: heroFloat 4.5s ease-in-out infinite 1s;
}

.hero-icon-float--3 {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #d97706, #fbbf24);
    bottom: 20px;
    left: 20px;
    animation: heroFloat 3s ease-in-out infinite 1.5s;
}

@media (max-width: 768px) {
    .tuition-hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .tuition-hero__inner { text-align: center; }
    .tuition-hero__badge { margin: 0 auto 1.75rem; }
    .hero-actions { justify-content: center; }
    .hero-icon-card { width: 200px; height: 200px; }
    .hero-icon-main { width: 100px; height: 100px; font-size: 3rem; }
}

.hero-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-title__accent {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0 0 1.5rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

.hero-text strong { color: #93c5fd; }

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(59,130,246,0.35);
    transition: all 0.25s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59,130,246,0.5);
    color: white;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    transition: all 0.25s;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.hero-stat {
    text-align: center;
    padding: 0 2rem;
}

.hero-stat__value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

@media (max-width: 600px) {
    .tuition-hero { min-height: auto; padding: 100px 0 60px; }
    .hero-stat { padding: 0 1rem; }
    .hero-stat__value { font-size: 1.2rem; }
    .hero-stats { padding: 1rem; }
    .hero-stat__divider { display: none; }
}

/* Section Styles */
.section { padding: 80px 0; }
.section--white { background-color: #ffffff; }
.section--light { background-color: #f8fafc; }
.section--primary {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
}

.section__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__label {
    display: inline-block;
    background: rgba(30,58,138,0.1);
    color: #1E3A8A;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(30,58,138,0.2);
}

.section--primary .section__label {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.section__title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.section--primary .section__title { color: white; }

.section__subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.section--primary .section__subtitle { color: rgba(255,255,255,0.85); }

/* ── BOOKING PROGRESS ── */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
    transition: background 0.3s;
}

.progress-step.completed:not(:last-child)::after {
    background: #1E3A8A;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
}

.progress-step.active .step-number {
    background: #1E3A8A;
    color: white;
    border-color: #1E3A8A;
    box-shadow: 0 0 0 4px rgba(30,58,138,0.15);
}

.progress-step.completed .step-number {
    background: #1E3A8A;
    color: white;
    border-color: #1E3A8A;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: #1E3A8A;
}

/* ── BOOKING FORM ── */
.booking-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.form-step {
    display: none;
    padding: 2.5rem;
}

.form-step.active { display: block; }

.form-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.form-step-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-step { padding: 1.5rem; }
    .hero-title { font-size: 2rem; }
    .booking-progress { gap: 0; }
    .step-label { font-size: 0.65rem; }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #fafafa;
    transition: all 0.2s;
    outline: none;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3B82F6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
}

.input-icon-wrap input,
.input-icon-wrap select {
    padding-left: 2.5rem;
}

/* ── FORM ACTIONS ── */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.form-actions .btn { min-width: 130px; }

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    box-shadow: 0 4px 12px rgba(30,58,138,0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30,58,138,0.35);
}

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-success {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    box-shadow: 0 4px 12px rgba(5,150,105,0.25);
}

.btn-success:hover {
    background: linear-gradient(135deg, #047857, #059669);
    transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── PAYMENT SUMMARY ── */
.payment-summary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-summary h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px dashed #f1f5f9;
}

.summary-item:last-child { border-bottom: none; }

.summary-item span:last-child {
    font-weight: 600;
    color: #0f172a;
}

.summary-item.total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 2px solid #e2e8f0;
    border-bottom: none;
    font-size: 1rem;
    font-weight: 700;
}

.summary-item.total span:last-child {
    color: #1E3A8A;
    font-size: 1.2rem;
}

/* ── CONFIRMATION ── */
.confirmation-details h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3B82F6;
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.confirmation-details h4:first-child { margin-top: 0; }

/* ── FAQ ── */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-question:hover { background: #f8fafc; color: #1E3A8A; }
.faq-question i { transition: transform 0.3s ease; color: #3B82F6; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    color: #64748b;
    font-size: 0.95rem;
}

/* ── CTA ── */
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; }
.cta-text { font-size: 1.05rem; margin-bottom: 2rem; opacity: 0.9; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #128C7E; color: white; }
.btn-light { background: white; color: #1E3A8A; }
.btn-light:hover { background: #f1f5f9; color: #1E3A8A; }

