/* ============================================
   GRACELAND KIDS CENTER - MODERN REDESIGN
   ============================================ */

/* Font Face Declarations */
@font-face {
    font-family: 'Alegreya';
    src: url('fonts/alegreya/Alegreya-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alegreya';
    src: url('fonts/alegreya/Alegreya-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

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

:root {
    /* Primary Colors */
    --primary: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #E6F2FF;
    
    /* Accent Colors */
    --accent-yellow: #FFD700;
    --accent-orange: #FF6B35;
    --accent-green: #00A86B;
    --accent-pink: #FF69B4;
    --accent-purple: #9B59B6;
    
    /* Neutral Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
    --text-tertiary: #718096;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-gray: #EDF2F7;
    --border: #E2E8F0;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base font size - all rem values are relative to 18px */
html {
    font-size: 18px;
}

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

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

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: #1a1a1a;
    color: white;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.topbar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-item svg {
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.topbar-item span {
    color: rgba(255, 255, 255, 0.9);
}

.topbar-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar-item a:hover {
    color: white;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: #f65b0b;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 34px;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #d94f09;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 2rem;
}

.nav-brand a {
    text-decoration: none;
    display: inline-block;
    line-height: 0;
}

.logo-normal {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-transform: none;
    letter-spacing: 0;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover {
    color: #fff3e0;
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: #0072CE;
    color: var(--bg-white) !important;
    padding: 0.85rem 1.75rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.nav-cta:hover {
    background: #005ba3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    margin-top: 89px;
    margin-bottom: 0;
    padding: 0;
}

.hero-layout {
    display: flex;
    min-height: 67.5vh;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-text-column {
    width: 55%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 4rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.logo-hero {
    height: 160px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.hero-content {
    max-width: 600px;
    text-align: left;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease;
}

.hero-slider-column {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-title {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--primary);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.2px;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    font-size: 1.75rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-btn.prev {
    position: absolute;
    left: 2rem;
}

.slider-btn.next {
    position: absolute;
    right: 2rem;
}

.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-slider-dots .dot.active {
    background: var(--bg-white);
    border-color: var(--bg-white);
    transform: scale(1.3);
}

.hero-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* ============================================
   INFO BAR
   ============================================ */
.info-bar {
    background: #cfe9ff;
    padding: 1.2rem 0;
    margin-top: 0;
    border-top: none;
    border-bottom: 1px solid #b3dcff;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.info-text span {
    color: #2d3748;
    font-size: 0.95rem;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary-dark);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

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

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.programs .section-description {
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: #f9fafb;
    position: relative;
    padding: 5rem 0 0;
}

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

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-text-content .section-title {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2.75rem;
    text-align: left;
    margin-bottom: 2rem;
}

.about-text-content .section-description {
    text-align: left;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 550px;
}

.stat-item {
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: #fff5f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid #f65b0b;
    box-shadow: 0 2px 6px rgba(246, 91, 11, 0.1);
}

.stat-item:hover {
    background: #ffe8db;
    border-left-color: #ff8c42;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(246, 91, 11, 0.2);
}

.stat-number {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f65b0b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

.about-image-content {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    min-height: 500px;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-green));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    filter: blur(40px);
}

/* Commitments Section */
.commitments-section-wrapper {
    background: var(--bg-white);
    padding: 6rem 0;
    position: relative;
    overflow: visible;
    margin-top: 4rem;
}

.commitments-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(107,70,193,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.commitments-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.commitments-title {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

/* Commitments Layout - Two Column */
.commitments-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    min-height: 2000px; /* Ensure enough height for scrolling */
}

/* Left Sticky Column - Headings Only */
.commitments-list {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: flex-start;
    padding-right: 2rem;
    height: fit-content;
}

.commitment-heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.commitment-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-green));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.commitment-heading.active::after {
    width: 100%;
}

.commitment-heading:hover {
    transform: translateX(8px);
}

.commitment-heading.active {
    transform: translateX(12px);
}

.commitment-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.commitment-heading.active .commitment-icon-small {
    transform: scale(1.15);
    box-shadow: var(--shadow-md);
}

.commitment-icon-red {
    background: #E63946;
}

.commitment-icon-green {
    background: #90EE90;
}

.commitment-icon-orange {
    background: #FF8C42;
}

.commitment-icon-blue {
    background: #4A90E2;
}

.commitment-heading h4 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin: 0;
    transition: color 0.3s ease;
}

.commitment-heading.active h4 {
    color: var(--primary);
}

/* Right Column - Image and Writeup */
.commitments-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 2rem;
}

.commitment-content-item {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(0);
    min-height: 600px;
    scroll-margin-top: 140px;
    width: 100%;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.commitment-image-wrapper {
    width: 100%;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.commitment-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/10;
    transition: transform 0.6s ease;
}

.commitment-content-item.active .commitment-image-wrapper img {
    transform: scale(1);
}

.commitment-content-item:not(.active) .commitment-image-wrapper img {
    transform: scale(0.98);
}

.commitment-color-bar {
    width: 100%;
    height: 8px;
    margin-top: 0;
    display: block;
}

.commitment-bar-red {
    background: #E63946;
}

.commitment-bar-green {
    background: #90EE90;
}

.commitment-bar-orange {
    background: #FF8C42;
}

.commitment-bar-blue {
    background: #4A90E2;
}

.commitment-text-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
}

.commitment-text-content h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.commitment-text-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.commitment-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--accent-green) 50%, 
        var(--primary) 80%, 
        transparent 100%);
    margin: 2rem auto 0;
    max-width: 200px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.commitment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-white), 0 0 0 6px var(--accent-green);
}

.commitment-content-item:last-child .commitment-divider {
    display: none;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs {
    background: var(--bg-light);
    position: relative;
    padding: 6rem 0;
}

.programs .container {
    max-width: 1760px;
    padding: 0 4rem;
}

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

.program-card {
    background: var(--bg-white);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.program-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.program-card:nth-child(1) .program-card-content {
    background: #f3e6cd;
}

.program-card:nth-child(2) .program-card-content {
    background: #aee2fa;
}

.program-card:nth-child(3) .program-card-content {
    background: #a5e7e5;
}

.program-card:nth-child(4) .program-card-content {
    background: #ffd4e5;
}

.program-card-image {
    width: 100%;
    height: 144px;
    overflow: hidden;
    position: relative;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.05);
}

.program-card-content {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-card-content h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.program-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.program-card-button {
    display: inline-block;
    padding: 0.55rem 1.15rem;
    background: #1a3a52;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
}

.program-card-button:hover {
    background: #0d2438;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 82, 0.3);
}

/* ============================================
   WHY FAMILIES LOVE US
   ============================================ */
.why-families-love-us {
    background: #ffe8d6;
    padding: 6rem 0;
}

.why-families-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 3rem auto 0;
}

.why-families-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-families-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #f65b0b;
}

.why-families-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.why-families-card:hover .why-families-icon {
    transform: scale(1.1);
}

.why-families-icon svg {
    display: block;
}

.why-families-heading {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-families-description {
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   HOURS SECTION
   ============================================ */
.hours {
    background: var(--bg-light);
}

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

.hours-text {
    padding-top: 1rem;
}

.hours-card {
    background: linear-gradient(135deg, #4A9FF5 0%, #2B7FE3 100%);
    padding: 4rem;
    border-radius: 24px;
    color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hours-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.hours-list {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.hours-item:hover {
    padding-left: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

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

.hours-item.closed {
    opacity: 0.6;
}

.hours-item.closed .time {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.hours-item .day {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.hours-item .time {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.hours-note {
    text-align: center;
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.15;
    margin-bottom: 1rem;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.testimonial-author {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ============================================
   JOIN OUR TEAM SECTION
   ============================================ */
.join-our-team {
    background: var(--bg-white);
    padding: 5rem 0;
}

.join-our-team .container {
    max-width: 1000px;
}

.join-our-team-card {
    display: flex;
    align-items: stretch;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background: var(--bg-white);
}

.join-our-team-image {
    flex: 0 0 42%;
    position: relative;
    z-index: 2;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.join-our-team-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.join-our-team-content {
    flex: 1;
    background: #c8e6c9;
    padding: 3rem 3.5rem 3rem 4rem;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-left: -2%;
}

.join-our-team-content-inner {
    width: 100%;
    max-width: 420px;
    text-align: left;
}

.join-our-team-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.join-our-team-text {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    color: #5f6b62;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 420px;
}

.join-our-team-btn-wrap {
    text-align: center;
    margin-top: 0.5rem;
    width: 100%;
}

.join-our-team-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1976d2;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.join-our-team-btn:hover {
    background: #1565c0;
    color: #ffffff;
}

@media (max-width: 992px) {
    .join-our-team-card {
        flex-direction: column;
        min-height: auto;
    }

    .join-our-team-image {
        flex: none;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .join-our-team-image img {
        min-height: 280px;
        aspect-ratio: 16/10;
    }

    .join-our-team-content {
        margin-left: 0;
        padding: 2.5rem 2rem;
        border-radius: 0 0 20px 20px;
    }

    .join-our-team-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .join-our-team {
        padding: 3.5rem 0;
    }

    .join-our-team-content {
        padding: 2rem 1.5rem;
    }

    .join-our-team-heading {
        font-size: 3rem;
    }

    .join-our-team-btn {
        width: 100%;
        text-align: center;
        align-self: stretch;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: linear-gradient(135deg, #1e5bb8 0%, #0d3d8a 100%);
    padding: 5rem 0;
    color: white;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-main-title {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-main-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.contact-card-icon {
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card-detail {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.contact-card-link {
    display: inline-block;
    color: #4A9FF5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    color: #2B7FE3;
    transform: translateX(5px);
}

.contact-card-badge {
    display: inline-block;
    background: #52C41A;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-cta-banner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.contact-cta-content h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-cta-banner .cta-button {
    flex-shrink: 0;
    background: white;
    color: #4A9FF5;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.contact-cta-banner .cta-button:hover {
    background: #fff3e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-top: 2rem;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   SAFETY SECTION
   ============================================ */
.safety-section {
    background: var(--bg-light);
    padding: 6rem 0;
}

.safety-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.safety-feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.safety-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.safety-icon {
    margin: 0 auto 1.5rem;
    width: 48px;
    height: 48px;
}

.safety-feature-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.safety-feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
}

.safety-commitment-banner {
    background: linear-gradient(135deg, #4A9FF5 0%, #2B7FE3 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(74, 159, 245, 0.3);
}

.safety-commitment-content h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.safety-commitment-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   ENROLLMENT SECTION
   ============================================ */
.enrollment-section {
    background: #ffe8d6;
    padding: 5rem 0;
}

.enrollment-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.enrollment-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.enrollment-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.enrollment-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hours-highlight {
    background: linear-gradient(135deg, #2B7FE3 0%, #1e5bb8 100%);
    color: white;
}

.hours-highlight h3 {
    color: white;
}

.hours-display p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.hours-display strong {
    color: white;
}

/* ============================================
   CURRICULUM SECTION
   ============================================ */
.curriculum-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.curriculum-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.curriculum-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid #f65b0b;
}

.curriculum-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.curriculum-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.program-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.program-features li:first-child {
    padding-top: 0;
}

.program-features li:last-child {
    padding-bottom: 0;
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #52C41A;
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================
   PAGE HERO (for separate pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #4A9FF5 0%, #2B7FE3 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    margin-top: 89px;
}

.page-hero-logo {
    height: 100px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.page-hero-title {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PROGRAM DETAILS SECTION
   ============================================ */
.program-details-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

.detail-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detail-item h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #f65b0b 0%, #ff8c42 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: white;
    color: #f65b0b;
    font-weight: 700;
}

.cta-section .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* ============================================
   CAREERS BENEFITS SECTION
   ============================================ */
.careers-benefits {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ============================================
   CURRENT OPENINGS SECTION
   ============================================ */
.current-openings {
    padding: 5rem 0;
}

.openings-list {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.opening-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opening-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.opening-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.opening-type {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opening-card > p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.opening-requirements {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

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

.opening-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.opening-card .cta-button {
    margin-top: 1.5rem;
}

.requirements-section {
    margin-top: 5rem;
}

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

.requirement-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid #4A9FF5;
}

.requirement-card h3 {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.requirement-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: var(--bg-white);
}

.footer-main {
    padding: 5rem 0 3rem;
}

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

.footer-about {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-hours {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 3px solid #f65b0b;
}

.footer-hours-label {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #f65b0b;
}

.footer-hours-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-heading {
    font-family: 'Alegreya', 'Quicksand', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--bg-white);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer-contact-item svg {
    color: #f65b0b;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.footer-contact-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--bg-white);
}

.footer-cta-btn {
    display: inline-block;
    background: #f65b0b;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 91, 11, 0.3);
}

.footer-bottom {
    background: #0f0f0f;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1400px) {
    .programs .container {
        max-width: 1280px;
        padding: 0 3rem;
    }
}

@media (max-width: 1200px) {
    .programs .container {
        padding: 0 2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitments-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .commitments-list {
        position: relative;
        top: 0;
        max-height: none;
        padding-right: 0;
    }

    .commitments-content {
        position: relative;
        top: 0;
        height: auto;
        order: -1;
    }

    .commitment-content-item {
        position: relative;
        height: auto;
    }

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

    .about-text-content .section-title,
    .about-text-content .section-description {
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 968px) {
    .topbar {
        font-size: 0.8rem;
        padding: 0.35rem 0;
    }
    
    .topbar-content {
        gap: 1.5rem;
    }
    
    .topbar-item span {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 89px;
        flex-direction: column;
        background: #f65b0b;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        border-top: 1px solid #d94f09;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        gap: 1.5rem;
        z-index: 999;
        max-height: calc(100vh - 89px);
        overflow-y: auto;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .navbar {
        padding: 1rem 2rem;
    }

    .hero-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-text-column {
        width: 100%;
        min-height: 50vh;
        padding: 3rem 2rem;
        align-items: center;
    }
    
    .hero-logo {
        margin-bottom: 2rem;
    }
    
    .logo-hero {
        height: 120px;
    }
    
    .hero-slider-column {
        width: 100%;
        min-height: 40vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }

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

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

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

    .info-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hours-content {
        grid-template-columns: 1fr;
    }

    .why-families-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .safety-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .curriculum-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .contact-cta-banner .cta-button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-hero-logo {
        height: 85px;
    }
    
    .page-hero-title {
        font-size: 2.75rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .why-families-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 0.3rem 0;
        font-size: 0.8rem;
    }
    
    .topbar-content {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .topbar-item:first-child {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding-top: 80px;
    }
    
    .hero-text-column {
        min-height: auto;
        padding: 2.5rem 1.5rem;
        align-items: center;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .logo-hero {
        height: 100px;
    }
    
    .hero-slider-column {
        min-height: 50vh;
    }

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

    .hero-title .highlight {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-group .cta-button {
        width: 100%;
    }

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

    .info-items {
        grid-template-columns: 1fr;
    }

    .about-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .about-text-content .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-text-content .section-description {
        text-align: center;
        font-size: 1.1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
        margin: 2rem auto 0;
    }

    .about-image-wrapper img {
        aspect-ratio: 4/3;
        min-height: 350px;
    }

    .commitments-section-wrapper {
        padding: 4rem 0;
        margin-top: 2rem;
    }

    .commitments-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .commitments-list {
        position: relative;
        top: 0;
        order: -1;
    }

    .commitments-content {
        position: relative;
        top: 0;
        height: auto;
    }

    .commitment-content-item {
        min-height: 400px;
        padding: 2rem 0;
    }

    .commitment-image-wrapper {
        max-width: 100%;
    }

    .commitment-text-content {
        padding: 0 1rem;
    }

    .commitment-image-wrapper {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

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

    .commitment-heading {
        padding: 1rem 0;
    }

    .commitment-icon-small {
        width: 45px;
        height: 45px;
    }

    .commitment-heading h4 {
        font-size: 1.5rem;
    }

    .commitments-title {
        font-size: 2.25rem;
    }

    .container {
        padding: 0 1.5rem;
    }
    
    .programs .container {
        padding: 0 1.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-card-content {
        padding: 1.5rem;
    }
    
    .program-card-content h3 {
        font-size: 1.5rem;
    }
    
    .program-card-content p {
        font-size: 0.9rem;
    }

    .why-families-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-families-card {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-card {
        padding: 1.5rem;
    }
    
    .enrollment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .curriculum-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .curriculum-card {
        padding: 2rem;
    }
    
    .safety-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .safety-commitment-banner {
        padding: 2rem 1.5rem;
    }
    
    .safety-commitment-content h3 {
        font-size: 1.6rem;
    }
    
    .safety-commitment-content p {
        font-size: 1rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .requirement-card {
        padding: 2rem;
    }

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

    .hours-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-hero {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-main-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }
    
    .contact-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .contact-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-cta-content p {
        font-size: 1rem;
    }
    
    .contact-cta-banner .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-about {
        text-align: left;
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .logo-hero {
        height: 80px;
    }
    
    .page-hero-logo {
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .info-icon {
        font-size: 1.75rem;
    }
    
    .info-text strong {
        font-size: 0.9rem;
    }
    
    .info-text span {
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 1rem 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-stats {
        gap: 1rem;
        max-width: 100%;
    }
    
    .why-families-card {
        padding: 1.5rem 1rem;
    }
    
    .why-families-heading {
        font-size: 1.25rem;
    }
    
    .why-families-description {
        font-size: 0.95rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-main-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.25rem;
    }
    
    .contact-card-detail {
        font-size: 0.95rem;
    }
    
    .contact-cta-banner {
        padding: 1.5rem;
    }
    
    .contact-cta-content h3 {
        font-size: 1.35rem;
    }
    
    .contact-cta-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .hours-card {
        padding: 2rem 1.5rem;
    }
    
    .hours-card h3 {
        font-size: 1.5rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-cta-btn {
        width: 100%;
        text-align: center;
    }
}
