/* ================================
   CSS VARIABLES & RESET
   ================================ */

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #FFD23F;
    --dark: #1A1D29;
    --gray: #64748B;
    --light: #F8FAFC;
    --success: #10B981;
    
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    --gradient-2: linear-gradient(135deg, #004E89 0%, #006BA6 100%);
    --gradient-3: linear-gradient(135deg, #FFD23F 0%, #FFE169 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ================================
   UTILITIES
   ================================ */

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

.highlight {
    color: var(--primary);
    position: relative;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 0.625rem 1.5rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
}

.logo-main {
    color: var(--secondary);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.btn-nav) {
    color: var(--dark);
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:not(.btn-nav):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 78, 137, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 78, 137, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(3deg); }
    66% { transform: translate(-30px, 30px) rotate(-3deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gray);
    max-width: 650px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ================================
   FEATURES SECTION
   ================================ */

.features {
    padding: 6rem 2rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================================
   SUBJECTS SECTION
   ================================ */

.subjects {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.subject-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.subject-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.subject-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

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

.subject-card li {
    color: var(--gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light);
}

.subject-card li:last-child {
    border-bottom: none;
}

/* ================================
   SOCIAL PROOF
   ================================ */

.social-proof {
    padding: 6rem 2rem;
    background: var(--secondary);
    color: white;
}

.social-proof .section-header h2,
.social-proof .section-header p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.student-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.student-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.student-result {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.rating {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8E53 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary);
    border: none;
}

.cta-section .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   PAGE HERO (Subpages)
   ================================ */

.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #006BA6 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   HOW IT WORKS
   ================================ */

.how-it-works {
    padding: 6rem 2rem;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================================
   TUTOR BROWSER
   ================================ */

.tutor-browser {
    padding: 6rem 2rem;
    background: var(--light);
}

.mode-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 50px;
    padding: 0.3rem;
    box-shadow: var(--shadow-md);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mode-btn {
    padding: 0.65rem 1.6rem;
    border: none;
    background: transparent;
    color: var(--gray);
    border-radius: 50px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mode-btn:hover {
    color: var(--secondary);
}

.mode-btn.active {
    background: var(--secondary);
    color: white;
}

.tutor-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border: 2px solid var(--secondary);
    background: white;
    color: var(--secondary);
    border-radius: 50px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--secondary);
    color: white;
}

.filter-btn.active {
    background: var(--secondary);
    color: white;
}

.tutor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.tutor-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tutor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tutor-card.hidden {
    display: none;
}

.tutor-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.tutor-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.tutor-subjects {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.tutor-details {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.tutor-details .tutor-atar {
    color: var(--secondary);
}

.tutor-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tutor-card .btn {
    width: 100%;
}

.tutor-card-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

/* ================================
   TUTOR PROFILE PAGE
   ================================ */

.tutor-profile-hero {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #006BA6 100%);
    color: white;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.back-link:hover {
    color: white;
}

.tutor-profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tutor-profile-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.tutor-profile-info h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.tutor-profile-info .tutor-profile-subjects {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tutor-profile-credentials {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 1rem;
    opacity: 0.9;
}

.tutor-profile-content {
    padding: 4rem 2rem;
    background: var(--light);
}

.tutor-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tutor-profile-bio {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.tutor-profile-bio h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.tutor-profile-bio p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.tutor-profile-bio .tutor-profile-band6 {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.tutor-profile-booking {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.tutor-profile-booking h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.booking-intro {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-form .form-group {
    margin-bottom: 1.2rem;
}

.booking-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.booking-form .required {
    color: var(--primary);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary);
    background: white;
    transition: var(--transition);
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.booking-form textarea {
    resize: vertical;
}

.booking-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.booking-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.2em;
}

.booking-status.error {
    color: #d93025;
}

.booking-success {
    text-align: center;
    padding: 2rem 1rem;
}

.booking-success i {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.booking-success h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.booking-success p {
    color: var(--gray);
    line-height: 1.6;
}

/* ================================
   SUBJECTS ACCORDION
   ================================ */

.subjects-detailed {
    padding: 6rem 2rem;
    background: white;
}

.subjects-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.subject-item {
    margin-bottom: 1rem;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
}

.subject-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.subject-header:hover {
    background: white;
}

.subject-icon {
    font-size: 2rem;
}

.subject-header h3 {
    flex: 1;
    font-size: 1.3rem;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.subject-item.active .toggle-icon {
    transform: rotate(45deg);
}

.subject-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.subject-item.active .subject-content {
    max-height: 500px;
}

.subject-content p,
.subject-content ul {
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.subject-content ul {
    list-style: none;
}

.subject-content li {
    padding: 0.5rem 0;
    color: var(--gray);
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.contact-item a,
.contact-item p {
    color: var(--gray);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
}

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

/* ================================
   CAREERS SPECIFIC
   ================================ */

.careers-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
    text-align: center;
}

.careers-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.careers-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.why-join {
    padding: 6rem 2rem;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--light);
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

.positions {
    padding: 6rem 2rem;
    background: var(--light);
}

.positions-list {
    max-width: 900px;
    margin: 0 auto;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.position-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.position-card.featured {
    border: 2px solid var(--primary);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.position-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--gray);
}

.position-type,
.position-location {
    display: inline-block;
}

.position-pay {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.position-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.position-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(0, 78, 137, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.requirements {
    padding: 6rem 2rem;
    background: white;
}

.requirements-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.requirements-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.requirements-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.requirements-text ul {
    list-style: none;
    padding: 0;
}

.requirements-text li {
    padding: 0.75rem 0;
    color: var(--gray);
    line-height: 1.6;
}

.testimonial-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.testimonial-box p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author-career {
    border-top: 2px solid white;
    padding-top: 1rem;
}

.testimonial-author-career strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.testimonial-author-career span {
    color: var(--gray);
    font-size: 0.9rem;
}

.application-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--light) 100%);
}

.application-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.application-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.application-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.application-process h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.process-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.process-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.application-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ================================
   ABOUT PAGE
   ================================ */

.about-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #006BA6 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.mission {
    padding: 6rem 2rem;
    background: white;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.mission-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--gray);
    font-weight: 600;
}

.values {
    padding: 6rem 2rem;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Brand Story Section */
.brand-story {
    padding: 6rem 2rem;
    background: white;
}

.brand-story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brand-story-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.brand-story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.brand-story-lead {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.brand-story-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.story-pillar {
    background: var(--light);
    border-radius: 16px;
    padding: 2rem;
}

.pillar-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.story-pillar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.story-pillar p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.brand-story-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
    background: var(--light);
    border-radius: 0 12px 12px 0;
}

.team {
    padding: 6rem 2rem;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    background: var(--gradient-2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.member-role {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--gray);
    line-height: 1.7;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.member-credentials span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.member-achievement {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 184, 0, 0.12);
    color: #b8860b;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.member-modes {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.mode-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.mode-online {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.mode-inperson {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.timeline {
    padding: 6rem 2rem;
    background: var(--light);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 80px;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--light);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

.difference {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.difference h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--secondary);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.difference-item {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
}

.difference-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.difference-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: white;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 2rem;
    }

    .contact-wrapper,
    .application-wrapper,
    .mission-content,
    .requirements-content {
        grid-template-columns: 1fr;
    }

    .tutor-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }

    .tutor-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .tutor-profile-credentials {
        justify-content: center;
    }

    .tutor-profile-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-year {
        width: 60px;
        font-size: 1.2rem;
    }

    .timeline-year::after {
        right: -1rem;
        width: 15px;
        height: 15px;
    }

    .position-header {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
