/* =============================================
   Playmates Early Learning Centre - Stylesheet
   GiggleTwinkle | Giggle & Twinkle Children Pty Ltd
   
   Color Palette:
   - Soft Cream: #FDF8F3
   - Pastel Yellow: #FFE082
   - Light Sage Green: #A8D5A2
   - Sky Blue: #87CEEB
   - Peach: #FFAB91
   - Warm White: #FFFFFF
   
   Fonts:
   - Headings: Quicksand
   - Body: Nunito
   ============================================= */

/* CSS Variables for easy customization */
:root {
    /* Primary Colors */
    --color-cream: #FDF8F3;
    --color-yellow: #FFE082;
    --color-sage: #A8D5A2;
    --color-sky: #87CEEB;
    --color-peach: #FFAB91;
    --color-white: #FFFFFF;
    
    /* Secondary Colors */
    --color-sage-light: #E8F5E9;
    --color-sage-dark: #7CB87F;
    --color-peach-light: #FFF5EE;
    --color-yellow-light: #FFF8E7;
    --color-text: #4A4A4A;
    --color-text-light: #6B6B6B;
    --color-text-dark: #2D2D2D;
    
    /* Typography */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-sage-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    text-wrap: pretty;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-primary {
    background: var(--color-sage);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(168, 213, 162, 0.4);
}

.btn-primary:hover {
    background: var(--color-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 213, 162, 0.5);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text-dark);
    border: 2px solid var(--color-sage);
}

.btn-secondary:hover {
    background: var(--color-sage-light);
    border-color: var(--color-sage-dark);
}

/* =============================================
   Floating Background Elements
   ============================================= */
.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-cloud {
    position: absolute;
    color: var(--color-white);
    opacity: 0.6;
    animation: float-slow 20s ease-in-out infinite;
}

.cloud-1 {
    top: 10%;
    left: -5%;
    width: 150px;
    animation-delay: 0s;
}

.cloud-2 {
    top: 25%;
    right: -3%;
    width: 120px;
    animation-delay: -7s;
}

.floating-star {
    position: absolute;
    color: var(--color-yellow);
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 20%;
    width: 24px;
    animation-delay: 0s;
}

.star-2 {
    top: 30%;
    right: 15%;
    width: 20px;
    animation-delay: -1s;
}

.star-3 {
    top: 50%;
    left: 10%;
    width: 16px;
    animation-delay: -2s;
}

.floating-plane {
    position: absolute;
    top: 20%;
    right: 25%;
    width: 40px;
    color: var(--color-peach);
    animation: fly 15s linear infinite;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-full);
    animation: bounce-soft 6s ease-in-out infinite;
}

.shape-1 {
    top: 60%;
    left: 5%;
    width: 30px;
    height: 30px;
    background: var(--color-peach);
    opacity: 0.3;
    animation-delay: 0s;
}

.shape-2 {
    top: 70%;
    right: 8%;
    width: 20px;
    height: 20px;
    background: var(--color-sky);
    opacity: 0.3;
    animation-delay: -2s;
}

.shape-3 {
    top: 40%;
    left: 30%;
    width: 15px;
    height: 15px;
    background: var(--color-yellow);
    opacity: 0.2;
    animation-delay: -4s;
}

/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(40px) translateY(0); }
    75% { transform: translateX(20px) translateY(10px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes fly {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-100px) translateY(-50px) rotate(-10deg); }
    50% { transform: translateX(-200px) translateY(0) rotate(5deg); }
    75% { transform: translateX(-100px) translateY(50px) rotate(-5deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-xs) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-sage-dark);
    max-width: 320px;
    line-height: 1.2;
}

.logo span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    border-radius: 2px;
    transition: width var(--transition-fast);
}

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

.nav-cta {
    display: none;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-sage);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-sage-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text-dark);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--spacing-2xl)) 0 var(--spacing-3xl);
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-yellow-light) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 560px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--color-sage-dark);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    text-wrap: pretty;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float-gentle 6s ease-in-out infinite;
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* =============================================
   About Section
   ============================================= */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

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

.about-svg {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content {
    max-width: 520px;
}

.about-text {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-text-dark);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-dark);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-sage);
    flex-shrink: 0;
}

/* Quick Info Badges */
.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-sage-light);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-sage-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

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

.info-badge svg {
    width: 24px;
    height: 24px;
    color: var(--color-sage-dark);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

/* =============================================
   Wave Dividers
   ============================================= */
.wave-divider {
    line-height: 0;
    position: relative;
    z-index: 1;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
}

.wave-green {
    background: var(--color-white);
}

.wave-white {
    background: var(--color-sage-light);
}

.wave-peach {
    background: var(--color-white);
}

.wave-green-2 {
    background: var(--color-peach-light);
}

/* =============================================
   Programs Section
   ============================================= */
.programs {
    padding: var(--spacing-3xl) 0;
    background: var(--color-sage-light);
    position: relative;
    z-index: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.program-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    transition: transform var(--transition-normal);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
}

.program-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-dark);
}

.program-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   Gallery Section
   ============================================= */
.gallery {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

/* =============================================
   Why Choose Us Section
   ============================================= */
.why-us {
    padding: var(--spacing-3xl) 0;
    background: var(--color-peach-light);
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.why-us-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-us-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
}

.why-us-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-dark);
}

.why-us-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   Contact Section
   ============================================= */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--color-sage);
    position: relative;
    z-index: 1;
}

.contact .section-tag {
    color: var(--color-white);
    opacity: 0.9;
}

.contact .section-title {
    color: var(--color-white);
}

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

.contact-info {
    color: var(--color-white);
}

.contact-intro {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.map-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    text-align: center;
}

.map-placeholder {
    width: 100%;
    border-radius: var(--radius-md);
}

.map-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: var(--spacing-xs);
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--color-text-dark);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 4px rgba(168, 213, 162, 0.2);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.btn-submit {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-2xl);
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--color-sage);
    margin: 0 auto var(--spacing-md);
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-xs);
}

.form-success p {
    color: var(--color-text-light);
}

.contact-form.hidden {
    display: none;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--color-text-dark);
    color: var(--color-white);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-sage);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.footer-contact a {
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-contact a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: var(--spacing-xs);
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    pointer-events: none;
}

.footer-cloud {
    width: 300px;
}

/* =============================================
   Back to Top Button
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-sage);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-sage-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* =============================================
   Fade-in Animation
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Responsive Styles
   ============================================= */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-white);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        gap: var(--spacing-sm);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta {
        display: inline-flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-illustration {
        order: -1;
    }
    
    .hero-svg {
        max-width: 350px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .programs-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .programs-grid,
    .why-us-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .hero {
        min-height: auto;
        padding: calc(70px + var(--spacing-xl)) 0 var(--spacing-2xl);
    }
    
    .hero-wave svg {
        height: 50px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .logo {
        max-width: 200px;
        font-size: 0.75rem;
    }
    
    .logo span {
        -webkit-line-clamp: 2;
    }
    
    .floating-elements {
        display: none;
    }
    
    .quick-info {
        gap: var(--spacing-sm);
    }
    
    .info-badge {
        flex: 1 1 calc(50% - var(--spacing-sm));
        min-width: 140px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .info-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .info-label {
        font-size: 0.65rem;
    }
    
    .info-value {
        font-size: 0.8rem;
    }
}

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

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-sage);
    outline-offset: 2px;
}

/* Screen reader only */
.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;
}
