/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors in HSL format for consistency */
    --primary: 203 89% 52%;
    --primary-dark: 207 89% 42%;
    --accent: 25 95% 53%;
    --accent-dark: 20 95% 48%;
    --background: 0 0% 100%;
    --foreground: 220 15% 20%;
    --muted: 210 40% 96%;
    --muted-foreground: 220 8% 46%;
    --border: 220 13% 91%;
    --success: 142 76% 36%;
    --warning: 45 93% 47%;
    --destructive: 0 84% 60%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(203 89% 52%), hsl(217 91% 60%));
    --gradient-accent: linear-gradient(135deg, hsl(25 95% 53%), hsl(25 95% 63%));
    --gradient-hero: linear-gradient(135deg, hsl(203 89% 52%), hsl(239 84% 67%));
    
    /* Shadows */
    --shadow-warm: 0 10px 30px -10px hsl(203 89% 52% / 0.3);
    --shadow-glow: 0 0 40px hsl(25 95% 53% / 0.4);
    
    /* Typography */
    --font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    /*line-height: 1.6;*/
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    scroll-behavior: smooth;
}
.price-old {
  text-decoration: line-through;
  color: #6e6c6c;
  font-size: 1rem;
  margin-right: 0.5rem;
  display: block;
}

.pricing-discount {
  color: #e41123;
  font-weight: bold;
  margin-top: 0.5rem;
}
.discount-badge {
  position: absolute;
/*  top: 10px;
  right: 10px;
  background: #e63946;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);*/

    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #e63946;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;

}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.container .hero-content{
    margin: 0;
}

/* Core Layout Classes */
.section {
    padding: 5rem 0;
}

.bg-light {
    background: hsl(var(--muted));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}


.hero-title {
    line-height: 1.2;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    width: fit-content;
}

.gradient-text {
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-dark)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.hero-card.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}



/* Enhanced Button Styles */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Contact Info Styling */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.contact-item .contact-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: hsl(var(--primary));
    font-weight: 600;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(14, 165, 233, 0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-gradient {
    background: var(--gradient-accent);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-warm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(14, 165, 233, 0.4);
}



.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}



.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    gap: 0.25rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}



.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
}

.hero-image {
    display: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--background);
}

/* Subjects Section - Tutoring Page */
.subjects-grid-focused {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.subject-card-primary {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(14, 165, 233, 0.2);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.subject-card-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.subject-card-primary:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.subject-card-primary:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.3);
    border-color: rgba(14, 165, 233, 0.4);
}

.subject-card-secondary {
    background: white;
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.subject-card-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.subject-card-secondary.optional {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(251, 146, 60, 0.05));
    border-color: rgba(249, 115, 22, 0.2);
}

.subject-icon-large {
    background: var(--gradient-primary);
    color: white;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-warm);
}

.subject-icon-medium {
    background: var(--gradient-accent);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.subject-card-secondary.optional .subject-icon-medium {
    background: var(--gradient-accent);
}

.subject-card-primary:hover .subject-icon-large,
.subject-card-secondary:hover .subject-icon-medium {
    transform: scale(1.1) rotate(5deg);
}

.subject-card-primary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.subject-card-secondary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.subject-detail {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subject-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.availability-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.level-badge {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0.25rem;
    display: inline-block;
}

.level-badge.primary {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary-dark);
}

.level-badge.secondary {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-dark);
}

.level-badge.tertiary {
    background: rgba(168, 85, 247, 0.15);
    color: #7c3aed;
}

/* Tutor Profile Section */
.tutor-profile {
    max-width: 1000px;
    margin: 0 auto;
}

.tutor-profile-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.tutor-image-container {
    text-align: center;
}

.tutor-avatar-large {
    background: var(--gradient-primary);
    color: white;
    width: 8rem;
    height: 8rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-warm);
}

.tutor-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.badge {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge.verified {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.badge.rating {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.tutor-details {
    display: grid;
    gap: 2rem;
}

.tutor-specializations h4,
.tutor-experience h4,
.tutor-methods h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.tag.primary {
    background: var(--gradient-primary);
    color: white;
}

.tag.secondary {
    background: var(--gradient-accent);
    color: white;
}

.tag.tertiary {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.experience-list li:last-child {
    border-bottom: none;
}

.experience-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.method:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.service-icon {
    background: var(--gradient-primary);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.services-cta {
    text-align: center;
}

.services-cta p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--background);
}

.steps-container {
    max-width: 4xl;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.step-card:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.step-icon.primary {
    background: var(--gradient-primary);
    color: white;
}

.step-icon.accent {
    background: var(--gradient-accent);
    color: white;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.step-arrow svg {
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.urgent-section {
    background: rgba(241, 245, 249, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.urgent-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.urgent-section p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.urgent-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: rgba(241, 245, 249, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-warm);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-service {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--foreground);
    justify-content: center;
}

.b2b-section {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.b2b-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.b2b-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: rgba(241, 245, 249, 0.3);
}

.faq-container {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.faq-question:hover {
    background: rgba(241, 245, 249, 0.5);
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    padding-right: 2rem;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    padding-top: 1rem;
}

.faq-cta {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: rgba(241, 245, 249, 0.3);
}

.about-story {
    margin-bottom: 4rem;
}

.story-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-warm);
    max-width: 4xl;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.highlight {
    font-size: 1.125rem;
    color: var(--primary) !important;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.about-values {
    margin-bottom: 4rem;
}

.about-values h3 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.value-icon {
    background: var(--gradient-accent);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.testimonials {
    margin-bottom: 4rem;
}

.testimonials h3 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    background: var(--gradient-primary);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.about-cta {
    background: var(--gradient-hero);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.about-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.about-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.contact-icon {
    background: var(--gradient-primary);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p a {
    color: inherit;
    text-decoration: none;
}

.contact-details span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 1rem;
}

.urgent-contact {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.urgent-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgent-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}



/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-stats {
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgent-buttons,
    .faq-buttons,
    .about-buttons {
        flex-direction: row;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Additional Sections and Components */

/* Tutoring/Camps Specific Sections */
.tutoring-subjects,
.tutoring-pricing,
.tutoring-process,
.tutoring-about {
    padding: 5rem 0;
}

.tutoring-pricing {
    background: hsl(var(--muted));
}

.tutoring-about {
    background: hsl(var(--muted));
}

/* Subjects Grid */
.subjects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .subjects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .subjects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.subject-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: hsl(var(--primary) / 0.3);
}

.subject-card.gradient-border {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
    border-radius: 1rem;
}

.subject-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.subject-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.subject-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subject-topics {
    list-style: none;
    padding: 0;
}

.subject-topics li {
    color: hsl(var(--muted-foreground));
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subject-topics li::before {
    content: '•';
    color: hsl(var(--primary));
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: hsl(var(--primary) / 0.3);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.step-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

/* About Content Styling */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: hsl(var(--muted));
    border: 2px dashed hsl(var(--border));
    border-radius: 1rem;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Qualification Items */
.qualifications {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
    border-color: hsl(var(--primary) / 0.3);
}

.qualification-icon {
    background: var(--gradient-primary);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.qualification-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.qualification-text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Pricing Cards */
.pricing-card.featured {
    border-color: hsl(var(--primary));
    box-shadow: var(--shadow-warm);
    position: relative;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price .amount {
    margin-top: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.price .currency {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

/* Section Descriptions */
.section-description {
    font-size: 1.125rem;
    color: #6e6c6c;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Common Section Styles */
.services,
.pricing,
.how-it-works,
.about,
.faq {
    padding: 5rem 0;
}

.services {
    background: hsl(var(--background));
}

.pricing {
    background: hsl(var(--muted));
}

.how-it-works {
    background: hsl(var(--background));
}

.about {
    background: hsl(var(--muted));
}

.contact {
    background: hsl(var(--background));
}

.faq {
    background: hsl(var(--muted));
}

/* Business Offer Section */
.business-offer,
.section-cta {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.business-offer h3,
.section-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.business-offer p,
.section-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Form Styling */
.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    font-weight: 600;
}

/* Step Cards for How It Works */
.step-card .step-number {
    background: var(--gradient-primary);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Color variants for step numbers */
.step-number.blue {
    background: var(--gradient-primary);
}

.step-number.green {
    background: linear-gradient(135deg, hsl(var(--success)), hsl(var(--success) / 0.8));
}

.step-number.orange {
    background: var(--gradient-accent);
}

.step-number.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}