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

/* Fonts via Adobe Fonts */
/* Bogart for main headings (h1, h2) - matches logo */
/* Aktiv Grotesk for body and subheadings */

:root {
    /* Primary colors - Black and White */
    --primary-dark: #0a0a0a;
    --lighter-bg: #ffffff;

    /* Accent palette */
    --accent-1: #006d77;
    --accent-2: #83c5be;
    --accent-3: #F8958C;
    --accent-4: #05299e;
    --accent-5: #0c1b33;

    /* Neutral grays for borders and subtle elements */
    --secondary-dark: #1a1a1a;
    --accent-subtle: #666666;
    --light-bg: #fafafa;
    --text-primary: #0a0a0a;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --border-color: #e5e5e5;
    --border-subtle: #f0f0f0;

    /* Legacy variables for compatibility */
    --primary-purple: #0a0a0a;
    --primary-purple-dark: #000000;
    --secondary-purple: #1a1a1a;
    --accent-teal: #006d77;
    --accent-pink: #05299e;
    --accent-orange: #0c1b33;
    --accent-green: #83c5be;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --glow-purple: rgba(10, 10, 10, 0.1);
}

body {
    font-family: 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    scroll-behavior: smooth;
    background: var(--lighter-bg);
    font-weight: 400;
    letter-spacing: -0.01em;
    font-feature-settings: 'ss01' 1, 'liga' 1;
    -webkit-font-feature-settings: 'ss01' 1, 'liga' 1;
}

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

/* Typography */
h1, h2 {
    font-family: "akzidenz-grotesk-next-pro", 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

h3, h4 {
    font-family: 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: var(--secondary-dark);
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 32px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-svg path {
    fill: var(--primary-dark);
}

.nav-logo:hover .logo-svg {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--lighter-bg) 0%, #f5f7ff 50%, var(--lighter-bg) 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    z-index: 0;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.hero-title {
    font-family: 'bogart', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(7rem, 12vw, 9rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
    animation: heroTitleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-subtitle {
    font-size: clamp(0.75rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    justify-content: center;
}

/* Intro Section */
.intro {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0F3B5C 0%, #1A5F7A 100%);
    position: relative;
    z-index: 2;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-family: 'bogart', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.6;
    color: var(--lighter-bg);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Logos Section */
.logos-section {
    padding: 4rem 0;
    background: var(--lighter-bg);
    position: relative;
    z-index: 3;
}

.logos-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    background: white;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    scroll-behavior: smooth;
}

.logos-container::-webkit-scrollbar {
    display: none;
}

.logos-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, white, transparent);
    z-index: 10;
    pointer-events: none;
}

.logos-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, white, transparent);
    z-index: 10;
    pointer-events: none;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: fit-content;
    transition: transform 0.3s ease;
}

.logos-scroll-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0 1rem;
    flex-shrink: 0;
    margin-left: auto;
    transition: opacity 0.3s ease;
}

.logos-scroll-btn:hover {
    opacity: 0.6;
}

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

.logos-track img,
.logos-track svg {
    height: 50px;
    width: auto;
    opacity: 0.85;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.logos-track img:hover,
.logos-track svg:hover {
    opacity: 1;
}

/* Section Headers */
.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-align: left;
    padding-left: 3rem;
    position: relative;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 40px;
    background: var(--accent-1);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    text-align: left;
    padding-left: 3rem;
}

/* Section-specific accent colors */
.pathways .section-header h2::before {
    background: var(--accent-3);
}

.additional-offerings .section-header h2::before {
    background: var(--accent-4);
}

.professional-services .section-header h2::before {
    background: var(--accent-2);
}

.spotlight .section-header h2::before {
    background: var(--accent-1);
}

.contact .section-header h2::before {
    display: none;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--lighter-bg);
    position: relative;
    z-index: 2;
}

.about-image {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.stat p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* AI Fluency Section */
.ai-fluency {
    padding: 6rem 0;
    background: var(--lighter-bg);
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
}

.ai-fluency-content {
    display: block;
}

.ai-fluency-label {
    font-family: 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
    padding-left: 3rem;
    position: relative;
}

.ai-fluency-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 40px;
    background: var(--accent-2);
    border-radius: 2px;
}

.ai-fluency-title {
    font-family: "akzidenz-grotesk-next-pro", 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
    text-align: left;
    padding-left: 3rem;
}

.ai-fluency-content .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.ai-fluency-content .about-text .ai-fluency-definition {
    font-family: 'bogart', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.6;
    color: white;
    background: var(--accent-2);
    padding: 2.5rem 2rem 2.5rem 3rem;
    margin: 1.5rem 0 2rem;
    text-align: left;
    max-width: none;
    border-radius: 24px;
}

.about-text-below {
    max-width: 800px;
    margin: 4rem 0 0;
    text-align: left;
    padding-left: 3rem;
}

/* Pathways Section */
.pathways {
    background: var(--light-bg);
    position: relative;
    z-index: 3;
}

.pathways .section-header {
    padding: 6rem 0 2rem;
}

.pathway-item {
    padding: 6rem 0;
}

.pathway-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.pathway-content.pathway-reverse {
    direction: rtl;
}

.pathway-content.pathway-reverse > * {
    direction: ltr;
}

.pathway-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pathway-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pathway-text {
    padding: 0;
    padding-left: 3rem;
}

.pathway-title {
    font-family: "akzidenz-grotesk-next-pro", 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
}

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

.pathway-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2rem 0;
}

.pathway-features li {
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0.5rem 0 0.5rem 1.75rem;
    color: var(--text-secondary);
    position: relative;
}

.pathway-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-secondary);
    font-weight: 600;
}

.pathway-meta {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .pathway-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pathway-content.pathway-reverse {
        direction: ltr;
    }
}

/* Spotlight Showcase Section */
.spotlight {
    background: #e8f4f0;
    position: relative;
    z-index: 3;
}

.spotlight .section-header {
    padding: 6rem 0 1.5rem;
}

.spotlight .section-header h2 {
    text-align: left;
    margin-bottom: 3rem;
}

.spotlight .section-header h2::before {
    top: 0;
}

.spotlight-content {
    margin-bottom: 6rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.spotlight-text {
    margin-bottom: 0;
    padding-left: 3rem;
}

.spotlight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 0;
}

.spotlight-text p:first-child {
    margin-bottom: 1.5rem;
}

.spotlight-text strong {
    color: var(--primary-dark);
    font-weight: 500;
}

.spotlight-carousel {
    width: 100%;
}

.spotlight-video {
    width: 100%;
    max-width: 100%;
}

.spotlight-video video {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
}

@media (max-width: 1024px) {
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .spotlight-content {
        gap: 2rem;
    }
}

/* Media Carousel */
.media-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--light-bg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carousel-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
}

.carousel-video video {
    width: auto;
    height: 100%;
    max-width: 100%;
    display: block;
}

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

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 0;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--primary-dark);
}

.indicator:hover {
    background: var(--primary-dark);
    opacity: 0.7;
}

/* Spotlight Testimonials */
.spotlight-testimonials {
    margin-top: 6rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonials-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin: 0 0 3rem 0;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
    font-family: "akzidenz-grotesk-next-pro", 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-quote p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.author-info strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
}

.spotlight-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 1rem;
    }

    .carousel-next {
        right: 1rem;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .spotlight-text p {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional School Offerings Section */
.additional-offerings {
    padding: 8rem 0;
    background: var(--lighter-bg);
    position: relative;
    z-index: 10;
}

.offerings-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.offering-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Card 1: AI All-Day - Teal accent */
.offering-card-1 .offering-header-section {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    padding: 2.5rem 2rem;
    min-height: 260px;
    display: flex;
    align-items: center;
}

/* Card 2: AI All-Staff - Coral accent */
.offering-card-2 .offering-header-section {
    background: linear-gradient(135deg, var(--accent-5) 0%, var(--accent-4) 100%);
    padding: 2.5rem 2rem;
    min-height: 260px;
    display: flex;
    align-items: center;
}

/* Card 3: Navigation - Teal accent */
.offering-card-3 .offering-header-section {
    background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-1) 100%);
    padding: 2.5rem 2rem;
    min-height: 260px;
    display: flex;
    align-items: center;
}

/* Card 4: Keynotes & Short Workshops - Coral to Teal accent */
.offering-card-4 .offering-header-section {
    background: linear-gradient(135deg, var(--accent-5) 0%, var(--accent-1) 100%);
    padding: 2.5rem 2rem;
    min-height: 260px;
    display: flex;
    align-items: center;
}

.offering-header-content {
    max-width: 100%;
    padding-right: 1rem;
}

.offering-title {
    font-family: 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.offering-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.offering-image-section {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.offering-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offering-description {
    padding: 2rem;
    padding-left: calc(2rem + 3rem);
    background: white;
}

.offering-description p {
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .additional-offerings {
        padding: 6rem 0;
    }

    .offerings-list {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .offering-title {
        font-size: 2.8rem;
    }

    .offering-tagline {
        font-size: 0.95rem;
    }

    .offering-image-section {
        height: 220px;
    }

    .offering-description p {
        font-size: 0.95rem;
    }

    .professional-services {
        padding: 6rem 0;
    }

    .recent-engagements {
        margin-top: 4rem;
    }

    .recent-engagements h3 {
        font-size: 1.4rem;
    }

    .engagements-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .engagements-list li {
        padding: 1.5rem;
    }
}

/* Professional Services Section */
.professional-services {
    padding: 8rem 0;
    background: var(--lighter-bg);
    position: relative;
    z-index: 10;
}

.recent-engagements {
    margin-top: 6rem;
}

.recent-engagements h3 {
    font-family: "akzidenz-grotesk-next-pro", 'aktiv-grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.engagements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.engagement-card {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.engagement-title {
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-bg);
    line-height: 1.4;
}

.engagement-card-1 .engagement-title {
    background: var(--accent-1);
}

.engagement-card-2 .engagement-title {
    background: var(--accent-2);
}

.engagement-card-3 .engagement-title {
    background: var(--accent-3);
}

.engagement-card-4 .engagement-title {
    background: var(--accent-4);
}

.engagement-card-5 .engagement-title {
    background: var(--accent-5);
}

.engagement-description {
    padding: 1.5rem;
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

.engagement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 10;
}

.contact-content {
    display: block;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-item a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 400;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Bios Section */
.bios-section {
    padding: 6rem 0;
    background: var(--lighter-bg);
}

.bios-intro {
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.bios-intro h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.bios-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    color: var(--text-primary);
}

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

.bio-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bio-card h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.bio-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 300;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    padding-left: 3rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'aktiv-grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

.form-input,
.form-textarea {
    font-family: 'aktiv-grotesk', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--lighter-bg);
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(0, 109, 119, 0.1);
}

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

.form-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.form-button-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-form .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
    border-radius: 4px;
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    padding-left: 3rem;
}

.form-success h3 {
    font-size: 1.5rem;
    color: #15803d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-success p {
    color: #166534;
    font-size: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 6rem 0;
    background: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    padding-left: 3rem;
}

.thank-you-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.thank-you-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.thank-you-content .btn {
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-svg {
    height: 28px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo-svg path {
    fill: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    padding-left: 0;
    font-weight: 300;
}

.footer-section a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #64748b;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 300;
}

.footer-social a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

.footer-social a:hover::after {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        height: 70px;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .logo-svg {
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 3rem 0;
        border-top: 1px solid var(--border-color);
    }

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

    .nav-link {
        color: var(--text-secondary);
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .bar {
        background: var(--primary-dark);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .about-image {
        margin: 0 0 3rem;
        border-radius: 16px;
    }

    .workshop-hero-image {
        margin: 0 1rem 3rem;
        border-radius: 16px;
    }

    .facilitator-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .facilitator-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .facilitator-credentials {
        grid-template-columns: 1fr;
    }

    .testimonials-grid,
    .resources-grid,
    .calendar-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Animations */
@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes lineSlideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.service-card,
.stat {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* AI-Inspired Neural Network Background */
.neural-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 20% 50%, var(--primary-purple) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--accent-teal) 1px, transparent 1px),
        radial-gradient(circle at 40% 20%, var(--accent-pink) 1px, transparent 1px),
        radial-gradient(circle at 90% 40%, var(--primary-purple) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 120px 120px;
    pointer-events: none;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.hero-stat:hover {
    background: var(--light-bg);
    border-color: var(--primary-dark);
    transform: translateX(4px);
}

.hero-stat strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
}

.hero-stat span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Workshop Features & Meta */
.workshop-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.workshop-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.workshop-features li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: normal;
}

.workshop-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.workshop-meta span:before {
    content: "⏱";
    margin-right: 0.5rem;
}

.workshop-meta span:last-child:before {
    content: "👥";
}

.service-card.featured {
    position: relative;
    background: var(--lighter-bg);
    border: 1.5px solid var(--primary-dark);
}

.featured-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    background: var(--primary-dark);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Framework List */
.framework-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.framework-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.framework-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: normal;
}

.framework-list strong {
    color: var(--primary-dark);
    font-weight: 500;
}

/* CTA Inline */
.cta-inline {
    margin-top: 2rem;
}

/* Clients Section */
.clients {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 4;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.logo-placeholder {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo:hover .logo-placeholder {
    opacity: 1;
}

/* Impact Highlight */
.impact-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

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

.impact-stat strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.impact-stat span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: var(--lighter-bg);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.testimonials .section-header h2 {
    color: var(--primary-dark);
}

.testimonials .section-header p {
    color: var(--text-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 300;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--border-color);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Facilitator Section */
.facilitator {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 6;
}

.facilitator-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.facilitator-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.facilitator-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.facilitator-text h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.facilitator-text h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.facilitator-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.facilitator-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

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

.credential-item strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.credential-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Resources Section */
.resources {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 7;
}

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

.resource-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.resource-download {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.resource-download:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Workshop Calendar Section */
.workshop-calendar {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 8;
}

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

.calendar-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-dark);
}

.calendar-date {
    background: var(--primary-dark);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.date-day {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
}

.date-year {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.calendar-details {
    padding: 1.5rem;
}

.calendar-details h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.calendar-time,
.calendar-location,
.calendar-spots {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.calendar-spots {
    color: var(--text-secondary);
    font-weight: 500;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.calendar-note {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    margin-top: 2rem;
}

.calendar-note p {
    color: var(--text-secondary);
    margin: 0;
}

.calendar-note strong {
    color: var(--text-primary);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 9;
}

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

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 2px solid var(--primary-dark);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
}

/* Contact Form Updates */
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.booking-link {
    margin-top: 2rem;
}

.contact-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-cta p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Updates */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-description {
    color: #a0aec0;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .facilitator-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .facilitator-credentials {
        grid-template-columns: 1fr;
    }

    .testimonials-grid,
    .resources-grid,
    .calendar-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .bios-grid {
        grid-template-columns: 1fr;
    }

    .bios-intro {
        padding-left: 3rem;
    }
}