/* ============================================================
   PREMIER PLUS EDUCATION — collegeprepnyc.com
   Premium Design System
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --primary: #1B2A4A;
    --primary-dark: #0F1A2E;
    --primary-light: #2A3F6A;
    --secondary: #2D5CA6;
    --secondary-light: #3A6FBF;
    --accent: #C9A84C;
    --accent-light: #E8D5A3;
    --accent-dark: #A8892E;
    --success: #2E7D5B;
    --success-light: #D4EDDA;
    --text: #1A202C;
    --text-light: #64748B;
    --text-lighter: #94A3B8;
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --bg-warm: #FAFAF8;
    --bg-light: #F5F5F3;
    --bg-blue: #F0F4FA;
    --dark: #0F1A2E;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 12px -2px rgba(0,0,0,0.08), 0 3px 7px -3px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1), 0 8px 16px -6px rgba(0,0,0,0.05);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.text-light {
    color: var(--text-light);
}

.text-accent {
    color: var(--accent);
}

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

/* --- Section Spacing --- */
.section {
    padding: 80px 0;
}

.section-warm {
    background: var(--bg-warm);
}

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

.section-blue {
    background: var(--bg-blue);
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.section-dark .text-light {
    color: rgba(255,255,255,0.7);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-header .badge {
    display: inline-block;
    background: var(--bg-blue);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-dark .section-header .badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(45,92,166,0.3);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(27,42,74,0.35);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn-white:hover {
    background: var(--bg-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* --- Header --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(15,26,46,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05), var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo a:hover {
    opacity: 0.85;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    display: block;
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-arrow {
    font-size: 0.65rem;
    transition: var(--transition-fast);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition-fast);
    z-index: 100;
}

.nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.dropdown a:hover {
    background: var(--bg-blue);
    color: var(--secondary);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--accent);
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,26,46,0.82) 0%, rgba(27,42,74,0.75) 50%, rgba(42,63,106,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

/* Page Hero (subpages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
    color: rgba(255,255,255,0.9);
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* --- Card System --- */
.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-link:hover {
    gap: 10px;
    color: var(--primary);
}

/* Program Card */
.program-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.program-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow);
}

.program-card h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

.program-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Stat Card */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.stat-card .stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-value.accent {
    color: var(--accent);
}

.stat-card .stat-value.success {
    color: var(--success);
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

.stat-card .stat-desc {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-top: 8px;
}

/* Team Card */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-card .team-title {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card .team-edu {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-style: italic;
}

.team-card .team-bio {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.team-tag {
    background: var(--bg-blue);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* School Badge */
.school-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.school-badge:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.school-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.school-badge h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.school-badge .school-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Award Badge */
.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.award-gold {
    background: linear-gradient(135deg, #F6E27A, #C9A84C);
    color: var(--primary-dark);
}

.award-silver {
    background: linear-gradient(135deg, #E8E8E8, #B8B8B8);
    color: var(--primary-dark);
}

.award-honorable {
    background: var(--bg-blue);
    color: var(--secondary);
}

/* Legal Content (Privacy, Terms) */
.legal-content h2 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-content a {
    color: var(--secondary);
    text-decoration: underline;
}

/* Notice Grid */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.notice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.notice-card-body {
    padding: 20px;
}

.notice-card-body h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.notice-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .notice-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 4rem;
    color: var(--accent-light);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    padding-top: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-school {
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 500;
}

/* --- Location Card --- */
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.location-card-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.location-card-body {
    padding: 28px;
}

.location-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.location-info {
    margin-bottom: 20px;
}

.location-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.location-info .info-icon {
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.location-card-actions {
    display: flex;
    gap: 12px;
}

/* --- Forms --- */
.form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45,92,166,0.1);
}

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

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

.form-submit {
    text-align: center;
    margin-top: 8px;
}

/* --- FAQ Accordion --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-warm);
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--secondary);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* --- Table --- */
.data-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.data-table th {
    background: var(--bg-blue);
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}

.data-table tbody tr:hover {
    background: var(--bg-warm);
}

.data-table .count-cell {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    min-width: 60px;
}

/* --- Search & Filter --- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

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

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

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 32px;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.search-box input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45,92,166,0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-lighter);
    font-size: 1rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 64px;
    margin-bottom: 32px;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.timeline-tag {
    display: inline-block;
    background: var(--bg-blue);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
}

/* --- Notice Wall --- */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.notice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.notice-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.notice-card-body {
    padding: 20px;
}

.notice-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.notice-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* --- Disclaimer --- */
.disclaimer {
    background: var(--bg-warm);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

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

/* --- Map --- */
.map-embed {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: var(--radius);
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    display: inline-block;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.footer-partner {
    margin-top: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

.footer-partner a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-partner a:hover {
    color: var(--white);
}

/* --- Mobile Bottom Bar --- */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    gap: 12px;
}

.mobile-action-bar .btn {
    flex: 1;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Utility --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Year filter tabs (for college admissions) */
.year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.year-tab {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.year-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.year-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Consultant profile cards */
.consultant-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
    transition: var(--transition);
}

.consultant-card:hover {
    box-shadow: var(--shadow-md);
}

.consultant-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.consultant-info h3 {
    margin-bottom: 4px;
}

.consultant-info .consultant-role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.consultant-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.consultant-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.consultant-highlight {
    background: var(--bg-blue);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

/* Grade tabs for tutoring */
.grade-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border);
    overflow-x: auto;
}

.grade-tab {
    padding: 14px 28px;
    border: none;
    background: none;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
}

.grade-tab:hover {
    color: var(--secondary);
}

.grade-tab.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

.grade-content {
    display: none;
}

.grade-content.active {
    display: block;
}

/* Perfect score showcase */
.score-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.score-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.score-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.score-badge {
    display: inline-block;
    background: var(--success-light);
    color: var(--success);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 12px;
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.two-col-wide {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Results hub card */
.results-nav-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.results-nav-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--secondary);
}

.results-nav-card .card-icon {
    margin: 0 auto 16px;
}

.results-nav-card h3 {
    color: var(--text);
    margin-bottom: 8px;
}

.results-nav-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Careers form */
.careers-form textarea {
    min-height: 180px;
}

/* --- Enhanced Premium Components --- */

/* Test Prep Cards */
.test-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.test-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.test-card:hover::before {
    opacity: 1;
}

.test-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.test-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    background: var(--bg-blue);
    color: var(--secondary);
}

.test-card-header h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin: 0;
}

.test-card-header .test-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--accent-dark);
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-top: 4px;
}

.test-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.test-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.test-card-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.test-card-feature span {
    font-size: 0.9rem;
}

.test-card .highlight-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 16px;
}

/* Tutoring Enhanced Cards */
.tutor-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tutor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.tutor-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    background: var(--bg-blue);
}

.tutor-card h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.tutor-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Admissions Consulting Enhancement */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.package-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.package-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.package-card-header h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
}

.package-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.package-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* College Admissions Premium Table */
.data-table.premium-table tbody tr.ivy-row {
    background: linear-gradient(90deg, rgba(201,168,76,0.06), transparent);
    font-weight: 600;
}

.data-table.premium-table tbody tr.ivy-row td:first-child {
    color: var(--primary);
}

.data-table.premium-table tbody tr.ivy-row td:first-child::before {
    content: '\2B50 ';
    font-size: 0.85rem;
}

.admission-summary-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.admission-summary-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    color: var(--white);
}

.admission-summary-item .summary-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-body);
    color: var(--accent);
    line-height: 1.2;
}

.admission-summary-item .summary-label {
    font-size: 0.78rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Secondary School Enhanced Cards */
.school-card-premium {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
}

.school-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.school-card-premium .school-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.school-card-premium .school-info h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.school-card-premium .school-info .school-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.school-detail-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--text-light);
}

.school-detail-tag.tag-boarding {
    background: rgba(45,92,166,0.08);
    color: var(--secondary);
}

.school-detail-tag.tag-day {
    background: rgba(46,125,91,0.08);
    color: var(--success);
}

.school-detail-tag.tag-catholic {
    background: rgba(201,168,76,0.1);
    color: var(--accent-dark);
}

/* Test Scores Enhanced */
.perfect-score-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.perfect-score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: var(--accent);
}

.perfect-score-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.perfect-score-card .score-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.perfect-score-card .score-number {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-body);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perfect-score-card .score-test {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.perfect-score-card .score-detail {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.perfect-score-card .score-perfect-badge {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--accent-dark);
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    padding: 5px 16px;
    border-radius: var(--radius-full);
}

/* Score Improvement Visualization */
.improvement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.improvement-card h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.improvement-bar-container {
    margin-bottom: 16px;
}

.improvement-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.improvement-bar {
    height: 10px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.improvement-bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scholastic Awards Enhanced */
.award-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.award-category-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0;
}

.award-category-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    background: var(--secondary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.award-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.award-badge-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.award-badge-premium.gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    color: #8B6914;
    border-color: rgba(201,168,76,0.2);
}

.award-badge-premium.silver {
    background: linear-gradient(135deg, rgba(148,163,184,0.15), rgba(148,163,184,0.05));
    color: #475569;
    border-color: rgba(148,163,184,0.2);
}

.award-badge-premium.honorable {
    background: var(--bg-light);
    color: var(--text-light);
    border-color: var(--border);
}

/* Consulting Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 40px;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--secondary));
}

.process-step {
    position: relative;
    padding: 20px 0;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -40px;
    top: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.process-step h4 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 0 0 50%;
        margin-bottom: 16px;
        border-right: none;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .two-col,
    .two-col-wide {
        grid-template-columns: 1fr;
    }

    .consultant-card {
        flex-direction: column;
        text-align: center;
    }

    .consultant-avatar {
        margin: 0 auto;
    }

    .consultant-highlights {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .section {
        padding: 60px 0;
    }

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

    /* Header mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > li > a {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        margin: 4px 0 8px;
        padding: 4px;
    }

    .dropdown a {
        color: rgba(255,255,255,0.7);
        padding: 10px 24px;
    }

    .dropdown a:hover {
        background: rgba(255,255,255,0.08);
        color: var(--accent);
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-phone {
        display: none;
    }

    .header-cta .btn {
        display: none;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 40px 0;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 16px;
    }

    .hero-stat:last-child {
        border-bottom: none;
    }

    /* Page hero mobile */
    .page-hero {
        padding: 100px 0 40px;
    }

    /* Cards mobile */
    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-value {
        font-size: 2rem;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 24px;
    }

    /* Location */
    .location-card-actions {
        flex-direction: column;
    }

    /* Notice */
    .notice-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline::before {
        left: 16px;
    }

    .timeline-item {
        padding-left: 48px;
    }

    .timeline-dot {
        left: 8px;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-social {
        justify-content: center;
    }

    /* Mobile action bar */
    .mobile-action-bar {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    /* Grade tabs scroll */
    .grade-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

    /* Enhanced premium components - mobile */
    .test-card { padding: 24px 20px; }
    .test-card-header h3 { font-size: 1.15rem; }
    .test-card-icon { width: 44px; height: 44px; font-size: 1.3rem; }
    .admission-summary-bar { padding: 20px; gap: 12px; }
    .admission-summary-item .summary-value { font-size: 1.5rem; }
    .school-card-premium { padding: 20px 16px; gap: 14px; }
    .school-card-premium .school-icon { width: 44px; height: 44px; font-size: 1.2rem; }
    .perfect-score-card { padding: 28px 20px; }
    .perfect-score-card .score-number { font-size: 2.5rem; }
    .process-steps { padding-left: 32px; }
    .process-step::before { left: -32px; width: 28px; height: 28px; font-size: 0.75rem; }
    .package-card { padding: 28px 20px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr;
    }

    .trust-value {
        font-size: 1.75rem;
    }

    .stat-card .stat-value {
        font-size: 2.25rem;
    }

    .score-value {
        font-size: 2.5rem;
    }

    .hero-stat-value {
        font-size: 1.75rem;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn,
    .year-tab {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* Print */
@media print {
    header, .mobile-action-bar, .cta-section, footer {
        display: none;
    }

    .section {
        padding: 20px 0;
    }

    body {
        padding-bottom: 0;
    }
}
