/* ============================================
   NEXA ACADEMY - Premium Tutoring Website
   ============================================ */

/* CSS Variables */
:root {
    --primary: #2D4263;
    --primary-light: #3d5a80;
    --primary-dark: #1a2a42;
    --accent: #C5A059;
    --accent-light: #d4b068;
    --accent-dark: #a88a45;
    --success: #38a169;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-off-white: #fafbfc;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 6px 10px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.highlight {
    color: var(--accent);
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(197, 160, 89, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-medium);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 160px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
}

.navbar .logo-icon img {
    mix-blend-mode: multiply;
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(45, 66, 99, 0.05);
}

.btn-nav {
    background: var(--primary) !important;
    color: var(--bg-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-md) !important;
    margin-left: 16px;
}

.btn-nav:hover {
    background: var(--primary-light) !important;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 760px;
    padding: 160px 0 96px;
    background: var(--primary-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(13, 27, 48, 0.97) 0%,
        rgba(13, 27, 48, 0.91) 40%,
        rgba(13, 27, 48, 0.68) 62%,
        rgba(13, 27, 48, 0.18) 100%
    );
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    animation: hero-study-push 20s ease-in-out infinite;
    will-change: transform;
}

.hero-brand-reveal {
    position: absolute;
    inset: 0 0 0 49%;
    z-index: 2;
    display: grid;
    place-items: center;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 52% 50%, rgba(197, 160, 89, 0.16), transparent 29%),
        linear-gradient(90deg, rgba(10, 24, 42, 0) 0%, rgba(10, 24, 42, 0.9) 27%, rgba(10, 24, 42, 0.98) 100%);
    animation: hero-brand-panel 20s ease-in-out infinite;
    will-change: opacity;
}

.hero-brand-reveal::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 55% 50%, #000, transparent 68%);
}

.hero-brand-reveal::before {
    content: "";
    position: absolute;
    top: -12%;
    bottom: -12%;
    left: -12%;
    width: 2px;
    opacity: 0;
    background: linear-gradient(transparent, rgba(235, 204, 137, 0.95) 28%, #fff 50%, rgba(235, 204, 137, 0.95) 72%, transparent);
    box-shadow: 0 0 22px rgba(222, 182, 96, 0.85), 0 0 70px rgba(222, 182, 96, 0.42);
    transform: rotate(8deg);
    animation: hero-gold-sweep 20s ease-in-out infinite;
}

.hero-ambient-light {
    position: absolute;
    width: 650px;
    height: 650px;
    opacity: 0;
    background:
        conic-gradient(from 190deg, transparent 0 37%, rgba(197,160,89,.13) 43%, rgba(255,255,255,.08) 47%, transparent 53% 100%);
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: hero-ambient-light 20s ease-in-out infinite;
    will-change: opacity, transform;
}

.hero-particles {
    position: absolute;
    inset: 8% 5%;
}

.hero-particles i {
    position: absolute;
    width: 3px;
    height: 3px;
    opacity: 0;
    background: #e5c67e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(229,198,126,.85);
    animation: hero-particle-drift 7s ease-in-out infinite;
}

.hero-particles i:nth-child(1) { top: 17%; left: 20%; animation-delay: -.8s; }
.hero-particles i:nth-child(2) { top: 30%; left: 77%; animation-delay: -3.1s; animation-duration: 9s; }
.hero-particles i:nth-child(3) { top: 70%; left: 15%; animation-delay: -5.4s; animation-duration: 8s; }
.hero-particles i:nth-child(4) { top: 82%; left: 69%; animation-delay: -1.9s; animation-duration: 10s; }
.hero-particles i:nth-child(5) { top: 48%; left: 88%; animation-delay: -6.3s; animation-duration: 11s; }
.hero-particles i:nth-child(6) { top: 12%; left: 55%; animation-delay: -4.2s; animation-duration: 8.5s; }

.hero-brand-rings,
.hero-brand-rings::before,
.hero-brand-rings::after,
.hero-brand-rings span {
    position: absolute;
    border: 1px solid rgba(213, 178, 101, 0.2);
    border-radius: 50%;
}

.hero-brand-rings {
    width: 470px;
    height: 470px;
    opacity: 0;
    animation: hero-rings 20s ease-out infinite;
}

.hero-brand-rings::before,
.hero-brand-rings::after {
    content: "";
}

.hero-brand-rings::before {
    inset: 58px;
}

.hero-brand-rings::after {
    inset: 116px;
}

.hero-brand-rings span {
    inset: 174px;
    background: rgba(197, 160, 89, 0.08);
    animation: hero-orbit-spin 12s linear infinite;
}

.hero-brand-rings span::before,
.hero-brand-rings span::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--accent-light);
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(213,178,101,.72);
}

.hero-brand-rings span::before {
    top: -5px;
    left: 50%;
}

.hero-brand-rings span::after {
    right: -5px;
    bottom: 22%;
}

.hero-brand-card {
    position: relative;
    width: min(360px, 72%);
    padding: 32px 34px 30px;
    opacity: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(213, 178, 101, 0.58);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(2, 10, 22, 0.4), 0 0 0 7px rgba(255, 255, 255, 0.04);
    transform: translateY(20px) scale(0.9);
    animation: hero-logo-arrive 20s cubic-bezier(.2, .8, .2, 1) infinite;
    will-change: opacity, transform;
}

.hero-brand-card::before,
.hero-brand-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 55px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213, 178, 101, 0.72));
}

.hero-brand-card::before {
    right: calc(100% + 18px);
}

.hero-brand-card::after {
    left: calc(100% + 18px);
    transform: rotate(180deg);
}

.hero-brand-card img {
    width: 250px;
    max-width: 100%;
    margin: 14px auto 12px;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: hero-logo-mark 20s cubic-bezier(.2,.8,.2,1) infinite;
    will-change: opacity, transform, clip-path;
}

.hero-brand-kicker,
.hero-brand-caption {
    display: block;
    font-family: "Inter", sans-serif;
}

.hero-brand-kicker {
    color: var(--accent-dark);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    opacity: 0;
    animation: hero-logo-copy 20s ease-out infinite;
}

.hero-brand-caption {
    color: #42516a;
    font-size: .72rem;
    letter-spacing: .025em;
    opacity: 0;
    animation: hero-logo-copy 20s ease-out .14s infinite;
}

.hero-board-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(440px, 78%);
    padding: 30px 32px 28px;
    opacity: 0;
    color: #172b48;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(213, 178, 101, 0.58);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(2, 10, 22, 0.42), 0 0 0 7px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transform: translate(-50%, calc(-50% + 24px)) scale(.94);
    animation: hero-board-arrive 20s cubic-bezier(.2, .8, .2, 1) infinite;
    will-change: opacity, transform;
}

.hero-board-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,.9), transparent);
}

.hero-board-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30%;
    width: 26%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    transform: translateX(0) skewX(-14deg);
    animation: hero-board-sheen 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-board-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-board-kicker::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.hero-board-card h3 {
    margin: 9px 0 7px;
    color: #172b48;
    font-size: 1.72rem;
    line-height: 1.17;
}

.hero-board-card > p {
    color: #647188;
    font-size: .75rem;
    line-height: 1.58;
}

.exam-board-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 22px 0 18px;
}

.exam-board-list > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 8px 10px;
    opacity: 0;
    background: #f7f8fa;
    border: 1px solid #e0e5eb;
    border-radius: 10px;
    filter: blur(4px);
    transform: translateY(13px) scale(.94);
    animation: hero-board-chip 20s ease-out infinite;
    will-change: opacity, transform, filter;
}

.exam-board-list > span:nth-child(2) {
    animation-delay: .12s;
}

.exam-board-list > span:nth-child(3) {
    animation-delay: .24s;
}

.exam-board-list img {
    width: auto;
    max-width: 100%;
    height: 34px;
    object-fit: contain;
}

.exam-board-aqa img {
    height: 39px;
}

.exam-board-edexcel img {
    height: 29px;
}

.exam-board-ocr img {
    height: 30px;
}

.revision-plan {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    opacity: 0;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(197, 160, 89, .2), transparent 38%),
        #172b48;
    border-radius: 11px;
    transform: translateY(12px) scale(.98);
    animation: hero-plan-arrive 20s ease-out infinite;
    will-change: opacity, transform;
}

.revision-plan::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    border: 1px solid rgba(213,178,101,.52);
    border-radius: inherit;
    animation: hero-plan-pulse 20s ease-out infinite;
}

.revision-plan {
    position: relative;
}

.revision-plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--accent-light);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(197,160,89,.35);
    border-radius: 9px;
}

.revision-plan-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.revision-plan-icon svg path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: hero-plan-draw 20s ease-in-out infinite;
}

.revision-plan > span:last-child {
    display: flex;
    flex-direction: column;
}

.revision-plan strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: .95rem;
    font-weight: 600;
}

.revision-plan small {
    margin-top: 3px;
    color: rgba(255,255,255,.58);
    font-size: .61rem;
}

.hero-reveal-progress {
    position: absolute;
    right: 50%;
    bottom: 48px;
    display: flex;
    gap: 18px;
    opacity: 0;
    transform: translateX(50%);
    animation: hero-progress-show 20s ease infinite;
}

.hero-reveal-progress span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.28);
}

.hero-reveal-progress span i {
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.hero-reveal-progress span b {
    font-size: .53rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-reveal-progress span:first-child {
    animation: hero-progress-board 20s ease infinite;
}

.hero-reveal-progress span:last-child {
    animation: hero-progress-logo 20s ease infinite;
}

@keyframes hero-study-push {
    0%, 5% { transform: scale(1) translate3d(0,0,0); }
    20% { transform: scale(1.035) translate3d(-.25%,0,0); }
    26%, 82% { transform: scale(1.058) translate3d(-.55%,0,0); }
    92%, 100% { transform: scale(1) translate3d(0,0,0); }
}

@keyframes hero-brand-panel {
    0%, 20% { opacity: 0; }
    26%, 82% { opacity: 1; }
    90%, 100% { opacity: 0; }
}

@keyframes hero-gold-sweep {
    0%, 19% { left: -12%; opacity: 0; }
    22% { opacity: 0.9; }
    28% { left: 106%; opacity: 0.95; }
    31%, 100% { left: 106%; opacity: 0; }
}

@keyframes hero-rings {
    0%, 24% { opacity: 0; transform: scale(0.72) rotate(-8deg); }
    30% { opacity: 1; }
    82% { opacity: .55; transform: scale(1) rotate(0); }
    90%, 100% { opacity: 0; transform: scale(1.08) rotate(4deg); }
}

@keyframes hero-ambient-light {
    0%, 20% { opacity: 0; transform: scale(.82) rotate(-16deg); }
    30% { opacity: .75; }
    60% { opacity: .42; transform: scale(1.02) rotate(8deg); }
    82% { opacity: .66; transform: scale(1.08) rotate(18deg); }
    90%, 100% { opacity: 0; transform: scale(1.15) rotate(24deg); }
}

@keyframes hero-particle-drift {
    0%, 100% { opacity: 0; transform: translate3d(0,12px,0) scale(.7); }
    22% { opacity: .8; }
    58% { opacity: .35; transform: translate3d(8px,-16px,0) scale(1); }
    82% { opacity: .65; }
}

@keyframes hero-orbit-spin {
    to { transform: rotate(360deg); }
}

@keyframes hero-logo-arrive {
    0%, 59% { opacity: 0; transform: translateY(20px) scale(.9); }
    66%, 81% { opacity: 1; transform: translateY(0) scale(1); }
    90%, 100% { opacity: 0; transform: translateY(-14px) scale(1.018); }
}

@keyframes hero-logo-mark {
    0%, 64% { opacity: 0; clip-path: inset(0 100% 0 0); transform: scale(.96); }
    70%, 82% { opacity: 1; clip-path: inset(0 0 0 0); transform: scale(1); }
    90%, 100% { opacity: 0; clip-path: inset(0 0 0 0); transform: scale(1.02); }
}

@keyframes hero-logo-copy {
    0%, 65% { opacity: 0; transform: translateY(7px); }
    71%, 82% { opacity: 1; transform: translateY(0); }
    90%, 100% { opacity: 0; transform: translateY(-3px); }
}

@keyframes hero-board-arrive {
    0%, 22% { opacity: 0; transform: translate(-50%, calc(-50% + 24px)) scale(.94); }
    30%, 57% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    64%, 100% { opacity: 0; transform: translate(-50%, calc(-50% - 18px)) scale(.98); }
}

@keyframes hero-board-sheen {
    0%, 35% { opacity: 0; transform: translateX(0) skewX(-14deg); }
    40% { opacity: .3; }
    48% { opacity: 0; transform: translateX(500%) skewX(-14deg); }
    100% { opacity: 0; transform: translateX(500%) skewX(-14deg); }
}

@keyframes hero-board-chip {
    0%, 27% { opacity: 0; filter: blur(4px); transform: translateY(13px) scale(.94); }
    34%, 58% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
    64%, 100% { opacity: 0; filter: blur(2px); transform: translateY(-6px) scale(.98); }
}

@keyframes hero-plan-arrive {
    0%, 33% { opacity: 0; transform: translateY(12px) scale(.98); }
    40%, 58% { opacity: 1; transform: translateY(0) scale(1); }
    64%, 100% { opacity: 0; transform: translateY(-6px) scale(.99); }
}

@keyframes hero-plan-draw {
    0%, 38% { stroke-dashoffset: 120; }
    45%, 59% { stroke-dashoffset: 0; }
    64%, 100% { stroke-dashoffset: 120; }
}

@keyframes hero-plan-pulse {
    0%, 43% { opacity: 0; transform: scale(.98); }
    48% { opacity: .8; }
    56% { opacity: 0; transform: scale(1.035); }
    100% { opacity: 0; }
}

@keyframes hero-progress-show {
    0%, 24% { opacity: 0; }
    30%, 82% { opacity: 1; }
    90%, 100% { opacity: 0; }
}

@keyframes hero-progress-logo {
    0%, 59% { color: rgba(255,255,255,.28); }
    66%, 82% { color: var(--accent-light); }
    90%, 100% { color: rgba(255,255,255,.28); }
}

@keyframes hero-progress-board {
    0%, 24% { color: rgba(255,255,255,.28); }
    30%, 60% { color: var(--accent-light); }
    66%, 100% { color: rgba(255,255,255,.28); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--bg-white);
    max-width: 680px;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 8px;
}

.hero .btn-secondary {
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.72);
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    padding: 104px 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(197, 160, 89, 0.08), transparent 23%),
        radial-gradient(circle at 92% 92%, rgba(45, 66, 99, 0.045), transparent 24%),
        #fffdfa;
    overflow: hidden;
}

.about::before,
.about::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.about::before {
    top: -170px;
    left: -110px;
}

.about::after {
    right: -140px;
    bottom: -180px;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-header {
    max-width: 810px;
    margin-bottom: 42px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-tag svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.about-header h2 {
    font-size: clamp(2.35rem, 4vw, 3.5rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.about-header .highlight {
    display: block;
}

.about-header .section-description {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px auto 12px;
    color: var(--accent);
}

.about-divider span {
    width: 52px;
    height: 1px;
    background: currentColor;
}

.about-divider svg {
    width: 23px;
    height: 23px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.about-card {
    text-align: center;
    min-height: 296px;
    padding: 34px 30px 32px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(45, 66, 99, 0.16);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(50, 43, 32, 0.07);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 20px 38px rgba(50, 43, 32, 0.12);
    background: rgba(255, 255, 255, 0.94);
}

.about-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(145deg, #0e2341, #294e78);
    color: #d7ad57;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 8px 18px rgba(18, 38, 66, 0.16);
}

.about-icon svg {
    width: 49px;
    height: 49px;
}

.about-card-rule {
    display: block;
    width: 24px;
    height: 3px;
    margin: 0 auto 11px;
    border-radius: 999px;
    background: var(--accent);
}

.about-card h3 {
    font-size: 1.42rem;
    margin-bottom: 9px;
    color: #152741;
}

.about-card p {
    color: var(--text-medium);
    font-size: 0.91rem;
    line-height: 1.65;
}

.about-proof {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.95fr);
    gap: 26px;
    margin-top: 26px;
}

.about-metrics,
.about-quote {
    min-height: 172px;
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 18px;
    background: rgba(255,255,255,0.66);
    box-shadow: 0 10px 26px rgba(50, 43, 32, 0.05);
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 24px 12px;
}

.about-metric {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}

.about-metric:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(45, 66, 99, 0.12);
}

.about-metric svg {
    width: 27px;
    height: 27px;
    margin-bottom: 6px;
    color: #17345a;
}

.about-metric-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    line-height: 1.1;
    font-weight: 600;
    color: var(--accent);
}

.about-metric > span:last-child {
    margin-top: 5px;
    color: var(--text-medium);
    font-size: 0.73rem;
    line-height: 1.3;
}

.about-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 28px 38px;
    overflow: hidden;
}

.about-quote::after {
    content: '';
    position: absolute;
    right: -18px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border: 14px double rgba(197, 160, 89, 0.06);
    border-radius: 50% 50% 8% 50%;
    transform: rotate(40deg);
}

.about-quote-mark {
    position: absolute;
    top: 10px;
    left: 22px;
    font-family: Georgia, serif;
    font-size: 4.1rem;
    line-height: 1;
    color: var(--accent);
}

.about-quote blockquote,
.about-quote figcaption {
    position: relative;
    z-index: 1;
}

.about-quote blockquote {
    margin: 10px 0 15px;
    color: var(--text-medium);
    font-size: 0.88rem;
    font-style: italic;
    line-height: 1.55;
}

.about-quote figcaption {
    display: flex;
    align-items: center;
    gap: 11px;
}

.about-avatar {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 2px solid rgba(197, 160, 89, 0.65);
    border-radius: 50%;
    background: linear-gradient(145deg, #203e64, #132844);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
}

.about-quote figcaption > span:last-child {
    display: flex;
    flex-direction: column;
}

.about-quote figcaption strong {
    font-family: 'Playfair Display', Georgia, serif;
    color: #172b48;
    font-size: 0.92rem;
}

.about-quote figcaption small {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs {
    padding: 120px 0;
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.program-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 100px;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(197, 160, 89, 0.2);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.program-icon {
    width: 56px;
    height: 56px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.program-level {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(45, 66, 99, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
}

.program-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.program-card > p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.program-topics {
    margin-bottom: 24px;
    flex-grow: 1;
}

.program-topics li {
    font-size: 0.875rem;
    color: var(--text-medium);
    padding: 6px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-topics li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9375rem;
}

.program-link:hover {
    gap: 12px;
    color: var(--accent-dark);
}

.programs {
    position: relative;
    padding: 108px 0 116px;
    background:
        radial-gradient(circle at 7% 18%, rgba(197, 160, 89, 0.08), transparent 20%),
        radial-gradient(circle at 94% 88%, rgba(45, 66, 99, 0.04), transparent 22%),
        #fbfaf7;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: 44px;
    left: -88px;
    width: 270px;
    height: 360px;
    border: 18px double rgba(197, 160, 89, 0.055);
    border-radius: 70% 22% 65% 32%;
    transform: rotate(-24deg);
    pointer-events: none;
}

.programs::after {
    content: '';
    position: absolute;
    top: -48px;
    right: -40px;
    width: 300px;
    height: 300px;
    opacity: 0.28;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(197, 160, 89, 0.16) 49%, rgba(197, 160, 89, 0.16) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(197, 160, 89, 0.16) 49%, rgba(197, 160, 89, 0.16) 51%, transparent 52%);
    background-size: 72px 72px;
    pointer-events: none;
}

.programs .container {
    position: relative;
    z-index: 1;
}

.programs-header {
    max-width: 830px;
    margin-bottom: 54px;
}

.programs-header .section-tag {
    position: relative;
    margin-bottom: 20px;
}

.programs-header .section-tag::before,
.programs-header .section-tag::after {
    content: '✦';
    position: absolute;
    top: 50%;
    width: 70px;
    overflow: hidden;
    color: var(--accent);
    font-size: 0.72rem;
    line-height: 1px;
    letter-spacing: 64px;
    background: linear-gradient(currentColor, currentColor) center / calc(100% - 18px) 1px no-repeat;
    transform: translateY(-50%);
}

.programs-header .section-tag::before {
    right: calc(100% + 14px);
    text-align: right;
}

.programs-header .section-tag::after {
    left: calc(100% + 14px);
}

.programs-header h2 {
    font-size: clamp(2.45rem, 4vw, 3.45rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #14233b;
}

.programs-header .section-description {
    max-width: 720px;
    margin: 20px auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.programs-grid {
    gap: 22px;
}

.program-card {
    position: relative;
    min-height: 530px;
    padding: 28px 26px 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-bottom: 3px solid var(--accent);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(36, 42, 54, 0.08);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent 38%);
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-7px);
    border-color: rgba(197, 160, 89, 0.58);
    box-shadow: 0 22px 42px rgba(36, 42, 54, 0.14);
}

.program-header {
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.program-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    background: linear-gradient(145deg, rgba(197, 160, 89, 0.13), rgba(255,255,255,0.6));
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 14px;
}

.program-icon svg {
    width: 39px;
    height: 39px;
}

.program-level {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    white-space: nowrap;
    color: #18345b;
    background: #f0f3f7;
    padding: 8px 13px;
}

.program-card h3 {
    position: relative;
    z-index: 1;
    min-height: 2.4em;
    font-size: 1.47rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #10223d;
}

.program-card > p {
    position: relative;
    z-index: 1;
    min-height: 8.3em;
    font-size: 0.88rem;
    line-height: 1.62;
    margin-bottom: 18px;
}

.program-topics {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(197, 160, 89, 0.38);
}

.program-topics::before {
    content: '✦';
    position: absolute;
    top: -9px;
    left: 50%;
    padding: 0 8px;
    background: #fff;
    color: var(--accent);
    font-size: 0.72rem;
    transform: translateX(-50%);
}

.program-topics li {
    padding: 5px 0;
    border-bottom: 0;
    gap: 10px;
    font-size: 0.8rem;
}

.program-topics li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    color: var(--success);
    font-size: 0.58rem;
    font-weight: 800;
}

.program-link {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    font-size: 0.9rem;
}

.program-link:hover {
    gap: 13px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 120px 0;
    background: var(--bg-white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: min(12.5%, 140px);
    right: min(12.5%, 140px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
    animation: process-step-glow 5.6s ease-in-out 1;
    animation-play-state: paused;
    will-change: transform, box-shadow, filter;
}

.process.visible .step-number {
    animation-play-state: running;
}

.process-step:nth-child(1) .step-number {
    animation-delay: 0s;
}

.process-step:nth-child(2) .step-number {
    animation-delay: 1.4s;
}

.process-step:nth-child(3) .step-number {
    animation-delay: 2.8s;
}

.process-step:nth-child(4) .step-number {
    animation-delay: 4.2s;
}

@keyframes process-step-glow {
    0%,
    25%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: var(--shadow-lg);
        filter: brightness(1);
    }

    6%,
    19% {
        transform: translateY(-3px) scale(1.07);
        box-shadow:
            0 0 0 8px rgba(197, 160, 89, 0.14),
            0 0 32px 8px rgba(197, 160, 89, 0.52),
            var(--shadow-lg);
        filter: brightness(1.12);
    }
}

@keyframes process-step-glow-reduced {
    0%,
    25%,
    100% {
        box-shadow: var(--shadow-lg);
        filter: brightness(1);
    }

    6%,
    19% {
        box-shadow:
            0 0 0 10px rgba(197, 160, 89, 0.2),
            0 0 42px 14px rgba(197, 160, 89, 0.68),
            var(--shadow-lg);
        filter: brightness(1.18);
    }
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.process {
    position: relative;
    padding: 106px 0 128px;
    background:
        radial-gradient(circle at 9% 10%, rgba(197, 160, 89, 0.085), transparent 24%),
        radial-gradient(circle at 91% 88%, rgba(45, 66, 99, 0.04), transparent 22%),
        #fffdfa;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -42px;
    width: 270px;
    height: 390px;
    opacity: 0.22;
    background:
        radial-gradient(ellipse at 50% 100%, transparent 64%, rgba(197, 160, 89, 0.22) 65%, rgba(197, 160, 89, 0.22) 66%, transparent 67%) 0 0 / 85px 110px;
    transform: rotate(-24deg);
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 26px;
    width: 190px;
    height: 140px;
    opacity: 0.34;
    background-image: radial-gradient(circle, rgba(197, 160, 89, 0.32) 1.6px, transparent 1.8px);
    background-size: 22px 22px;
    pointer-events: none;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-header {
    max-width: 870px;
    margin-bottom: 38px;
}

.process-header .section-tag {
    margin-bottom: 22px;
}

.process-header h2 {
    font-size: clamp(2.45rem, 4vw, 3.5rem);
    line-height: 1.14;
    letter-spacing: -0.025em;
    color: #12233d;
}

.process-header .section-description {
    max-width: 720px;
    margin: 20px auto 0;
    font-size: 1.04rem;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
    align-items: stretch;
}

.process-steps::before {
    top: 48px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent) 8%, var(--accent) 92%, transparent);
}

.process-step {
    position: relative;
    max-width: none;
    min-height: 390px;
    margin-top: 52px;
    padding: 72px 28px 52px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(197, 160, 89, 0.44);
    border-bottom: 3px solid var(--accent);
    border-radius: 18px;
    box-shadow: 0 15px 28px rgba(41, 43, 50, 0.075);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.7);
    box-shadow: 0 22px 42px rgba(41, 43, 50, 0.13);
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    z-index: 4;
    top: -12px;
    right: -30px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: #fffdfa;
    box-shadow: 0 0 0 5px rgba(255, 253, 250, 0.8);
}

.step-number {
    position: absolute;
    z-index: 5;
    top: -48px;
    left: calc(50% - 45px);
    width: 90px;
    height: 90px;
    margin: 0;
    border: 9px solid rgba(255, 253, 250, 0.94);
    outline: 1px solid rgba(197, 160, 89, 0.32);
    background: linear-gradient(145deg, #dfbd73, #bd8730);
    font-size: 1.7rem;
    box-shadow: 0 12px 24px rgba(144, 102, 34, 0.25);
}

.process-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 13px;
    color: #c28f37;
}

.process-icon svg {
    width: 65px;
    height: 65px;
}

.process-rule {
    display: block;
    width: 26px;
    height: 2px;
    margin: 0 auto 18px;
    border-radius: 99px;
    background: var(--accent);
}

.process-step h3 {
    margin-bottom: 14px;
    color: #132540;
    font-size: 1.38rem;
    line-height: 1.25;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.86rem;
    line-height: 1.65;
}

.process-badge {
    position: absolute;
    z-index: 2;
    left: calc(50% - 31px);
    bottom: -36px;
    display: grid;
    place-items: center;
    width: 62px;
    height: 66px;
    color: var(--accent);
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.5);
    clip-path: polygon(50% 0, 92% 15%, 92% 72%, 50% 100%, 8% 72%, 8% 15%);
    filter: drop-shadow(0 9px 10px rgba(35, 40, 50, 0.1));
}

.process-badge svg {
    width: 27px;
    height: 27px;
}

@media (prefers-reduced-motion: reduce) {
    .step-number {
        animation-name: process-step-glow-reduced;
        will-change: box-shadow, filter;
    }

}

/* ============================================
   TUTORS SECTION
   ============================================ */
.tutors {
    position: relative;
    padding: 106px 0 118px;
    background:
        radial-gradient(circle at 8% 17%, rgba(197, 160, 89, 0.08), transparent 24%),
        radial-gradient(circle at 93% 84%, rgba(45, 66, 99, 0.045), transparent 22%),
        #fbfaf7;
    overflow: hidden;
}

.tutors::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -86px;
    width: 330px;
    height: 420px;
    border: 20px double rgba(197, 160, 89, 0.055);
    border-radius: 70% 25% 68% 30%;
    transform: rotate(-24deg);
    pointer-events: none;
}

.tutors::after {
    content: 'N';
    position: absolute;
    top: 10px;
    right: -32px;
    color: rgba(197, 160, 89, 0.045);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.tutors .container {
    position: relative;
    z-index: 1;
}

.tutors-header {
    max-width: 900px;
    margin-bottom: 50px;
}

.tutors-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border: 1px solid rgba(197, 160, 89, 0.42);
    background: rgba(255, 255, 255, 0.5);
}

.tutors-header .section-tag svg {
    width: 20px;
    height: 20px;
}

.tutors-header h2 {
    font-size: clamp(2.45rem, 4vw, 3.45rem);
    line-height: 1.14;
    letter-spacing: -0.025em;
    color: #12233d;
}

.tutors-header .section-description {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 1.04rem;
    line-height: 1.7;
}

.tutors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tutor-card {
    position: relative;
    min-height: 505px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(197, 160, 89, 0.38);
    border-bottom: 4px solid var(--accent);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(40, 43, 50, 0.09);
    text-align: center;
}

.tutor-card:hover {
    transform: translateY(-7px);
    border-color: rgba(197, 160, 89, 0.68);
    box-shadow: 0 23px 44px rgba(40, 43, 50, 0.15);
}

.tutor-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,0.12), transparent 34%),
        linear-gradient(145deg, #132b4d, #34567e);
}

.tutor-visual::before,
.tutor-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.tutor-visual::before {
    width: 210px;
    height: 210px;
}

.tutor-visual::after {
    width: 145px;
    height: 145px;
    border-color: rgba(197, 160, 89, 0.22);
}

.tutor-monogram {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    border: 1px solid rgba(197, 160, 89, 0.6);
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #e2c57f;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.7rem;
    letter-spacing: 0.04em;
    text-shadow: 0 3px 16px rgba(0,0,0,0.18);
}

.tutor-emblem {
    position: absolute;
    z-index: 3;
    top: 177px;
    left: calc(50% - 43px);
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(197, 160, 89, 0.6);
    border-radius: 50%;
    background: #fffdfa;
    color: var(--accent);
    box-shadow: 0 9px 20px rgba(40, 43, 50, 0.12);
}

.tutor-emblem svg {
    width: 44px;
    height: 44px;
}

.tutor-math-symbol {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    line-height: 1;
}

.tutor-content {
    padding: 55px 25px 30px;
}

.tutor-card h3 {
    margin: 0 0 7px;
    color: #132540;
    font-size: 1.38rem;
    line-height: 1.25;
}

.tutor-subject {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
}

.tutor-rule {
    display: block;
    width: 28px;
    height: 1px;
    margin: 0 auto 14px;
    background: var(--accent);
}

.tutor-content p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--text-medium);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    position: relative;
    padding: 106px 0 100px;
    background:
        radial-gradient(circle at 8% 14%, rgba(197, 160, 89, 0.08), transparent 24%),
        radial-gradient(circle at 92% 85%, rgba(45, 66, 99, 0.04), transparent 22%),
        #fffdfa;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -92px;
    left: -75px;
    width: 300px;
    height: 430px;
    border: 18px double rgba(197, 160, 89, 0.05);
    border-radius: 72% 24% 70% 30%;
    transform: rotate(-28deg);
    pointer-events: none;
}

.testimonials::after {
    content: 'N';
    position: absolute;
    top: 12px;
    right: -30px;
    color: rgba(197, 160, 89, 0.045);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18rem;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    max-width: 850px;
    margin-bottom: 44px;
}

.testimonials-header .section-tag {
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(255,255,255,0.5);
}

.testimonials-header h2 {
    font-size: clamp(2.45rem, 4vw, 3.45rem);
    line-height: 1.14;
    letter-spacing: -0.025em;
    color: #12233d;
}

.testimonials-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 21px auto 10px;
    color: var(--accent);
}

.testimonials-divider span {
    width: 72px;
    height: 1px;
    background: currentColor;
}

.testimonials-divider svg {
    width: 27px;
    height: 27px;
}

.testimonials-header .section-description {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.65;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testimonial-card {
    position: relative;
    display: flex;
    min-height: 370px;
    flex-direction: column;
    padding: 30px 30px 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(197, 160, 89, 0.48);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(41, 43, 50, 0.08);
    backdrop-filter: blur(8px);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 89, 0.78);
    box-shadow: 0 22px 42px rgba(41, 43, 50, 0.14);
}

.testimonial-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 3.7rem;
    color: var(--accent);
    opacity: 1;
    position: static;
    height: 36px;
    line-height: 0.92;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 24px;
    color: #263a56;
    font-size: 0.92rem;
    line-height: 1.72;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border: 2px solid rgba(197, 160, 89, 0.7);
    border-radius: 50%;
    background: linear-gradient(145deg, #1c3a62, #112845);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(31, 51, 78, 0.16);
}

.author-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #142641;
}

.author-role {
    color: var(--accent-dark);
    font-size: 0.78rem;
}

.testimonial-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px 0;
}

.testimonial-pagination span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.28);
}

.testimonial-pagination .active {
    width: 22px;
    border-radius: 99px;
    background: var(--accent);
}

.testimonials-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 112px;
    align-items: center;
    padding: 20px 24px;
    border: 1px solid rgba(197, 160, 89, 0.38);
    border-radius: 24px;
    background: rgba(255,255,255,0.68);
    box-shadow: 0 12px 28px rgba(41, 43, 50, 0.06);
}

.testimonial-proof-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 18px;
}

.testimonial-proof-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(45, 66, 99, 0.12);
}

.testimonial-proof-item > svg {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    padding: 10px;
    color: var(--accent);
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 50%;
}

.testimonial-proof-item > span {
    display: flex;
    flex-direction: column;
}

.testimonial-proof-item strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    line-height: 1.1;
    color: #142641;
}

.testimonial-proof-item small {
    margin-top: 4px;
    color: var(--text-medium);
    font-size: 0.72rem;
    line-height: 1.3;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-content h2 .highlight {
    color: var(--accent-light);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    position: relative;
    padding: 108px 0 116px;
    background:
        radial-gradient(circle at 7% 12%, rgba(197, 160, 89, 0.08), transparent 24%),
        radial-gradient(circle at 94% 90%, rgba(45, 66, 99, 0.04), transparent 22%),
        #fffdfa;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    left: -105px;
    bottom: -160px;
    width: 330px;
    height: 500px;
    border: 20px double rgba(197, 160, 89, 0.06);
    border-radius: 72% 25% 70% 30%;
    transform: rotate(-23deg);
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    top: 26px;
    right: 30px;
    width: 190px;
    height: 130px;
    opacity: 0.3;
    background-image: radial-gradient(circle, rgba(197, 160, 89, 0.35) 1.5px, transparent 1.8px);
    background-size: 22px 22px;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
    gap: 74px;
    align-items: center;
}

.contact-info {
    padding-left: 12px;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid rgba(197, 160, 89, 0.48);
    background: rgba(255,255,255,0.52);
}

.contact-tag svg {
    width: 18px;
    height: 18px;
}

.contact-info h2 {
    margin: 12px 0 0;
    max-width: 540px;
    color: #122540;
    font-size: clamp(2.55rem, 4.3vw, 3.7rem);
    line-height: 1.12;
    letter-spacing: -0.028em;
}

.contact-info h2 .highlight {
    display: block;
}

.contact-divider {
    display: flex;
    align-items: center;
    width: min(100%, 350px);
    margin: 24px 0 22px;
}

.contact-divider span {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(197, 160, 89, 0.16));
}

.contact-divider i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: var(--accent);
    transform: rotate(45deg);
}

.contact-info > p {
    max-width: 510px;
    margin-bottom: 34px;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.65;
}

.contact-details {
    display: flex;
    flex-direction: column;
    max-width: 440px;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

.contact-item + .contact-item {
    border-top: 1px solid rgba(197, 160, 89, 0.22);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(197, 160, 89, 0.36);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(44, 46, 52, 0.07);
}

.contact-icon svg {
    width: 29px;
    height: 29px;
    color: var(--accent);
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #253a58;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-item a {
    color: #132642;
    font-size: 1.02rem;
    font-weight: 500;
}

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

.contact-form {
    padding: 44px 46px 42px;
    background: rgba(255,255,255,0.79);
    border: 1px solid rgba(197, 160, 89, 0.54);
    border-radius: 26px;
    box-shadow: 0 20px 48px rgba(42, 44, 50, 0.11);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #142641;
    font-size: 0.84rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: var(--text-dark);
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(45, 66, 99, 0.18);
    border-radius: 10px;
    transition: var(--transition);
}

.form-group input,
.form-group select {
    min-height: 56px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 132px;
}

.contact-submit {
    min-height: 56px;
    gap: 10px;
    border: 0;
    background: linear-gradient(135deg, #d9ae55, #b9842c);
    box-shadow: 0 10px 22px rgba(169, 121, 39, 0.2);
}

.contact-submit svg {
    width: 20px;
    height: 20px;
}

.contact-submit:hover {
    background: linear-gradient(135deg, #c99b40, #a87222);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: transparent;
}

.footer-brand .logo-text {
    color: var(--bg-white);
    display: none;
}

.footer-brand > p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .program-card {
        min-height: 500px;
    }

    .program-card > p {
        min-height: 0;
    }
    
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-brand-reveal {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero::after {
        background: rgba(13, 27, 48, 0.84);
    }

    .hero-media img {
        object-position: 54% center;
    }
    
    .hero-content {
        max-width: 680px;
        margin: 0 auto;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-grid {
        gap: 18px;
    }

    .about-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-proof {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    
    .process-steps::before {
        display: none;
    }

    .process-step:not(:last-child)::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-proof {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 0;
    }

    .testimonial-proof-item:nth-child(2)::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        padding-left: 0;
    }
}

@media (max-width: 1100px) {
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .navbar .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 16px;
        text-align: center;
    }
    
    .btn-nav {
        margin: 16px 0 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-media img {
        object-position: 84% center;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: 680px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 80px 0;
    }

    .about-header {
        margin-bottom: 34px;
    }

    .about-header h2 {
        font-size: 2.25rem;
    }

    .about-header .section-description {
        font-size: 0.94rem;
    }

    .about-card {
        min-height: 0;
    }

    .about-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }

    .about-metric:nth-child(2)::after {
        display: none;
    }

    .about-quote {
        padding: 30px 28px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .programs {
        padding: 80px 0;
    }

    .programs-header {
        margin-bottom: 38px;
    }

    .programs-header h2 {
        font-size: 2.25rem;
    }

    .programs-header .section-description {
        font-size: 0.94rem;
    }

    .programs-header .section-tag::before,
    .programs-header .section-tag::after {
        width: 42px;
        letter-spacing: 36px;
        background-size: calc(100% - 14px) 1px;
    }

    .program-card {
        min-height: 0;
        padding: 28px;
    }

    .program-card h3,
    .program-card > p {
        min-height: 0;
    }

    .process {
        padding: 80px 0 106px;
    }

    .process-header {
        margin-bottom: 34px;
    }

    .process-header h2 {
        font-size: 2.25rem;
    }

    .process-header .section-description {
        font-size: 0.94rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .process-step {
        min-height: 0;
        margin-top: 48px;
        padding: 68px 28px 50px;
    }
    
    .tutors-grid {
        grid-template-columns: 1fr;
    }

    .tutors {
        padding: 80px 0;
    }

    .tutors-header {
        margin-bottom: 38px;
    }

    .tutors-header h2 {
        font-size: 2.25rem;
    }

    .tutors-header .section-description {
        font-size: 0.94rem;
    }

    .tutor-card {
        min-height: 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonials-header {
        margin-bottom: 36px;
    }

    .testimonials-header h2 {
        font-size: 2.25rem;
    }

    .testimonials-header .section-description {
        font-size: 0.94rem;
    }

    .testimonial-card {
        min-height: 0;
        padding: 28px 26px;
    }

    .testimonials-proof {
        padding: 22px 10px;
    }

    .testimonial-proof-item {
        gap: 9px;
        padding: 0 8px;
    }

    .testimonial-proof-item > svg {
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .testimonial-proof-item strong {
        font-size: 1.3rem;
    }

    .testimonial-proof-item small {
        font-size: 0.64rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-info h2 {
        font-size: 2.35rem;
    }

    .contact-form {
        padding: 30px 22px 26px;
        border-radius: 20px;
    }

    .contact-details {
        max-width: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Menu Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Animation on Scroll */
.about-card,
.program-card,
.tutor-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-card.visible,
.program-card.visible,
.tutor-card.visible,
.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.program-card:nth-child(1) { transition-delay: 0.1s; }
.program-card:nth-child(2) { transition-delay: 0.2s; }
.program-card:nth-child(3) { transition-delay: 0.3s; }
.program-card:nth-child(4) { transition-delay: 0.4s; }

.tutor-card:nth-child(1) { transition-delay: 0.1s; }
.tutor-card:nth-child(2) { transition-delay: 0.2s; }
.tutor-card:nth-child(3) { transition-delay: 0.3s; }
.tutor-card:nth-child(4) { transition-delay: 0.4s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* Form Success State */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success svg {
    width: 80px;
    height: 80px;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-medium);
}
