/* 
   Color Palette & Variables
*/
:root {
    --primary-navy: #1a2c4e;
    --secondary-gray: #333333;
    --bg-white: #f9f9f9;
    --card-bg: #ffffff;
    --accent-gold: #ffcc00;
    /* Used for subtle highlights if needed */
    --accent-blue: #3b5998;
    --text-color: #333;
    --light-text: #fff;

    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;

    --max-width: 1200px;
    --header-height: 70px;
    --spacing-block: 40px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--light-text);
    border-color: var(--primary-navy);
}

/* Header & Nav */
header {
    background-color: var(--primary-navy);
    color: var(--light-text);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ccc;
    font-weight: 600;
}

nav a:hover {
    color: var(--light-text);
}

.btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--accent-gold);
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(26, 44, 78, 0.9), rgba(26, 44, 78, 0.8)), url('media/phys.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    /* Almost full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-content {
    max-width: 800px;
}

.hero-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #ddd;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-navy);
    padding: 3rem 0;
    color: var(--light-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
}

/* Who We Are */
.who-section {
    padding: 80px 0;
    background-color: #fff;
}

.who-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-block);
    align-items: center;
}

.who-content {
    padding: var(--spacing-block);
}

.who-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #e8e8e8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.who-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.who-content .section-title {
    margin-bottom: var(--spacing-block);
}

.who-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

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

.who-content p strong {
    color: var(--primary-navy);
    font-weight: 700;
}

.who-content .highlight {
    font-weight: 700;
    padding: 0.1em 0.35em;
    border-radius: 3px;
}

.who-content .highlight--gold {
    background: rgba(255, 204, 0, 0.25);
    color: #8b6914;
}

/* Services / What We Offer */
#services {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Course Catalog Section */
#catalog {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-top: 4px solid var(--accent-gold);
    border-bottom: 4px solid var(--accent-gold);
}

.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-title {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.catalog-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.catalog-subtitle {
    font-size: 1.15rem;
    color: var(--secondary-gray);
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.offer-blocks {
    margin-bottom: 3rem;
}

.offer-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.offer-block:last-child {
    margin-bottom: 0;
}

.offer-block--reverse {
    direction: rtl;
}

.offer-block--reverse>* {
    direction: ltr;
}

.offer-block-img-wrap {
    overflow: hidden;
    border-radius: 10px;
    background: #e8e8e8;
}

.offer-block-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.offer-block-title {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.offer-block-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 6px;
}

.offer-block-content p {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.65;
    margin: 0;
}

.offer-block-content p strong {
    color: var(--primary-navy);
    font-weight: 700;
}

.highlight {
    font-weight: 700;
    padding: 0.1em 0.35em;
    border-radius: 3px;
}

.highlight--gold {
    background: rgba(255, 204, 0, 0.25);
    color: #8b6914;
}

.highlight--navy {
    background: rgba(26, 44, 78, 0.1);
    color: var(--primary-navy);
}

.offer-block-content {
    padding: 1.25rem 1.25rem 1.25rem 0.75rem;
}

.offer-block--reverse .offer-block-content {
    padding: 1.25rem 0.75rem 1.25rem 1.25rem;
}

.offer-block:nth-of-type(1) .offer-block-content,
.offer-block:nth-of-type(3) .offer-block-content {
    border-left: 3px solid var(--accent-gold);
}

.offer-block--reverse .offer-block-content {
    border-left: none;
    border-right: 3px solid var(--primary-navy);
}

/* College Consulting Section */
.college-consulting-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2a3f5f 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.college-consulting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1200&auto=format&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.college-consulting-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.college-consulting-title {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.college-consulting-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.college-consulting-description {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.college-consulting-description strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.college-consulting-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    text-decoration: none;
}

.college-consulting-cta:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

/* Specialized Mentorship Slider */
.mentorship-slider-section {
    margin-top: 3rem;
    padding: 3rem 0;
}

.mentorship-slider-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.mentorship-slider-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 15px auto 0;
}

.mentorship-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--card-bg);
    padding: 0;
}

.mentorship-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    height: 350px;
}

.mentorship-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
}

.mentorship-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    padding: 5rem 3rem;
    text-align: center;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mentorship-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 44, 78, 0.7);
    z-index: 1;
}

.mentorship-slide-content {
    position: relative;
    z-index: 2;
}

.mentorship-slide--exam {
    background-image: url('https://imagescdn.homes.com/i2/O2PNWKTN96ymHNSJwflGwQ00bSrAvafBXcB0I-mmpCo/117/bergen-county-academies-hackensack-nj-2-schoolphoto.jpg?p=1');
}

.mentorship-slide--math {
    background-image: url('https://www.pace.edu/sites/default/files/styles/16_9_1600x900/public/2021-11/dyson-interior-hero-math-pleasantville.jpg?h=993b43e0&itok=wO0He_G6');
}

.mentorship-slide--engineering {
    background-image: url('https://images.unsplash.com/photo-1727119313390-9e7737d8fc1c?q=80&w=1632&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.mentorship-slide-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0 0 1.5rem 0;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mentorship-slide-description {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

/* Navigation Arrows */
.mentorship-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mentorship-slider-arrow:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.mentorship-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.mentorship-slider-arrow--prev {
    left: 20px;
}

.mentorship-slider-arrow--next {
    right: 20px;
}

.mentorship-slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Navigation Dots */
.mentorship-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.mentorship-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.mentorship-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.mentorship-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    width: 32px;
    border-radius: 6px;
}

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


.expertise-search-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.expertise-search {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 1.05rem;
    font-family: var(--font-body);
    color: var(--primary-navy);
    background: #fff;
    border: 3px solid var(--accent-gold);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.expertise-search::placeholder {
    color: #888;
}

.expertise-search:hover {
    border-color: #e6b800;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.2);
}

.expertise-search:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.expertise-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.expertise-no-results {
    text-align: center;
    color: #666;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f5f5f5;
    border-radius: 10px;
}

.expertise-browse {
    margin-top: 0.5rem;
    display: none;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.expertise-browse.has-query {
    display: block;
}

.expertise-group {
    margin-bottom: 1.75rem;
}

.expertise-group.is-hidden {
    display: none;
}

.expertise-group--college {
    margin-top: 2rem;
}

.expertise-subject-heading {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.expertise-browse.is-searching .expertise-subject-heading {
    display: none;
}

.course-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.course-item {
    font-size: 0.95rem;
    color: #444;
    padding: 0.25rem 0;
    line-height: 1.4;
}

.course-item.is-hidden {
    display: none;
}

.expertise-browse.is-searching .course-list {
    margin-bottom: 0.5rem;
}

.expertise-browse.is-searching .course-item::before {
    content: attr(data-subject);
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    margin-right: 0.5rem;
    padding: 1px 6px;
    background: #eee;
    border-radius: 3px;
}

.expertise-college-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* About Section & Tutors Grid */
#about {
    padding: 80px 0;
    background-color: #fff;
}

#about .section-title {
    margin-bottom: 3rem;
}

.about-card {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.tutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-block);
    margin-bottom: 3rem;
}

.tutor-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tutor-img-placeholder {
    width: 150px;
    height: 150px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    border: 3px solid var(--primary-navy);
}

.tutor-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: block;
    border: 3px solid var(--primary-navy);
}

.tutor-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.tutor-role {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tutor-bio {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.philosophy-container {
    background-color: var(--bg-white);
    padding: var(--spacing-block);
    border-left: 5px solid var(--accent-gold);
    border-radius: 5px;
}

.philosophy h3 {
    margin-bottom: 15px;
}

/* Course ticker between Academic Tutoring and Test Prep */
.course-ticker {
    margin: var(--spacing-block) 0;
    padding: 10px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.course-ticker-row {
    overflow: hidden;
    margin-bottom: 4px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.course-ticker-row:last-child {
    margin-bottom: 0;
}

.course-ticker-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 1.5rem;
    padding: 0 0.5rem;
    white-space: nowrap;
}

.course-ticker-track span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: #6b7280;
    flex-shrink: 0;
}

.course-ticker-track span::after {
    content: '\00b7';
    margin-left: 1.5rem;
    color: #bbb;
    font-weight: 400;
}

.course-ticker-track--1 {
    animation: course-ticker-scroll 45s linear infinite;
}

.course-ticker-track--2 {
    animation: course-ticker-scroll 50s linear infinite;
    animation-direction: reverse;
}

.course-ticker-track--3 {
    animation: course-ticker-scroll 42s linear infinite;
}

@keyframes course-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Scheduling Section */
#scheduling {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.schedule-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
}

.schedule-intro--lead {
    text-align: center;
    font-size: 1.1rem;
}

.schedule-option {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: left;
    padding: var(--spacing-block);
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.schedule-option:last-child {
    margin-bottom: 0;
}

.schedule-option--new {
    border-left: 4px solid var(--accent-gold);
}

.schedule-option--returning {
    border-left: 4px solid var(--primary-navy);
}

.schedule-option-header {
    margin-bottom: 0.75rem;
}

.schedule-option-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-navy);
    background: rgba(255, 204, 0, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.schedule-option-badge--returning {
    background: rgba(26, 44, 78, 0.1);
    color: var(--primary-navy);
}

.schedule-option-title {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin: 0 0 0.5rem;
}

.schedule-option-desc {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.schedule-option-desc .schedule-phone {
    color: var(--primary-navy);
    font-weight: 600;
    text-decoration: none;
}

.schedule-option-desc .schedule-phone:hover {
    text-decoration: underline;
}

.form-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-wrapper--homely {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 24px;
}

.form-wrapper iframe {
    width: 100%;
    max-width: 640px;
    border: none;
    min-height: 800px;
}

/* Footer */
footer {
    background-color: var(--primary-navy);
    color: #aaa;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: var(--light-text);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 10px;
    }

    header {
        height: auto;
    }

    nav ul {
        margin-top: 15px;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .who-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-img-wrap img {
        height: 280px;
    }

    .offer-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        direction: ltr;
    }

    .offer-block--reverse {
        direction: ltr;
    }

    .offer-block-content,
    .offer-block--reverse .offer-block-content {
        padding: 0;
    }

    .offer-block-img-wrap img {
        height: 220px;
    }

    .catalog-title {
        font-size: 2.2rem;
    }

    .catalog-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .expertise-search {
        padding: 14px 16px 14px 46px;
        font-size: 1rem;
    }

    .expertise-browse {
        padding: 1.5rem;
    }

    .form-wrapper iframe {
        height: 600px;
    }

    .mentorship-slider-section {
        margin-top: 2rem;
        padding: 2rem 0;
    }

    .mentorship-slider-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .mentorship-slider-container {
        max-width: 100%;
        margin: 0 10px;
    }

    .mentorship-slider-wrapper {
        height: 280px;
    }

    .mentorship-slide {
        padding: 3rem 2rem;
        min-height: 280px;
    }

    .mentorship-slide-content h4 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .mentorship-slide-description {
        font-size: 1rem;
        max-width: 90%;
    }

    .mentorship-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .mentorship-slider-arrow--prev {
        left: 10px;
    }

    .mentorship-slider-arrow--next {
        right: 10px;
    }

    .mentorship-slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .mentorship-slider-dots {
        bottom: 15px;
        padding: 8px;
        gap: 10px;
    }

    .mentorship-dot {
        width: 10px;
        height: 10px;
    }

    .mentorship-dot.active {
        width: 28px;
    }

    .college-consulting-section {
        margin-top: 2rem;
        padding: 2rem 0;
        border-radius: 12px;
    }

    .college-consulting-content {
        padding: 0 1.5rem;
    }

    .college-consulting-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .college-consulting-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .college-consulting-cta {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* ── Pricing Section ── */
#pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.pricing-card--featured {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 24px rgba(255, 204, 0, 0.18);
}

.pricing-card--featured:hover {
    box-shadow: 0 14px 36px rgba(255, 204, 0, 0.25);
}

.pricing-card-header {
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: var(--light-text);
}

.pricing-card-header--foundation {
    background: linear-gradient(135deg, #3b82a0, #2a6e8e);
}

.pricing-card-header--standard {
    background: linear-gradient(135deg, var(--primary-navy), #2a3f5f);
}

.pricing-card-header--testprep {
    background: linear-gradient(135deg, #3b5998, #4a6bb5);
}

.pricing-card-header--premium {
    background: linear-gradient(135deg, #1a2c4e, #0d1a30);
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0 0 0.25rem 0;
}

.pricing-card-subtitle {
    font-size: 0.85rem;
    opacity: 0.85;
    margin: 0;
    font-weight: 400;
}

.pricing-card-body {
    padding: 1.75rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.pricing-dollar {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-right: 2px;
}

.pricing-value {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: #666;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

.pricing-features li {
    padding: 0.55rem 0;
    font-size: 0.92rem;
    color: #444;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: inline-block;
    margin-top: auto;
    padding: 10px 28px;
    background: var(--primary-navy);
    color: var(--light-text);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
}

.pricing-cta:hover {
    background: #2a3f5f;
    transform: translateY(-2px);
}

.pricing-cta--featured {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.pricing-cta--featured:hover {
    background: #e6b800;
}

/* Pricing responsive */
@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .pricing-value {
        font-size: 2.75rem;
    }
}