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

:root {
    /* Fresh & Vibrant Color Palette */
    /* --primary-color: #65a30d; */
    --primary-color: #BBC536;
    /* --primary-light: #84cc16; */
    --primary-light: #dde56e;
    --primary-dark: #4d7c0f;
    --primary-ultra-light: #ecfccb;
    /* --secondary-color: #0ea5e9; */
    --secondary-color: #43B2C6;
    /* --secondary-light: #38bdf8; */
    --secondary-light: #65bccb;
    /* --secondary-dark: #0284c7; */
    --secondary-dark: #43B2C6;
    /* --accent-color: #eab308; */
    --accent-color: #FFDE59;
    --accent-light: #facc15;
    --accent-pink: #ec4899;
    --accent-emerald: #10b981;
    
    /* Enhanced Neutrals */
    --white: #ffffff;
    --gray-25: #fcfcfd;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Clean & Elegant Gradients */
    --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    --gradient-card: linear-gradient(145deg, var(--white) 0%, #f0f9ff 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 255, 0.6) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, #0ea5e9 0px, transparent 50%), 
                     radial-gradient(at 80% 0%, #38bdf8 0px, transparent 50%), 
                     radial-gradient(at 0% 50%, #0284c7 0px, transparent 50%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* --font-primary: "Gill Sans", "Gill Sans MT",
                Calibri, "Trebuchet MS", sans-serif; */
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
    --element-spacing: 2rem;
    
    /* Enhanced Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.03);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 0 1px rgb(14 165 233 / 0.05), 0 1px 3px 0 rgb(14 165 233 / 0.1), 0 4px 6px 0 rgb(14 165 233 / 0.05);
    --shadow-colored: 0 10px 25px -5px rgb(14 165 233 / 0.2), 0 8px 10px -6px rgb(14 165 233 / 0.1);
    
    /* Enhanced Border Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Animation Variables */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    overflow-x: hidden;
}

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

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

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

.nav-logo h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.nav-logo-img {
    width: 300px;
    object-fit: contain;
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.55rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-base);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0.25rem;
    left: 50%;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 0;
}

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Enhanced Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.1;
    z-index: 0;
}

.hero-primrose {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.primrose-accent {
    width: 200px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    filter: drop-shadow(0 8px 16px rgba(14, 165, 233, 0.3));
    animation: gentle-sway 4s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: rotate(2deg) scale(1.02);
        opacity: 0.8;
    }
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Centered Text-Focused Hero */
.hero-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
}

.hero-text-centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-large {
    font-family: var(--font-primary);
    font-size: 5rem;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title-large .highlight {
    color: var(--gray-800);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0.1em 0.3em;
    border-radius: var(--radius-lg);
    background: transparent;
}

.hero-title-large .highlight::before {
    content: '';
    position: absolute;
    top: 0.15em;
    left: 0;
    width: 0%;
    height: 1.1em;
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    z-index: -1;
    animation: highlight-expand 2.5s ease-out 1s forwards;
}

.hero-title-large .highlight::after {
    content: 'confidence and clarity';
    position: absolute;
    top: 0.1em;
    left: 0.3em;
    right: 0.3em;
    color: var(--white);
    font-weight: 700;
    opacity: 0;
    text-align: center;
    animation: text-appear 0.2s ease-out 3.2s forwards;
}

@keyframes highlight-expand {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes text-appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-subtitle-large {
    font-size: 2rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.hero-description-large {
    font-size: 1.375rem;
    color: var(--gray-600);
    margin-bottom: 3.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
}

.hero-buttons-large {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 3rem;
}

.hero-buttons-large .btn {
    width: 200px;
    flex-shrink: 0;
}

.connection-illustration {
    width: 350px;
    height: 350px;
    position: relative;
}

.connection-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(14, 165, 233, 0.15));
}

/* Parent figure animations */
.connection-svg .parent-figure {
    animation: gentle-pulse 4s ease-in-out infinite;
    transform-origin: center;
}

/* Child figure animations */
.connection-svg .child-figure-1 {
    animation: gentle-pulse 4s ease-in-out infinite 0.5s;
    transform-origin: center;
}

.connection-svg .child-figure-2 {
    animation: gentle-pulse 4s ease-in-out infinite 1s;
    transform-origin: center;
}

/* Connection line animations */
.connection-svg .connection-1 {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: draw-connection 3s ease-out 1s forwards;
}

.connection-svg .connection-2 {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: draw-connection 2.5s ease-out 1.5s forwards;
}

.connection-svg .connection-3 {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-connection 2s ease-out 2s forwards;
}

/* Support element animations */
.connection-svg .support-1 {
    animation: float-support 3s ease-in-out infinite;
}

.connection-svg .support-2 {
    animation: float-support 3s ease-in-out infinite 0.7s;
}

.connection-svg .support-3 {
    animation: float-support 3s ease-in-out infinite 1.4s;
}

.connection-svg .support-4 {
    animation: float-support 3s ease-in-out infinite 2.1s;
}

/* Heart connection animation */
.connection-svg .heart-connection {
    animation: heart-glow 2.5s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes gentle-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes draw-connection {
    0% {
        stroke-dashoffset: 150;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes float-support {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-6px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes heart-glow {
    0% { 
        opacity: 0.6;
        transform: scale(1);
    }
    100% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0.8;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
    animation: bounce 2s infinite;
    border: 2px solid var(--secondary-color);
    transition: all var(--transition-base);
}

.scroll-indicator:hover .scroll-arrow {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hide scroll hint when scrolled past hero */
.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* Interactive Quiz Section */
.quiz-section {
    background: var(--white);
    padding: var(--section-padding);
    position: relative;
    z-index: 100;
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-card);
    border-radius: var(--radius-3xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quiz-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.progress-bar {
    flex-grow: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 16.67%; /* Start at 1/6 */
    transition: width 0.5s ease;
    border-radius: var(--radius-full);
}

.progress-text {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
    white-space: nowrap;
}

.quiz-question {
    display: none;
    animation: slideIn 0.5s ease;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
}

.quiz-options {
    display: grid;
    gap: 1rem;
}

.quiz-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.quiz-option:hover {
    border-color: var(--secondary-color);
    background: var(--gradient-glass);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quiz-option.selected {
    border-color: var(--secondary-color);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
}

.option-letter {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.quiz-option.selected .option-letter {
    background: var(--white);
    color: var(--secondary-color);
}

.option-text {
    flex-grow: 1;
    font-weight: 500;
}

/* Quiz Results */
.quiz-results {
    text-align: center;
    animation: slideIn 0.5s ease;
}

.result-content {
    background: var(--gradient-glass);
    padding: 3rem;
    border-radius: var(--radius-3xl);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-colored);
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.result-content h3 {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.result-description {
    text-align: left;
    margin-bottom: 2rem;
}

.result-description h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.result-description p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.result-description ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.result-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

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

.result-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.result-cta p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

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

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
    background: var(--gradient-glass);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary-color);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-full {
    width: 100%;
}

/* Button Variants */
.btn-ghost {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--gray-200);
    box-shadow: none;
}

.btn-ghost:hover {
    background: var(--gray-50);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Enhanced Services Section */
.services {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    position: relative;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-3xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Image Styling */
.service-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-colored);
    transition: all var(--transition-base);
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-base);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 165, 233, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

/* Regular Service Icon (for cards without images) */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-colored);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl);
}

.service-icon svg,
.service-overlay .service-icon svg {
    width: 36px;
    height: 36px;
}

.service-overlay .service-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    background: var(--white);
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.125rem;
}

.services-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
}

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

.about-greeting {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.certification {
    margin-bottom: 2rem;
}

.cert-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cert-text {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.cert-subtext {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.about-details p {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.philosophy-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.philosophy-highlight p {
    color: var(--gray-700);
    font-size: 1.125rem;
    margin-bottom: 0;
    font-style: italic;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.tali-photo-container {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    transition: all var(--transition-base);
}

.tali-photo-container:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-colored);
}

.tali-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all var(--transition-base);
}


/* Enhanced Certification Section */
.cert-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    color: var(--gray-800);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: left;
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--secondary-color);
    max-width: 500px;
    margin: 0 auto;
}

.cert-badge a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.cert-badge a:hover {
    opacity: 0.8;
}

.cert-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.cert-text-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cert-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.cert-subtext {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.cert-badge-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    flex-shrink: 0;
}

/* Sessions and Pricing Section */
.sessions-pricing {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.sessions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sessions-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sessions-info p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.consultation-info {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-top: 2rem;
}

.consultation-info p {
    margin-bottom: 1rem;
}

.consultation-card {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    margin-bottom: 2rem;
}

.consultation-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.consultation-duration {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.consultation-purpose {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.consultation-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.consultation-benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

.consultation-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.125rem;
}

.pricing-note {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.pricing-note p {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: var(--white);
    padding: var(--section-padding);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex-grow: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
}

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

.faq-answer {
    padding: 0 2rem 2rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

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

.topics-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

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

/* Parent Questions */
.parent-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.questions-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.questions-column li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
}

.questions-column li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.125rem;
}

/* CTA Buttons in FAQ */
.pricing-cta,
.consultation-cta {
    margin-top: 1.5rem;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    border-radius: var(--radius-2xl);
    padding: 0 60px;
}

.testimonial-slides {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin-bottom: 1rem;
}

.testimonial-slides::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: progress 10s linear infinite;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    z-index: 5;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--primary-light);
    font-family: var(--font-display);
    opacity: 0.3;
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-content cite {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-content cite strong {
    color: var(--gray-800);
    font-size: 1.125rem;
}

.testimonial-content cite span {
    color: var(--gray-500);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--gray-600);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

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

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 21;
}

.dot:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.testimonial-carousel:hover .testimonial-slides::before {
    animation-play-state: paused;
}

/* Teaching Experience Section */
.teaching-experience {
    background: var(--gray-50);
    padding: 4rem 0;
    margin-top: 4rem;
}

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

.teaching-image {
    display: flex;
    justify-content: center;
}

.teaching-photo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.teaching-photo:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-colored);
}

.teaching-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.teaching-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--gradient-hero);
}

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

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--gray-700);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Enhanced Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Floating animations for decorative elements */
@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--shadow-colored); }
    50% { box-shadow: var(--shadow-2xl); }
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .animated-gradient {
        color: var(--secondary-color);
        background: none;
    }
}

/* Enhanced hover states */
.hover-lift {
    transition: all var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hover-glow {
    transition: all var(--transition-base);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-content-centered {
        min-height: 50vh;
        padding: 2rem 0;
    }

    .hero-title-large {
        font-size: 3rem;
    }

    .hero-subtitle-large {
        font-size: 1.5rem;
    }

    .hero-description-large {
        font-size: 1.125rem;
    }

    .hero-buttons-large {
        gap: 1.5rem;
    }

    .scroll-hint {
        bottom: -3rem;
    }

    .scroll-arrow {
        width: 45px;
        height: 45px;
    }

    .scroll-arrow svg {
        width: 22px;
        height: 22px;
    }

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

    .service-image {
        width: 100px;
        height: 100px;
    }

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

    .tali-photo-container {
        width: 280px;
        height: 360px;
    }

    .teaching-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .teaching-photo {
        max-width: 350px;
        height: 250px;
    }

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

    .about-greeting {
        font-size: 1.75rem;
    }

    .philosophy-highlight {
        padding: 1.5rem;
    }

    .sessions-pricing {
        padding: 2rem;
    }

    .consultation-card {
        padding: 2rem;
    }

    /* FAQ responsive styles */
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .parent-questions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

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

    /* Testimonial carousel mobile adjustments */
    .testimonial-carousel {
        padding: 0 50px;
    }

    .testimonial-slide {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    /* Quiz responsive styles */
    .quiz-container {
        padding: 2rem;
    }

    .quiz-question h3 {
        font-size: 1.25rem;
    }

    .quiz-option {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .option-letter {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .progress-text {
        font-size: 0.8rem;
    }

    .result-content {
        padding: 2rem;
    }

    .result-content h3 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    :root {
        --section-padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-content-centered {
        min-height: 40vh;
        padding: 1.5rem 0;
    }

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

    .hero-subtitle-large {
        font-size: 1.25rem;
    }

    .hero-description-large {
        font-size: 1rem;
    }

    .hero-buttons-large {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons-large .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-slide {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }

    .testimonial-slide::before {
        font-size: 4rem;
        top: -0.5rem;
        left: 1rem;
    }

    .testimonial-content blockquote {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .hero-photo-container {
        width: 250px;
        height: 250px;
    }

    .tali-photo-container {
        width: 200px;
        height: 200px;
    }

    .service-image {
        width: 80px;
        height: 80px;
    }

    .connection-illustration {
        width: 220px;
        height: 220px;
    }

    .scroll-hint {
        bottom: -2rem;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

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

    .cert-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        max-width: 300px;
    }

    .cert-logo {
        width: 50px;
        height: 50px;
    }

    .cert-badge-icon {
        width: 50px;
        height: 50px;
    }

    .tali-photo-container {
        width: 240px;
        height: 300px;
    }

    .teaching-photo {
        max-width: 300px;
        height: 200px;
    }

    /* About section mobile styles */
    .about-greeting {
        font-size: 1.5rem;
    }

    .about-intro {
        font-size: 1.125rem;
    }

    .about-details p {
        font-size: 1rem;
    }

    .philosophy-highlight {
        padding: 1.25rem;
    }

    .philosophy-highlight p {
        font-size: 1rem;
    }

    .sessions-pricing {
        padding: 1.5rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .sessions-description {
        font-size: 1rem;
    }

    .sessions-info p {
        font-size: 1rem;
    }

    .consultation-card {
        padding: 1.5rem;
    }

    .consultation-card h4 {
        font-size: 1.25rem;
    }

    .consultation-duration {
        font-size: 1rem;
    }

    .consultation-purpose {
        font-size: 1rem;
    }

    .consultation-benefits li {
        font-size: 0.9rem;
    }

    .consultation-info {
        padding: 1.5rem;
    }

    /* FAQ mobile styles */
    .faq-question h3 {
        font-size: 1.125rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .topics-list li,
    .questions-column li {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .testimonial-carousel {
        padding: 0 40px;
    }

    .carousel-prev {
        left: 2px;
    }

    .carousel-next {
        right: 2px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

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

    .carousel-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

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

    /* Quiz mobile styles */
    .quiz-container {
        padding: 1.5rem;
    }

    .quiz-question h3 {
        font-size: 1.125rem;
    }

    .quiz-option {
        padding: 1rem;
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .option-letter {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .quiz-progress {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .progress-bar {
        margin-right: 0;
    }

    .progress-text {
        text-align: center;
        font-size: 0.85rem;
    }

    .result-content {
        padding: 1.5rem;
    }

    .result-content h3 {
        font-size: 1.5rem;
    }

    .result-description p {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gray-600: #000000;
        --gray-700: #000000;
        --gray-800: #000000;
    }
}
