/* Kingdom Kids - Wonder Ink Inspired Design System */
/* Mobile-first, accessible, playful design */

/* Professional Design System */
:root {
    /* Professional Color Palette */
    --primary: #2563EB;     /* Professional Blue */
    --secondary: #059669;   /* Professional Green */
    --accent: #DC2626;      /* Professional Red */
    --warning: #D97706;     /* Professional Orange */
    --info: #0891B2;        /* Professional Cyan */
    --success: #16A34A;     /* Professional Green */
    
    /* Neutral Colors */
    --bg: #FAFAFA;          /* Light gray background */
    --card: #FFFFFF;
    --dark: #1F2937;        /* Dark gray */
    --text: #374151;        /* Dark text */
    --text-light: #6B7280;  /* Light text */
    --border: #E5E7EB;      /* Light border */
    
    /* Professional Gradients */
    --gradient-1: linear-gradient(135deg, #2563EB, #1D4ED8);
    --gradient-2: linear-gradient(135deg, #059669, #047857);
    --gradient-3: linear-gradient(135deg, #DC2626, #B91C1C);
    --gradient-4: linear-gradient(135deg, #0891B2, #0E7490);

    /* Layout & Effects */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --maxw: 1200px;
    --gutter: 24px;

    /* Professional Type Scale */
    --fs-hero: clamp(36px, 5vw, 48px);
    --fs-h1: clamp(28px, 4vw, 36px);
    --fs-h2: clamp(24px, 3vw, 30px);
    --fs-h3: clamp(20px, 2.5vw, 24px);
    --fs-base: 16px;
    --fs-small: 14px;

    /* Professional Typography */
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-xl: 0 8px 32px rgba(0,0,0,0.15);
}

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Clean background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--kk-brand);
    color: var(--kk-white);
    padding: var(--space-sm);
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text);
}

h1 { 
    font-size: var(--fs-h1);
    font-weight: 700;
    color: var(--primary);
}

h2 { 
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--text);
}

h3 { 
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--primary);
}

h4 { font-size: 1.25rem; font-weight: 600; color: var(--text); }
h5 { font-size: 1.125rem; font-weight: 600; color: var(--text-light); }
h6 { font-size: 1rem; font-weight: 600; color: var(--text-light); }

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--kk-brand);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: var(--kk-accent);
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Utility Classes */
.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.muted {
    color: var(--muted);
}

.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--brand);
    color: var(--card);
    border-radius: var(--radius-full);
    font-size: var(--fs-small);
    font-weight: 600;
}

/* Video Container */
.ratio-16x9 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.ratio-16x9 iframe,
.ratio-16x9 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Lazy loading styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Professional Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-base);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    min-width: 44px;
    line-height: 1.2;
    font-family: var(--font-body);
    position: relative;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn--primary {
    background: var(--primary);
    color: var(--card);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    box-shadow: var(--shadow-md);
    color: var(--card);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn--accent {
    background: var(--secondary);
    color: var(--card);
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.btn--accent:hover {
    background: #047857;
    border-color: #047857;
    box-shadow: var(--shadow-md);
    color: var(--card);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--ghost:hover {
    background: var(--primary);
    color: var(--card);
    text-decoration: none;
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn--outline:hover {
    background: var(--bg);
    color: var(--text);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Cards */
.card {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

/* Header */
.site-header {
    background-color: var(--kk-card);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--kk-ink);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo:hover {
    color: var(--kk-brand);
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
.main-nav {
    position: relative;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 101;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--kk-ink);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--kk-ink);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--kk-card);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: var(--kk-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--kk-border);
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--kk-light-gray);
    color: var(--kk-brand);
    text-decoration: none;
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-cta {
    margin-top: var(--space-sm);
    margin-left: var(--space-md);
}

/* Main content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: var(--space-2xl) 0;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--kk-border);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: var(--space-sm);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: var(--space-sm);
    color: var(--kk-gray);
}

.breadcrumb-item.current {
    color: var(--kk-gray);
}

/* Hero Section */
.hero {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--kk-brand) 0%, var(--kk-accent) 100%);
    color: var(--kk-white);
    margin-bottom: var(--space-3xl);
}

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

.hero-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: 1;
    opacity: 0.3;
}

.hero-blob img {
    width: 300px;
    height: auto;
}

.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.spark, .star {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.spark-1 {
    top: 20%;
    right: 20%;
    animation: float 3s ease-in-out infinite;
}

.star-1 {
    top: 60%;
    left: 10%;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    color: var(--kk-white);
}

.hero-line-1 {
    display: block;
    font-size: 0.6em;
    font-weight: 500;
    opacity: 0.9;
}

.hero-line-2 {
    display: block;
    font-size: 1em;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Lesson highlights in hero */
.lesson-highlights {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    backdrop-filter: blur(10px);
}

.lesson-highlight {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.lesson-highlight:last-child {
    margin-bottom: 0;
}

/* Journey Section */
.journey-section {
    padding: var(--space-3xl) 0;
    background: var(--kk-bg);
}

.journey-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.journey-header h2 {
    font-size: 2.5rem;
    color: var(--kk-ink);
    margin-bottom: var(--space-md);
}

.journey-header p {
    font-size: 1.2rem;
    color: var(--kk-gray);
    max-width: 600px;
    margin: 0 auto;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.journey-card {
    background: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.journey-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--kk-brand) 0%, var(--kk-accent) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.journey-card h3 {
    font-size: 1.5rem;
    color: var(--kk-ink);
    margin-bottom: var(--space-md);
}

.journey-card p {
    color: var(--kk-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.journey-link {
    color: var(--kk-brand);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.journey-link:hover {
    color: var(--kk-accent);
    text-decoration: underline;
}

/* Responsive design */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: none;
        display: flex;
        gap: var(--space-md);
        min-width: auto;
    }
    
    .nav-link {
        padding: var(--space-sm) var(--space-md);
        border: none;
        border-radius: var(--radius-full);
    }
    
    .nav-link:hover {
        background-color: var(--kk-light-gray);
    }
    
    .nav-cta {
        margin-top: 0;
        margin-left: var(--space-md);
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .spark, .star {
        animation: none;
    }
    
    .journey-card {
        transition: none;
    }
    
    .btn {
        transition: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --kk-brand: #000080;
        --kk-accent: #FF6600;
        --kk-border: #000000;
    }
    
    .btn {
        border-width: 3px;
    }
    
    .card,
    .journey-card {
        border: 2px solid var(--kk-ink);
    }
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--kk-ink);
}

label.required::after {
    content: ' *';
    color: var(--kk-danger);
}

input, textarea, select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--kk-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--kk-brand);
    box-shadow: 0 0 0 3px rgba(10, 142, 162, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

/* Filters */
.filters-section {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.filters-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.filter-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

/* Lesson cards */
.lessons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.lesson-card {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.lesson-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.lesson-meta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.lesson-meta span {
    background-color: var(--kk-light-gray);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--kk-gray);
}

.lesson-series {
    color: var(--kk-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.lesson-title a {
    color: var(--kk-ink);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.lesson-title a:hover {
    color: var(--kk-brand);
}

.lesson-scripture {
    margin: var(--space-md) 0;
    font-size: 0.9rem;
    color: var(--kk-gray);
}

.lesson-summary {
    margin: var(--space-md) 0;
    line-height: 1.6;
    color: var(--kk-gray);
}

.lesson-highlights {
    margin: var(--space-md) 0;
}

.lesson-actions {
    margin-top: var(--space-lg);
}

/* Calendar */
.calendar-page {
    margin-bottom: var(--space-3xl);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.calendar-nav {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.calendar-container {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.day-header {
    background: linear-gradient(135deg, var(--kk-brand) 0%, var(--kk-accent) 100%);
    color: var(--kk-white);
    padding: var(--space-md);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.calendar-day {
    padding: var(--space-md);
    vertical-align: top;
    border: 1px solid var(--kk-border);
    min-height: 100px;
    position: relative;
}

.day-number {
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.day-number.today {
    background: linear-gradient(135deg, var(--kk-accent) 0%, var(--kk-gold) 100%);
    color: var(--kk-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    display: inline-block;
}

.day-events {
    margin-top: var(--space-sm);
}

.event-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-xs);
    background-color: var(--kk-light-gray);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--kk-ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.event-link:hover {
    background-color: var(--kk-border);
    text-decoration: none;
}

.lesson-link {
    background: linear-gradient(135deg, rgba(10, 142, 162, 0.1) 0%, rgba(91, 192, 235, 0.1) 100%);
    border-left: 3px solid var(--kk-brand);
}

.event-link.event-link {
    background: linear-gradient(135deg, rgba(255, 122, 61, 0.1) 0%, rgba(255, 194, 51, 0.1) 100%);
    border-left: 3px solid var(--kk-accent);
}

.event-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.legend-items {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
}

.legend-icon {
    width: 20px;
    height: 20px;
}

/* FAQ */
.faq-list {
    margin: var(--space-2xl) 0;
}

.faq-item {
    margin-bottom: var(--space-md);
    border: 1px solid var(--kk-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background-color: var(--kk-card);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: var(--font-body);
}

.faq-question:hover {
    background-color: var(--kk-light-gray);
}

.faq-question:focus {
    outline: 2px solid var(--kk-brand);
    outline-offset: -2px;
}

.faq-answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    background-color: var(--kk-light-gray);
    line-height: 1.6;
}

/* Downloads */
.downloads-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.download-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--kk-light-gray);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--kk-ink);
    transition: background-color 0.2s ease;
}

.download-link:hover {
    background-color: var(--kk-border);
    text-decoration: none;
}

.download-icon {
    font-size: 1.5rem;
}

.download-name {
    font-weight: 600;
}

/* Messages */
.success-message,
.error-message {
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.success-message {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: var(--kk-success);
}

.error-message {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: var(--kk-danger);
}

.success-icon,
.error-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    opacity: 0.7;
}

.no-results {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    opacity: 0.5;
}

.no-results h2 {
    color: var(--kk-gray);
    margin-bottom: var(--space-md);
}

/* Admin styles */
.admin-dashboard {
    margin-bottom: var(--space-3xl);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.stat-card {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--kk-brand);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.stat-detail {
    color: var(--kk-gray);
    font-size: 0.9rem;
}

.dashboard-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.action-section h2 {
    margin-bottom: var(--space-md);
    color: var(--kk-ink);
}

.action-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.quick-edit {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
}

.lesson-preview h3 {
    color: var(--kk-ink);
    margin-bottom: var(--space-md);
}

.lesson-preview p {
    margin-bottom: var(--space-sm);
    color: var(--kk-gray);
}

/* Admin forms */
.admin-lesson-edit,
.admin-event-edit {
    margin-bottom: var(--space-3xl);
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.page-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.form-section {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.form-section h2 {
    margin-bottom: var(--space-lg);
    color: var(--kk-ink);
    border-bottom: 2px solid var(--kk-brand);
    padding-bottom: var(--space-sm);
}

.download-item {
    background-color: var(--kk-light-gray);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.remove-download {
    background-color: var(--kk-danger);
    color: var(--kk-white);
    border-color: var(--kk-danger);
}

.remove-download:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Inquiries */
.inquiries-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.inquiry-card {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
}

.inquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.inquiry-header h3 {
    margin-bottom: 0;
    color: var(--kk-ink);
}

.inquiry-date {
    color: var(--kk-gray);
    font-size: 0.9rem;
}

.inquiry-details {
    margin-bottom: var(--space-lg);
}

.detail-row {
    margin-bottom: var(--space-sm);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.detail-row strong {
    min-width: 120px;
    color: var(--kk-ink);
}

.inquiry-message {
    margin-top: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--kk-light-gray);
    border-radius: var(--radius-sm);
    white-space: pre-wrap;
}

.inquiry-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--kk-ink) 0%, var(--kk-indigo) 100%);
    color: var(--kk-white);
    padding: var(--space-3xl) 0 var(--space-md);
    margin-top: var(--space-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--kk-white);
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--kk-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-md);
    text-align: center;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 0.8rem;
    margin-top: var(--space-sm);
    opacity: 0.6;
}

/* Responsive design for larger screens */
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lessons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .downloads-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-actions {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .filters-form {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .lessons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .downloads-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .nav-toggle,
    .btn,
    .form-actions {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .hero {
        background: none;
        color: var(--kk-ink);
        padding: 0;
    }
    
    .journey-card {
        box-shadow: none;
        border: 2px solid var(--kk-ink);
    }
    
    .lesson-highlights {
        break-inside: avoid;
    }
    
    .memory-verse {
        background-color: var(--kk-light-gray);
        padding: var(--space-md);
        border: 1px solid var(--kk-border);
    }
}

/* Lesson Sections */
.lesson-sections {
    margin: var(--space-2xl) 0;
}

.lesson-section {
    background-color: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border-left: 4px solid var(--kk-brand);
}

.lesson-section h3 {
    color: var(--kk-brand);
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.lesson-section h4 {
    color: var(--kk-ink);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.section-content {
    line-height: 1.6;
}

.welcome-question,
.discussion-questions,
.activity,
.prayer,
.storytelling,
.memory-verse-practice,
.discussion,
.interactive-response,
.craft-activity,
.review,
.blessing,
.closing-prayer {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background-color: var(--kk-light-gray);
    border-radius: var(--radius-sm);
}

.welcome-question strong,
.discussion-questions strong,
.activity strong,
.prayer strong,
.storytelling strong,
.memory-verse-practice strong,
.discussion strong,
.interactive-response strong,
.craft-activity strong,
.review strong,
.blessing strong,
.closing-prayer strong {
    color: var(--kk-brand);
    display: block;
    margin-bottom: var(--space-sm);
}

.curiosity-section {
    border-left-color: var(--kk-sky);
}

.belief-section {
    border-left-color: var(--kk-brand);
}

.faith-section {
    border-left-color: var(--kk-accent);
}

.identity-section {
    border-left-color: var(--kk-gold);
}

.closing-section {
    border-left-color: var(--kk-indigo);
}

.wonder-truth {
    background: linear-gradient(135deg, rgba(10, 142, 162, 0.1) 0%, rgba(91, 192, 235, 0.1) 100%);
    border-left: 3px solid var(--kk-brand);
}

.memory-verse {
    background: linear-gradient(135deg, rgba(255, 122, 61, 0.1) 0%, rgba(255, 194, 51, 0.1) 100%);
    border-left: 3px solid var(--kk-accent);
}

/* Responsive lesson sections */
@media (min-width: 768px) {
    .lesson-section {
        padding: var(--space-2xl);
    }
    
    .lesson-section h3 {
        font-size: 1.75rem;
    }
}

/* Parents Page Styles */
.parents-hero {
    background: linear-gradient(135deg, var(--kk-brand) 0%, var(--kk-accent) 100%);
    color: var(--kk-white);
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.parents-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parents-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    color: var(--kk-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.highlight-icon {
    font-size: 1.5rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.action-card {
    background: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.action-card.primary {
    background: linear-gradient(135deg, rgba(10, 142, 162, 0.1) 0%, rgba(91, 192, 235, 0.1) 100%);
    border-left: 4px solid var(--kk-brand);
}

.action-content {
    flex: 1;
}

.action-content h3 {
    color: var(--kk-ink);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.action-content p {
    color: var(--kk-gray);
    margin-bottom: var(--space-md);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--kk-brand) 0%, var(--kk-accent) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* Resources Section */
.resources-section {
    margin-bottom: var(--space-3xl);
}

.section-intro {
    text-align: center;
    color: var(--kk-gray);
    margin-bottom: var(--space-2xl);
    font-size: 1.1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.resource-card {
    background: var(--kk-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.resource-card.featured {
    background: linear-gradient(135deg, rgba(10, 142, 162, 0.05) 0%, rgba(91, 192, 235, 0.05) 100%);
    border: 2px solid var(--kk-brand);
    position: relative;
}

.resource-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--kk-brand) 0%, var(--kk-accent) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.resource-badge {
    background: var(--kk-accent);
    color: var(--kk-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.resource-card h3 {
    color: var(--kk-ink);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.resource-card p {
    color: var(--kk-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.resource-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.resource-features li {
    color: var(--kk-gray);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.coming-soon {
    text-align: center;
    padding: var(--space-lg);
    background: var(--kk-light-gray);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.badge {
    background: var(--kk-gray);
    color: var(--kk-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

/* FAQ Section */
.faq-section {
    margin-bottom: var(--space-3xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.faq-category h3 {
    color: var(--kk-brand);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
    border-bottom: 2px solid var(--kk-border);
    padding-bottom: var(--space-sm);
}

.faq-list {
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: var(--kk-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: var(--kk-card);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: var(--font-body);
    color: var(--kk-ink);
}

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

.faq-question:focus {
    outline: 2px solid var(--kk-brand);
    outline-offset: -2px;
}

.faq-answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    background: var(--kk-light-gray);
    line-height: 1.6;
    color: var(--kk-gray);
}

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

/* Contact Section */
.contact-section {
    background: var(--kk-light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info h2 {
    color: var(--kk-ink);
    margin-bottom: var(--space-md);
}

.contact-info p {
    color: var(--kk-gray);
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--kk-brand);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--kk-ink);
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--kk-brand);
    font-weight: 600;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: var(--kk-gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
}

.contact-cta {
    background: var(--kk-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.contact-cta h3 {
    color: var(--kk-ink);
    margin-bottom: var(--space-md);
}

.contact-cta p {
    color: var(--kk-gray);
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (min-width: 768px) {
    .quick-actions {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .action-card {
        flex-direction: column;
        text-align: center;
    }
    
    .action-content {
        margin-bottom: var(--space-md);
    }
    
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .parents-hero h1 {
        font-size: 4rem;
    }
    
    .hero-highlights {
        gap: var(--space-2xl);
    }
    
    .action-card {
        flex-direction: row;
        text-align: left;
    }
    
    .action-content {
        margin-bottom: 0;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
}

/* Professional Hero Component */
.hero {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--card);
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--card);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--fs-small);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: var(--fs-hero);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.title-highlight {
    color: var(--primary);
    display: block;
    margin-top: var(--space-sm);
}

.hero-subtitle {
    font-size: var(--fs-h3);
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    background: var(--bg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-width: 150px;
    border: 1px solid var(--border);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.feature-text {
    font-size: var(--fs-small);
    color: var(--text);
    font-weight: 600;
}

.hero-video {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    position: relative;
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.play-button {
    margin-bottom: var(--space-md);
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-text {
    color: var(--card);
    font-weight: 600;
    font-size: var(--fs-base);
}

/* Identity Strip Component */
.identity-strip {
    padding: var(--space-3xl) 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.identity-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--text);
}

.identity-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.identity-badge {
    background: var(--card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s ease;
}

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

.badge-icon {
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
}

.badge-caption h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.badge-caption p {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

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

.identity-message p {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
    position: relative;
}

.identity-title {
    text-align: center;
    font-size: var(--fs-h2);
    color: var(--ink);
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.identity-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

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

.badge-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--card);
    overflow: hidden;
    margin: 0 auto var(--space-md);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.badge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.badge-caption {
    font-weight: 700;
    color: var(--ink);
    font-size: var(--fs-base);
}

.meadow-band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.3;
}

/* Testimonial Card Component */
.testimonial-section {
    padding: var(--space-3xl) 0;
    background: var(--bg);
    position: relative;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2xl);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.testimonial-title {
    font-size: var(--fs-h3);
    color: var(--brand);
    font-weight: 700;
}

.stars {
    display: flex;
    gap: var(--space-xs);
}

.testimonial-quote {
    font-size: var(--fs-base);
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    color: var(--brand);
    font-weight: 600;
    font-size: var(--fs-small);
}

/* Mountain Divider Component */
.mountain-divider {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.mountains-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Deep Lake Component */
.deep-lake {
    background: var(--primary);
    color: var(--card);
    padding: var(--space-4xl) 0;
}

.lake-video {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.lake-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.feature-icon img {
    width: 30px;
    height: 30px;
    color: var(--lake);
}

.feature-card h3 {
    color: var(--accent);
    font-size: var(--fs-h3);
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Journey4 Component */
.journey4-section {
    padding: var(--space-4xl) 0;
    background: var(--bg);
}

.journey4-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.journey4-header h2 {
    font-size: var(--fs-h1);
    color: var(--ink);
    margin-bottom: var(--space-lg);
}

.journey4-header p {
    font-size: var(--fs-base);
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.journey4-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.journey4-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.journey4-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.journey4-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey4-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.journey4-content {
    padding: var(--space-xl);
}

.journey4-content h3 {
    color: var(--ink);
    font-size: var(--fs-h3);
    margin-bottom: var(--space-md);
}

.journey4-content p {
    color: var(--muted);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* Footer Hills Component */
.footer-hills {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.hills-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top Banner */
.top-banner {
    background: #FF6B35;
    color: white;
    padding: var(--space-md) 0;
    position: relative;
    z-index: 10;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.banner-logo .logo {
    height: 40px;
    width: auto;
}

.banner-nav {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.banner-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.banner-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #87CEEB 0%, #E0F6FF 50%, #FFF8DC 100%);
    padding: var(--space-3xl) 0 0;
    position: relative;
    min-height: 80vh;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2E86AB;
    margin-bottom: var(--space-2xl);
    line-height: 1.2;
}

.title-highlight {
    color: #FF6B35;
    display: block;
    margin-top: var(--space-sm);
}

/* Child Cards */
.child-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.child-card {
    text-align: center;
    position: relative;
}

.child-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    margin: 0 auto var(--space-sm);
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.child-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.child-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #87CEEB, #E0F6FF);
}

.child-label {
    background: white;
    color: #2E86AB;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Testimonial Box */
.testimonial-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-2xl) auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.testimonial-title {
    font-weight: 700;
    color: #2E86AB;
    font-size: 1.1rem;
}

.stars {
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--kk-gray);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    color: #2E86AB;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Illustrations */
.hero-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.illustration {
    position: absolute;
    opacity: 0.8;
}

.illustration svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bench {
    top: 20%;
    left: 10%;
}

.bikes {
    top: 30%;
    right: 15%;
}

/* Landscape Transition */
.landscape-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 2;
}

.hills {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
}

.hill {
    position: absolute;
    bottom: 0;
    background: #90EE90;
    border-radius: 50px 50px 0 0;
}

.hill-1 {
    left: 0;
    width: 200px;
    height: 60px;
}

.hill-2 {
    left: 150px;
    width: 300px;
    height: 80px;
}

.hill-3 {
    right: 0;
    width: 250px;
    height: 70px;
}

.mountains {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 80px;
}

.mountain {
    position: absolute;
    bottom: 0;
    background: #4682B4;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

.mountain-1 {
    left: 0;
    width: 150px;
    height: 60px;
}

.mountain-2 {
    left: 100px;
    width: 200px;
    height: 80px;
}

.mountain-3 {
    right: 0;
    width: 180px;
    height: 70px;
}

.sunset {
    position: absolute;
    top: 20px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.sun svg {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.person svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Video Section */
.video-section {
    background: #2E86AB;
    color: white;
    padding: var(--space-3xl) 0;
    position: relative;
}

.video-container {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.video-placeholder {
    background: #000;
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    margin-bottom: var(--space-md);
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-placeholder p {
    color: white;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

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

.feature-item h3 {
    color: #FF6B35;
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.water-illustrations {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.octopus {
    position: absolute;
    left: 5%;
    opacity: 0.8;
}

.octopus svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fish {
    position: absolute;
    right: 5%;
    opacity: 0.8;
}

.fish svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Discipleship Section */
.discipleship-section {
    background: #FFF8DC;
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    color: #2E86AB;
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    font-weight: 800;
}

.section-header p {
    color: var(--kk-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.discipleship-journey {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

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

.journey-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-sm);
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #87CEEB, #E0F6FF);
}

.journey-label {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.journey-label.curiosity {
    background: #87CEEB;
}

.journey-label.belief {
    background: #90EE90;
}

.journey-label.faith {
    background: #87CEEB;
}

.journey-label.identity {
    background: #90EE90;
}

/* Curriculum Samples */
.curriculum-samples {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.sample-card {
    width: 200px;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.sample-card:hover {
    transform: translateY(-5px);
}

.sample-cover {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.what-did-we-say {
    background: linear-gradient(135deg, #2E86AB, #4682B4);
    color: white;
}

.hanging-out {
    background: linear-gradient(135deg, #90EE90, #32CD32);
    color: white;
}

.sample-cover h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.sample-cover p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tree-illustration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.8;
}

.tree-illustration svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.sample-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E0E0E0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dot.active {
    background: #2E86AB;
}

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

.discipleship-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.dove {
    position: absolute;
    top: 10%;
    left: 5%;
    opacity: 0.8;
}

.dove svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.sailboat {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}

.sailboat svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.leaf {
    position: absolute;
    top: 10%;
    right: 5%;
    opacity: 0.8;
}

.leaf svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Bottom Landscape */
.bottom-landscape {
    background: #90EE90;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.landscape-hills {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
}

.landscape-hills .hill {
    background: #32CD32;
}

.night-sky {
    position: absolute;
    top: 20px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.moon svg {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.night-sky .star {
    opacity: 0.9;
}

.night-sky .star svg {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.wildlife {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.deer {
    margin-bottom: var(--space-sm);
}

.deer svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.shark {
    opacity: 0.8;
}

.shark svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hero Header */
.hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-logo .logo {
    height: 60px;
    width: auto;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.contact-email {
    color: var(--kk-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.btn--signin {
    background: #2E86AB;
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: background-color 0.2s ease;
}

.btn--signin:hover {
    background: #1f5f7a;
}

.btn-icon {
    font-size: 1rem;
}

/* Hero Navigation */
.hero-nav {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-nav a {
    color: var(--kk-ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.hero-nav a:hover {
    background: var(--kk-light-gray);
    color: var(--kk-brand);
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E86AB;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.title-highlight {
    color: #FF6B35;
    display: block;
    margin-top: var(--space-sm);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--kk-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Lesson Preview */
.lesson-preview {
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.lesson-badge {
    background: #FF6B35;
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.lesson-preview h3 {
    color: var(--kk-ink);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.lesson-preview p {
    color: var(--kk-gray);
    margin-bottom: var(--space-md);
}

.lesson-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.9rem;
    color: var(--kk-brand);
    font-weight: 600;
}

/* Sample Form */
.sample-form {
    background: #FFF8DC;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.sample-form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    right: 20px;
    height: 20px;
    background: #FFF8DC;
    border-radius: 20px 20px 0 0;
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.form-header h3 {
    color: var(--kk-ink);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-header p {
    color: var(--kk-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.sample-form-content {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    color: var(--kk-ink);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--kk-brand);
}

.btn--sample {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--sample:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

.trust-badge {
    background: rgba(46, 134, 171, 0.1);
    color: #2E86AB;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-star,
.floating-cloud {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.floating-star {
    animation-delay: 0s;
}

.floating-cloud {
    animation-delay: 2s;
}

.star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.star-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.cloud-1 {
    top: 30%;
    right: 10%;
    animation-delay: 1s;
}

.cloud-2 {
    top: 70%;
    left: 5%;
    animation-delay: 3s;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: var(--fs-hero);
    }
    
    .identity-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .lake-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey4-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lake-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .journey4-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-card {
        padding: var(--space-3xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .child-cards {
        gap: var(--space-2xl);
    }
    
    .child-image {
        width: 160px;
        height: 160px;
    }
    
    .testimonial-box {
        max-width: 800px;
        padding: var(--space-2xl);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .discipleship-journey {
        gap: var(--space-2xl);
    }
    
    .journey-image {
        width: 140px;
        height: 140px;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .curriculum-samples {
        gap: var(--space-3xl);
    }
    
    .sample-card {
        width: 250px;
        height: 320px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .identity-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .badge-image {
        width: 120px;
        height: 120px;
    }
    
    .testimonial-card {
        margin: var(--space-lg) var(--space-md);
        padding: var(--space-lg);
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .lake-features {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .journey4-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .journey4-header h2 {
        font-size: var(--fs-h2);
    }
    
    .hero-video {
        margin: 0 var(--space-md);
    }
    
    .video-placeholder {
        min-height: 150px;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

.hidden { display: none; }
.visible { display: block; }

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

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

/* Ensure all interactive elements meet minimum size requirements */
button, .btn, input[type="submit"], input[type="button"] {
    min-height: 44px;
    min-width: 44px;
}

/* Improve touch targets on mobile */
@media (max-width: 767px) {
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}