/* 
 * Hood Learning Partners - Main Stylesheet
 * This CSS file can be shared across all pages of the tutoring website
 * Includes global styles, typography, components, and responsive design
 */

/* ===========================
   Global Reset and Base Styles 
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for consistent theming - Custom Blue Palette */
:root {
    /* Primary blues - Ocean-inspired palette */
    --primary-color: #2563EB;     /* Rich royal blue */
    --primary-dark: #1D4ED8;      /* Deeper blue for hover states */
    --primary-light: #3B82F6;     /* Lighter blue for accents */
    
    /* Accent colors - Complementary teal */
    --accent-color: #06B6D4;      /* Bright cyan/teal */
    --accent-dark: #0891B2;       /* Darker teal */
    
    /* Text colors with blue undertones */
    --text-primary: #0F172A;      /* Deep blue-black */
    --text-secondary: #475569;    /* Blue-gray */
    --text-light: #64748B;        /* Light blue-gray */
    
    /* Background colors with subtle blue tints */
    --bg-primary: #FFFFFF;        /* Pure white */
    --bg-secondary: #F0F9FF;      /* Very light blue tint */
    --bg-accent: #E0F2FE;         /* Light blue accent */
    
    /* Border colors with blue tones */
    --border-color: #CBD5E1;      /* Blue-gray border */
    --border-light: #E2E8F0;      /* Light blue-gray border */
    
    /* Shadows with blue hints */
    --shadow-sm: 0 1px 3px rgba(59, 130, 246, 0.08);
    --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.10);
    --shadow-lg: 0 12px 24px rgba(59, 130, 246, 0.12);
    --shadow-xl: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Base typography with modern font stack */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ===========================
   Layout Components 
   =========================== */

/* Container for consistent max-width and padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Main content with top spacing for fixed nav */
.main-content {
    padding-top: 72px;
}

/* ===========================
   Navigation Styles 
   =========================== */

/* Navigation header with fixed positioning and blur effect */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navigation container with flexbox layout */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

/* Logo/brand styling with hover effect */
.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation menu with modern spacing */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

/* Navigation links with hover states */
.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

/* Special styling for Schedule link */
.nav-menu a[href="schedule.html"] {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.nav-menu a[href="schedule.html"]:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
    display: none;
}

/* ===========================
   Hero Section Styles 
   =========================== */

/* Hero section with centered content and gradient background */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
}

/* Main headline with modern typography */
.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
}

/* Add subtle blue accent to first line */
.hero h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.3s forwards;
}

/* Logo container with modern card design */
.logo-container {
    display: inline-block;
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin: 40px 0 48px 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.logo-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

/* Mathematical logo styling */
.math-logo {
    height: 160px;
    width: auto;
    display: block;
}

/* Subtitle with secondary color */
.hero .subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

/* Description with improved readability */
.hero .description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: left;
}

/* Paragraph separator styling */
.description-paragraph {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.description-paragraph:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ===========================
   Button Styles 
   =========================== */

/* Call-to-action buttons with modern styling */
.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.2s;
    animation-fill-mode: both;
}

.cta-button {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 2px solid transparent;
}

/* Primary CTA button style */
.cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    border-color: var(--accent-color);
}

/* Secondary CTA button style */
.cta-button.secondary {
    background: white;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.cta-button.secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===========================
   Section Styles 
   =========================== */

/* Section base styles */
.section {
    padding: 60px 0;
}

/* Special padding for services section to reduce dead space */
#services.section {
    padding-top: 40px;
}

/* Reduced padding for testimonials section */
#testimonials.section {
    padding-top: 60px;
}

/* Alternating section backgrounds */
.section:nth-child(even) {
    background: var(--bg-secondary);
}

/* Section headers with consistent styling */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Card Components 
   =========================== */

/* Services grid with modern card design */
/* Services grid with modern card design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;  /* Increased from 800px */
    margin: 0 auto;
}

/* Service card with clean design */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, white 95%, var(--bg-accent) 100%);
}

/* Service card icon */
.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

/* Service card content */
.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Service card link */
.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

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

.service-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* Testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

/* Testimonial card with modern design */
.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

/* Testimonial header with avatar */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonial content */
.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Star rating */
.star-rating {
    color: var(--accent-color);
    font-size: 18px;
    filter: brightness(1.1);
}

/* ===========================
   CTA Section 
   =========================== */

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

/* Add subtle pattern overlay for visual interest */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* ===========================
   Footer Styles 
   =========================== */

/* Footer with clean design */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
    color: white;
    padding: 48px 0 32px;
    text-align: center;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.footer p {
    opacity: 0.8;
    font-size: 16px;
}

/* ===========================
   Animations 
   =========================== */

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Apply animations to elements */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.logo-container {
    animation: fadeInUp 0.8s ease-out 0.5s;
    animation-fill-mode: both;
}

.hero .subtitle {
    animation: fadeInUp 0.8s ease-out 0.8s;
    animation-fill-mode: both;
}

.hero .description {
    animation: fadeInUp 0.8s ease-out 1s;
    animation-fill-mode: both;
}

/* ===========================
   Responsive Design 
   =========================== */

/* Responsive design for tablets */
@media (max-width: 768px) {
    /* Adjust navigation for tablets */
    .nav-container {
        padding: 12px 20px;
    }

    .nav-menu {
        gap: 4px;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 6px 12px;
    }

    /* Adjust hero for tablets */
    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero .subtitle {
        font-size: 20px;
    }

    .hero .description {
        font-size: 16px;
    }

    /* Adjust sections for tablets */
    .section {
        padding: 40px 0;
    }

    #services.section {
        padding-top: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    /* Mobile button group */
    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive design for mobile */
@media (max-width: 480px) {
    /* Mobile navigation */
    .logo {
        font-size: 18px;
    }

    .nav-menu {
        display: none;
    }

    /* Add mobile menu button */
    .mobile-menu-toggle {
        display: block;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        border: none;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    /* Mobile hero adjustments */
    .hero h1 {
        font-size: 32px;
    }

    .math-logo {
        height: 120px;
    }

    /* Mobile grid adjustments */
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Mobile section headers */
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }
}

/* ===========================
   Utility Classes 
   =========================== */

/* These can be used across different pages */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
}

/* Animation for scroll-in elements */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Lazy loaded images (optional) */
img[data-src] {
    filter: blur(10px);
    transition: filter 0.3s;
}

img.loaded {
    filter: blur(0);
}

/* JS loaded indicator (optional) */
body.js-loaded .hero-title {
    /* Any special styles for when JS is loaded */
}

/* ===========================
   About Page Specific Styles 
   =========================== */

/* Page header section */
.page-header {
    text-align: center;
    padding: 80px 0 40px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-title {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease-out;
}

/* Featured photo with modern card style */
.featured-photo-container {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    margin: 20px 0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.featured-photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.featured-photo {
    width: 300px;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Bio section */
.bio-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.bio-content {
    background: white;
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

/* Section titles with blue accent */
.bio-content .section-title {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 24px;
}

.bio-paragraph {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Experience items */
.experience-list {
    margin: 32px 0;
}

.experience-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: var(--bg-accent);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.experience-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.experience-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Interests grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.interest-category {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.interest-category h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.interest-category ul {
    list-style: none;
}

.interest-category li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.interest-category li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Photos section */
.photos-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Square photo containers */
.photo-container {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.photo-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Active nav state */
.nav-menu a.active {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .featured-photo {
        width: 250px;
    }
    
    .bio-content {
        padding: 32px;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .featured-photo {
        width: 200px;
    }
    
    .bio-content {
        padding: 24px;
    }
}

/* ===========================
   Contact Page Specific Styles 
   =========================== */

/* Contact page header */
.contact-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0 40px;
}

.contact-header .subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-header .description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form section */
.form-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

/* Form container with modern card design */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Google Form iframe styling */
.google-form-iframe {
    width: 100%;
    height: 3457px;
    border: none;
    border-radius: 12px;
    background: var(--bg-secondary);
}

/* Loading message */
.loading-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Contact info section */
.contact-info-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 18px;
}

/* Responsive iframe heights */
@media (max-width: 1024px) {
    .google-form-iframe {
        height: 3300px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 30px;
    }
    
    .contact-header .page-title {
        font-size: 36px;
    }
    
    .contact-header .subtitle {
        font-size: 20px;
    }
    
    .contact-header .description {
        font-size: 16px;
    }
    
    .form-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .google-form-iframe {
        height: 3200px;
    }
    
    .contact-info {
        padding: 32px 24px;
    }
    
    .contact-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-header .page-title {
        font-size: 28px;
    }
    
    .form-container {
        padding: 16px;
    }
    
    .google-form-iframe {
        height: 3000px;
    }
    
    .contact-info {
        padding: 24px 20px;
    }
    
    .contact-info h3 {
        font-size: 20px;
    }
    
    .contact-info p {
        font-size: 16px;
    }
}

/* ===========================
   Pricing Page Specific Styles 
   =========================== */

/* Pricing page header */
.pricing-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0 60px;
}

/* White box for flexible pricing description */
.pricing-header .description {
    background: white;
    color: var(--text-secondary);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.8;
}

/* Pricing section */
.pricing-section {
    padding: 60px 0 80px;
    background: var(--bg-primary);
}

/* Section title for pricing */
.pricing-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

/* What's included card - white background */
.included-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.included-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 24px;
}

.included-item {
    text-align: left;
}

.included-item p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-primary);
}

.included-icon {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 20px;
}

.included-detail {
    color: var(--text-secondary);
    font-size: 14px;
}

.included-footer {
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Pricing card with blue background */
.pricing-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-accent);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

/* Card header */
.pricing-card .card-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-card .frequency {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Pricing options with white background */
.pricing-options {
    list-style: none;
    margin-bottom: 24px;
    background: white;
    border-radius: 12px;
    padding: 8px;
}

.pricing-option {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

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

.pricing-option:hover {
    background: var(--bg-secondary);
}

.session-duration {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.card-note {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

/* Emergency tutoring section */
.emergency-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.emergency-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.emergency-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.emergency-section .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-primary);
}

.emergency-feature span {
    color: var(--accent-color);
    font-size: 20px;
}

.emergency-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 24px 0;
}

.emergency-note {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

/* College section with blue background */
.college-section {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 48px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.college-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

/* Service list */
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

.service-item {
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--bg-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.college-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.college-description {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.college-included {
    background: white;
    padding: 20px 32px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-header {
        padding: 60px 0 40px;
    }
    
    .pricing-header .description {
        padding: 24px;
        font-size: 16px;
        margin: 16px 20px 0;
    }
    
    .pricing-section {
        padding: 40px 0 60px;
    }
    
    .included-card {
        padding: 32px 24px;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .emergency-section {
        padding: 32px 24px;
        margin: 0 10px 40px;
    }
    
    .emergency-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .college-section {
        padding: 32px 24px;
    }
    
    .service-list {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-card h3 {
        font-size: 24px;
    }
    
    .price {
        font-size: 18px;
    }
    
    .college-price {
        font-size: 28px;
    }
    
    .emergency-section h3 {
        font-size: 24px;
    }
    
    .emergency-price {
        font-size: 20px;
    }
}

/* ===========================
   Schedule Page Specific Styles 
   =========================== */



/* Schedule page header */
.schedule-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0 40px;
}



/* Schedule section */
.schedule-section {
    padding: 40px 0 80px;  /* Reduced from 60px to 40px top padding */
    background: var(--bg-primary);
}

/* Calendar container */
.calendar-container {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    overflow: hidden;
}

/* Calendly widget styling */
.calendly-inline-widget {
    width: 100%;
    min-height: 750px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

/* Loading message */
.calendar-container .loading-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Consultation list styling */
.consultation-list {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.consultation-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
}

/* Update description styling for better spacing */
.schedule-header .description {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-header .description p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.schedule-header .description p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-primary);
}

/* Info cards grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Info card with blue background */
.info-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: var(--bg-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.info-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Schedule contact info */
.schedule-contact-info {
    background: #FEF2F2;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid #EF4444;
    box-shadow: var(--shadow-md);
    position: relative;
    margin-bottom: 40px;
    margin-top: 0;  /* Add this to ensure no top margin */
}

.schedule-contact-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 24px;
}

/* Emergency contact box */
.emergency-contact {
    background: rgba(239, 68, 68, 0.1);  /* Subtle red background */
    border: 1px solid rgba(239, 68, 68, 0.3);  /* Light red border */
    border-radius: 12px;
    padding: 24px;
    margin-top: 16px;
}

.emergency-contact p {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .schedule-header {
        padding: 60px 0 30px;
    }
    
    .schedule-section {
        padding: 24px 0 60px;
    }
    
    .calendar-container {
        padding: 20px;
        margin: 0 10px 40px;
    }
    
    .calendly-inline-widget {
        min-height: 600px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 24px;
    }
    
    .schedule-contact-info {
        padding: 32px 24px;
        margin: 0 10px;
    }
    
    .schedule-contact-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .calendar-container {
        padding: 16px;
    }
    
    .calendly-inline-widget {
        min-height: 550px;
    }
    
    .info-icon {
        font-size: 36px;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
    
    .emergency-contact {
        padding: 20px;
    }
    
    .emergency-contact p {
        font-size: 14px;
    }
}

/* Consultation info box */
.consultation-info-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 32px auto 24px;  /* Changed from "32px auto 0" - added 24px bottom margin */
    max-width: 900px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* Optional: Add a badge */
.consultation-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

/* Text styling inside consultation box */
.consultation-info-box p {
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.consultation-info-box .consultation-list {
    margin: 24px 0;
}

.consultation-info-box .consultation-list li {
    color: var(--text-primary);
}

/* Make the last paragraph stand out */
.consultation-info-box p:last-child {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .consultation-info-box {
        padding: 32px 24px;
        margin: 24px 10px 16;
    }
}

/* ===========================
   Services Page Specific Styles 
   =========================== */

/* Services page header */
.services-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0 60px;
}

/* Service category sections */
.service-category-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.service-category-section.alt-bg {
    background: var(--bg-secondary);
}

/* Service category card */
.service-category-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.service-category-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Featured badge */
.featured-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

/* Category titles */
.category-title {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.category-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.category-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Service offerings */
.service-offerings {
    margin-bottom: 32px;
}

.service-offerings h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.offering-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.offering-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.offering-item h4 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.offering-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Key features */
.key-features {
    background: var(--bg-accent);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.key-features h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Service note */
.service-note {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 24px;
}

/* Course grid for math section */
.course-grid {
    margin: 32px 0;
}

.course-grid h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
}

.course-column ul {
    list-style: none;
}

.course-column li {
    padding: 8px 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.course-column li:last-child {
    border-bottom: none;
}

/* Approach section */
.approach-section {
    margin-top: 32px;
}

.approach-section h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* AP subjects grid */
.ap-subjects {
    margin: 32px 0;
}

.ap-subjects h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.subject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.subject-category {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.subject-category h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.subject-category p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Test prep grid */
.test-prep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

.test-prep-column h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.prep-list {
    list-style: none;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
}

.prep-list li {
    padding: 8px 0;
    color: var(--text-primary);
    padding-left: 20px;
    position: relative;
}

.prep-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Test includes */
.test-includes {
    margin-top: 32px;
}

.test-includes h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.feature-list.horizontal li {
    margin-bottom: 0;
    padding: 8px 24px;
    background: var(--bg-accent);
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

/* Workshop components */
.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.component-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.component-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.component-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Unique approach section */
.unique-approach {
    background: var(--bg-accent);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.unique-approach h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.unique-approach p {
    color: var(--text-primary);
    line-height: 1.8;
}

/* Emergency service card */
.emergency-service-card {
    background: #FEF2F2;
    border-radius: 24px;
    padding: 48px;
    border: 2px solid #EF4444;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #EF4444;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.emergency-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

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

.emergency-feature span {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.emergency-feature p {
    color: var(--text-primary);
    font-size: 16px;
}

.emergency-pricing {
    font-size: 28px;
    color: #EF4444;
    font-weight: 700;
    text-align: center;
    margin-top: 32px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-accent);
}

.why-choose-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

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

.why-choose-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.why-choose-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-choose-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-header {
        padding: 60px 0 40px;
    }
    
    .service-category-section {
        padding: 40px 0;
    }
    
    .service-category-card {
        padding: 32px 24px;
        margin: 0 10px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .course-list {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 24px;
    }
    
    .test-prep-grid {
        grid-template-columns: 1fr;
    }
    
    .subject-grid {
        grid-template-columns: 1fr;
    }
    
    .component-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-list.horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .emergency-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 24px;
    }
    
    .service-offerings h3,
    .course-grid h3,
    .ap-subjects h3,
    .test-prep-column h3 {
        font-size: 20px;
    }
    
    .offering-item {
        padding: 20px;
    }
    
    .emergency-pricing {
        font-size: 24px;
    }
}

/* Concierge Service Card */
.concierge-service-card {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 24px;
    padding: 48px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.concierge-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

/* How it works section */
.how-it-works {
    margin: 40px 0;
}

.how-it-works h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-item p {
    color: var(--text-primary);
    font-size: 16px;
}

/* Concierge pricing */
.concierge-pricing {
    margin: 40px 0;
}

.concierge-pricing h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.pricing-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pricing-option-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-option-card.featured {
    border: 2px solid var(--accent-color);
}

.best-value {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-option-card h4 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.price-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .subject {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.price-item .subjects-list {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-item .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Concierge features */
.concierge-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
    padding: 32px;
    background: white;
    border-radius: 16px;
}

.concierge-features .feature {
    text-align: center;
}

.concierge-features .feature span {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.concierge-features .feature p {
    color: var(--text-primary);
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .concierge-service-card {
        padding: 32px 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-options-grid {
        grid-template-columns: 1fr;
    }
    
    .concierge-features {
        grid-template-columns: 1fr 1fr;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .price-item .price {
        font-size: 20px;
    }
}

/* ===========================
   Testimonials Page Specific Styles 
   =========================== */

/* Testimonials page header */
.testimonials-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0 60px;
}

/* Coming soon card */
.coming-soon-card {
    background: var(--bg-accent);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.coming-soon-card h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.coming-soon-card p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.coming-soon-card p:last-child {
    margin-bottom: 0;
}

/* Coming soon box - styled like service/pricing white boxes */
.coming-soon-box {
    background: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.coming-soon-box h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.coming-soon-box p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.coming-soon-box p:last-child {
    margin-bottom: 0;
}

/* Request testimonial card */
.request-testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
    margin: 48px auto 0;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.request-testimonial-card h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.request-testimonial-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-header {
        padding: 60px 0 40px;
    }
    
    .testimonials-page-section {
        padding: 40px 0 60px;
    }
    
    .coming-soon-card {
        padding: 32px 24px;
        margin: 0 10px 32px;
    }
    
    .coming-soon-card h2 {
        font-size: 28px;
    }
    
    .request-testimonial-card {
        padding: 32px 24px;
        margin: 32px 10px 0;
    }
    
    .request-testimonial-card h3 {
        font-size: 24px;
    }
}

/* Testimonials showcase */
.testimonials-showcase {
    margin: 48px auto;
    max-width: 800px;
}

/* Individual testimonial box */
.testimonial-box {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Quote marks styling */
.quote-mark {
    font-size: 72px;
    line-height: 1;
    color: var(--text-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    display: block;
}

/* Opening quote mark */
.quote-mark.opening {
    margin-bottom: -20px;
}

/* Closing quote mark */
.quote-mark.closing {
    text-align: right;
    margin-top: -20px;
    margin-bottom: 16px;
}


/* Testimonial text */
.testimonial-text {
    font-style: italic;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Testimonial author */
.testimonial-author {
    text-align: right;
    font-weight: 700;
    font-style: normal;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-showcase {
        margin: 32px 10px;
    }
    
    .testimonial-box {
        padding: 32px 24px;
    }
    
    .quote-mark {
        font-size: 56px;
    }
    
    .quote-mark.opening {
        margin-bottom: -16px;
    }

    .quote-mark.closing {
        margin-top: -16px;
        margin-bottom: 12px;
    }
    
    .testimonial-text {
        font-size: 16px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-box {
        padding: 24px 40px;
    }
    
    .quote-mark {
        font-size: 48px;
    }
    
    .testimonial-text {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 480px) {
    .coming-soon-card h2 {
        font-size: 20px;
    }
    
    .coming-soon-card p,
    .request-testimonial-card p {
        font-size: 16px;
    }
}

/* ===========================
   Mobile Navigation Menu 
   =========================== */

/* Mobile nav menu (hidden by default) */
.mobile-nav-menu {
    display: none;
}

/* Show mobile menu structure on mobile devices */
@media (max-width: 768px) {
    /* Hide desktop nav menu */
    .nav-menu {
        display: none;
    }
    
    /* Mobile menu container */
    .mobile-nav-menu {
        display: block;
        position: fixed;
        top: 72px; /* Height of navbar */
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        transform: translateY(-120%); /* Start hidden above viewport */
        transition: transform 0.3s ease;
        z-index: 999;
        border-top: 1px solid var(--border-light);
    }
    
    /* When menu is active, slide it down */
    .mobile-nav-menu.active {
        transform: translateY(0);
    }
    
    /* Mobile menu styling */
    .mobile-nav-menu {
        padding: 24px;
    }
    
    .mobile-nav-menu li {
        display: block;
        margin-bottom: 8px;
        opacity: 0;
        transform: translateX(-20px);
    }
    
    /* Animate menu items when active */
    .mobile-nav-menu.active li {
        animation: slideInRight 0.3s ease-out forwards;
    }
    
    .mobile-nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-menu a:hover {
        background: var(--bg-secondary);
        transform: translateX(4px);
    }
    
    .mobile-nav-menu a.active {
        background: var(--bg-secondary);
        color: var(--primary-color);
        font-weight: 600;
    }
    
    /* Special styling for Schedule button in mobile menu */
    .mobile-nav-menu a[href="schedule.html"] {
        background: var(--primary-color);
        color: white;
        margin-top: 16px;
        text-align: center;
        font-weight: 600;
    }
    
    .mobile-nav-menu a[href="schedule.html"]:hover {
        background: var(--primary-dark);
        transform: translateX(0) scale(1.02);
    }
}

/* Mobile menu toggle button styles when active */
.mobile-menu-toggle.active {
    background: var(--primary-dark);
    transform: scale(0.95);
}

/* Animation delays for menu items */
.mobile-nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInRight {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Optional: Add hamburger icon animation */
.mobile-menu-toggle {
    position: relative;
}

/* You can add a hamburger icon inside the button */
.mobile-menu-toggle::before {
    content: '☰';
    margin-right: 4px;
    font-size: 20px;
    vertical-align: middle;
}

.mobile-menu-toggle.active::before {
    content: '✕';
}