/* ===================================
   DREAMERS BAY PRESCHOOL & DAYCARE
   Modern Professional Stylesheet
   =================================== */

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

*:focus-visible {
    outline: 3px solid var(--db-yellow);
    outline-offset: 2px;
    border-radius: 4px;
}

:root {
    /* Dreamers Bay Color Palette */
    --db-teal: #79B5C0;              /* Dreamers bay text / Waves */
    --db-turquoise: #5BABB6;         /* Little boy T-shirt */
    --db-light-teal: #A4CDD0;        /* Water and clouds */
    --db-cream: #F5EBD9;             /* Background for books/ID */
    --db-beige: #E8D4B0;             /* Ship colour 2 */
    --db-light-beige: #F2E7D0;       /* Ship colour 3 */
    --db-brown: #755C42;             /* Subtext and boy/ship outline */
    --db-dark-brown: #6B5437;        /* Little boy hair */
    --db-yellow: #F2C94C;            /* Stars and Sun */
    --db-tan: #D4B896;               /* Ship colour 1 */
    --db-peach: #E8B899;             /* Little boy skin tone */
    
    /* Primary Colors */
    --primary-color: #79B5C0;
    --primary-dark: #5BABB6;
    --secondary-color: #F2C94C;
    --accent-color: #E8B899;
    --accent-beige: #E8D4B0;
    --accent-brown: #755C42;
    
    /* Neutral Colors */
    --dark-color: #755C42;
    --light-color: #F5EBD9;
    --white: #FFFFFF;
    --text-color: #6B5437;
    --text-light: #755C42;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #79B5C0 0%, #5BABB6 100%);
    --gradient-secondary: linear-gradient(135deg, #F2C94C 0%, #E8B899 100%);
    --gradient-warm: linear-gradient(135deg, #E8D4B0 0%, #D4B896 100%);
    --gradient-cool: linear-gradient(135deg, #A4CDD0 0%, #79B5C0 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(121, 181, 192, 0.95) 0%, rgba(91, 171, 182, 0.95) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(117, 92, 66, 0.08);
    --shadow-md: 0 8px 30px rgba(117, 92, 66, 0.12);
    --shadow-lg: 0 15px 50px rgba(117, 92, 66, 0.15);
    --shadow-xl: 0 25px 60px rgba(117, 92, 66, 0.2);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Variables */
body.dark-mode {
    --white: #1a1a2e;
    --light-color: #16213e;
    --text-color: #e4e4e4;
    --text-light: #b8b8b8;
    --dark-color: #e4e4e4;
    --primary-color: #5a9aa8;
    --primary-dark: #4a8896;
    --db-cream: #2d2d44;
    --db-beige: #3a3a52;
    --db-light-beige: #2a2a40;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* Add transitions to all elements that change in dark mode */
.navbar,
.hero,
.about,
.programs,
.vision,
.gallery,
.contact,
.footer,
.program-card,
.stat-card,
.vision-card,
.contact-form,
.section-badge,
.btn-primary,
.gallery-item img,
.contact-info,
.quote-box,
.info-item,
.hero-overlay,
.opening-soon-badge,
.form-group input,
.form-group textarea,
.form-group select,
.form-group label,
.program-badge {
    transition: background 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.dark-mode .about,
body.dark-mode .programs,
body.dark-mode .gallery,
body.dark-mode .contact {
    background-color: #16213e;
}

body.dark-mode .vision {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.dark-mode .navbar {
    background: rgba(26, 26, 46, 0.95);
}

body.dark-mode .navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
}

body.dark-mode .program-card,
body.dark-mode .stat-card,
body.dark-mode .vision-card,
body.dark-mode .contact-form {
    background: #2d2d44;
    color: #e4e4e4;
}

body.dark-mode .section-badge {
    background: rgba(90, 154, 168, 0.1);
    color: #5a9aa8;
}

body.dark-mode .btn-primary {
    background: linear-gradient(135deg, #5a9aa8 0%, #4a8896 100%);
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 100%);
}

body.dark-mode .gallery-item img {
    filter: brightness(0.9);
}

body.dark-mode .modal-content {
    filter: brightness(0.95);
}

body.dark-mode .contact-info {
    background: #2d2d44;
}

body.dark-mode .quote-box {
    background: rgba(90, 154, 168, 0.1);
    border-left-color: #5a9aa8;
}

body.dark-mode .info-item {
    background: rgba(90, 154, 168, 0.05);
}

body.dark-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.8) 100%);
}

body.dark-mode .opening-soon-badge {
    background: rgba(90, 154, 168, 0.2);
    color: #e4e4e4;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e4;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .form-group label {
    color: #b8b8b8;
}

body.dark-mode .program-badge {
    background: linear-gradient(135deg, #5a9aa8 0%, #4a8896 100%);
}

/* Dark mode for mobile menu */
body.dark-mode .nav-menu {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%) !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
    color-scheme: light;
}

/* Prevent system dark mode from affecting the site */
@media (prefers-color-scheme: dark) {
    html {
        color-scheme: light;
    }
    
    body:not(.dark-mode) {
        background-color: #FFFFFF !important;
        color: #6B5437 !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: background-color 0.3s ease, color 0.3s ease;
    color-scheme: light;
}

/* When dark mode is active via our toggle */
body.dark-mode {
    color-scheme: dark;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.scrolled {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 1100px;
    margin: 0 auto;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.navbar.scrolled .nav-wrapper {
    padding: 10px 28px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-image {
    height: 50px;
}

.logo-icon {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

.logo-text h1 {
    font-size: 24px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #79B5C0;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.navbar.scrolled .logo-text h1 {
    font-size: 22px;
}

.logo-text span {
    font-size: 11px;
    color: var(--db-brown);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    margin-top: 2px;
    opacity: 0.7;
}

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

.nav-menu li {
    animation: fadeInUp 0.5s ease-out both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.3s; }
.nav-menu li:nth-child(2) { animation-delay: 0.4s; }
.nav-menu li:nth-child(3) { animation-delay: 0.5s; }
.nav-menu li:nth-child(4) { animation-delay: 0.6s; }
.nav-menu li:nth-child(5) { animation-delay: 0.7s; }
.nav-menu li:nth-child(6) { animation-delay: 0.8s; }

.nav-link {
    text-decoration: none;
    color: var(--db-brown);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-normal);
    position: relative;
    padding: 10px 20px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    display: block;
}

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

.nav-link:hover {
    background: rgba(121, 181, 192, 0.1);
    color: var(--db-teal);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--db-teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(121, 181, 192, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.nav-link.active:hover {
    background: var(--db-turquoise);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(121, 181, 192, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(121, 181, 192, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(121, 181, 192, 0.5);
    }
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--db-brown);
    transition: all var(--transition-normal);
    border-radius: 3px;
}

.hamburger span:nth-child(1) {
    background: var(--db-teal);
}

.hamburger span:nth-child(2) {
    background: var(--db-yellow);
}

.hamburger span:nth-child(3) {
    background: var(--db-teal);
}

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

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

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

/* ===================================
   THEME TOGGLE (Mobile Only)
   =================================== */

.mobile-theme-toggle {
    display: none;
}

.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    margin-top: 20px;
}

.theme-icon {
    color: var(--white);
    font-size: 20px;
    transition: all var(--transition-normal);
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    border-radius: 34px;
    backdrop-filter: blur(10px);
}

.theme-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, #F2C94C 0%, #E8B899 100%);
    transition: all 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

input:checked + .theme-slider {
    background: rgba(255, 255, 255, 0.3);
}

input:checked + .theme-slider:before {
    transform: translateX(30px);
    background: linear-gradient(135deg, #5a9aa8 0%, #4a8896 100%);
}

.theme-slider:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===================================
   HERO SECTION
   =================================== */

/* Opening Soon Badge */
.opening-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    margin-bottom: 24px;
    animation: badgeReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
}

@keyframes badgeReveal {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    60% {
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    position: relative;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://media.istockphoto.com/id/1343472952/photo/happy-school-girls-walking-together-in-a-school-corridor-while-talking-to-each-other.jpg?s=2048x2048&w=is&k=20&c=9JrvWTDnXr9trFlkf-R9ig97b8AnB-3IlU4OE24jQm8=');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 70px;
}

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

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 60%;
    left: 15%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 10;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInScale 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--db-yellow) 0%, var(--db-peach) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--db-brown);
    color: var(--db-brown);
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.4);
    animation: bounceIn 1s ease-out;
}

.hero-badge i {
    color: var(--db-brown);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--db-teal) 0%, var(--db-yellow) 50%, var(--db-peach) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    line-height: 1.15;
    letter-spacing: -1.5px;
    animation: slideInDown 1s ease-out;
}

.text-slide-in {
    display: block;
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
    letter-spacing: 0.3px;
    animation: fadeIn 1.5s ease-out;
}

.typing-text {
    overflow: hidden;
    border-right: 2px solid var(--white);
    white-space: nowrap;
    animation: typing 3.5s steps(60, end), blink-caret 0.75s step-end infinite;
    animation-fill-mode: forwards;
    display: inline-block;
}

@keyframes typing {
    from { width: 0; max-width: 0; }
    to { width: 100%; max-width: 700px; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--white); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 35px;
    border-radius: 15px;
    border: 3px solid var(--db-teal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.hero-stat:nth-child(1) {
    animation-delay: 0.2s;
    border-color: var(--db-turquoise);
}

.hero-stat:nth-child(2) {
    animation-delay: 0.4s;
    border-color: var(--db-yellow);
}

.hero-stat:nth-child(3) {
    animation-delay: 0.6s;
    border-color: var(--db-peach);
}

.hero-stat h3 {
    font-size: 36px;
    background: linear-gradient(135deg, var(--db-teal) 0%, var(--db-turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
}

.hero-stat p {
    font-size: 14px;
    color: #2C3E50;
    font-weight: 600;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-location {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #FFFFFF;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.hero-location i {
    color: var(--accent-color);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

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

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

.btn span, .btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--db-yellow) 0%, var(--db-peach) 100%);
    color: var(--db-brown);
    box-shadow: 0 10px 30px rgba(242, 201, 76, 0.35);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--db-peach) 0%, var(--db-yellow) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(242, 201, 76, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--db-teal);
    color: var(--white);
    border-color: var(--db-teal);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(121, 181, 192, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   SCROLL INDICATOR
   =================================== */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.8;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.scroll-indicator p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   SECTIONS
   =================================== */

section {
    padding: 100px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 2px solid var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

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

.section-divider {
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    margin: 0 auto 25px;
    border-radius: 3px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: var(--db-cream);
    position: relative;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: 5%;
    color: var(--db-teal);
}

.float-2 {
    top: 60%;
    right: 8%;
    color: var(--db-yellow);
    animation-delay: 2s;
}

.float-3 {
    bottom: 15%;
    left: 10%;
    color: var(--accent-orange);
    animation-delay: 4s;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: start;
}

.quote-box {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border-left: 5px solid var(--db-turquoise);
    position: relative;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E8B899' fill-opacity='0.06'%3E%3Cpolygon points='60,10 90,90 30,90'/%3E%3Ccircle cx='15' cy='15' r='10'/%3E%3Ccircle cx='105' cy='105' r='10'/%3E%3Crect x='40' y='40' width='15' height='15' transform='rotate(45 47.5 47.5)'/%3E%3Cpolygon points='90,20 110,40 90,60 70,40'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.quote-box i {
    font-size: 30px;
    color: var(--db-teal);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-box p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-color);
    padding-left: 40px;
    margin: 0;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Fredoka', sans-serif;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-color);
    font-weight: 600;
}

.about-features {
    display: grid;
    gap: 20px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F2C94C' fill-opacity='0.08'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.12),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 24px rgba(0, 0, 0, 0.18),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.25);
}

.feature-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.feature-content h4 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.modern-stat {
    position: relative;
    overflow: hidden;
}

.modern-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.modern-stat:hover::before {
    transform: scaleY(1);
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: left;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(121, 181, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 201, 76, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2379B5C0' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, auto, 60px 60px;
    background-position: center;
}

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

.stat-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-icon:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.stat-icon i {
    font-size: 35px;
    color: var(--white);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    letter-spacing: -1px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.stat-bar {
    height: 4px;
    background: var(--light-color);
    border-radius: 2px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    animation: loadBar 2s ease-out forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

/* ===================================
   PROGRAMS SECTION
   =================================== */

.programs {
    background: var(--white);
}

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

.programs-grid .program-card:nth-child(1) { animation-delay: 0s; }
.programs-grid .program-card:nth-child(2) { animation-delay: 0.1s; }
.programs-grid .program-card:nth-child(3) { animation-delay: 0.2s; }
.programs-grid .program-card:nth-child(4) { animation-delay: 0.3s; }

.program-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, rgba(245, 235, 217, 0.3) 0%, rgba(164, 205, 208, 0.2) 100%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2379B5C0' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3Ccircle cx='80' cy='80' r='8'/%3E%3Ccircle cx='50' cy='50' r='5'/%3E%3Ccircle cx='90' cy='30' r='6'/%3E%3Ccircle cx='30' cy='90' r='6'/%3E%3Cpath d='M10 10L15 15M85 85L90 90M45 45L55 55' stroke='%23F2C94C' stroke-width='2' stroke-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover, 100px 100px;
    background-position: center;
    animation: cardSlideUp 0.6s ease-out both;
}

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

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.program-card:hover::before {
    opacity: 0.03;
}

.program-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(121, 181, 192, 0.1);
    border-color: var(--db-teal);
}

.program-card.featured {
    border-color: var(--db-yellow);
    background: linear-gradient(135deg, var(--db-cream) 0%, #FFFFFF 100%);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.program-badge.popular {
    background: var(--gradient-secondary);
    color: var(--db-brown);
}

.program-icon {
    width: 110px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.3);
}

.program-card:hover .program-icon {
    transform: translateY(-10px) rotate(-5deg) scale(1.1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.3);
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(-10px) rotate(-5deg) scale(1.1);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg) scale(1.15);
    }
}

.program-icon i {
    font-size: 50px;
    color: var(--white);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.program-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.program-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.program-card ul {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.program-card ul li {
    padding: 12px 0;
    color: var(--text-color);
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.program-card ul li:last-child {
    border-bottom: none;
}

.program-card ul li i {
    color: var(--secondary-color);
    font-size: 16px;
}

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

.program-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.program-link:hover {
    gap: 12px;
}

/* Colorful Program Cards - Each with Different Color from Palette */
.program-card:nth-child(1) .program-icon {
    background: linear-gradient(135deg, var(--db-turquoise) 0%, var(--db-teal) 100%);
}

.program-card:nth-child(1):hover {
    border-color: var(--db-turquoise);
}

.program-card:nth-child(1) ul li i {
    color: var(--db-turquoise);
}

.program-card:nth-child(1) .program-link {
    color: var(--db-turquoise);
}

.program-card:nth-child(2) .program-icon {
    background: linear-gradient(135deg, var(--db-yellow) 0%, var(--db-peach) 100%);
}

.program-card:nth-child(2):hover {
    border-color: var(--db-yellow);
}

.program-card:nth-child(2) ul li i {
    color: var(--db-yellow);
}

.program-card:nth-child(2) .program-link {
    color: var(--db-yellow);
}

.program-card:nth-child(3) .program-icon {
    background: linear-gradient(135deg, var(--db-peach) 0%, var(--db-tan) 100%);
}

.program-card:nth-child(3):hover {
    border-color: var(--db-peach);
}

.program-card:nth-child(3) ul li i {
    color: var(--db-peach);
}

.program-card:nth-child(3) .program-link {
    color: var(--db-peach);
}

.program-card:nth-child(4) .program-icon {
    background: linear-gradient(135deg, var(--db-light-teal) 0%, var(--db-turquoise) 100%);
}

.program-card:nth-child(4):hover {
    border-color: var(--db-light-teal);
}

.program-card:nth-child(4) ul li i {
    color: var(--db-light-teal);
}

.program-card:nth-child(4) .program-link {
    color: var(--db-light-teal);
}

/* ===================================
   VISION SECTION
   =================================== */

.vision {
    background: linear-gradient(135deg, var(--db-teal) 0%, var(--db-turquoise) 50%, var(--db-peach) 100%);
    color: var(--white);
}

.vision-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text .lead {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vision-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.vision-point:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.vision-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.1),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.vision-point:hover .vision-icon {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 24px rgba(0, 0, 0, 0.15),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
}

.vision-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.vision-text-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.vision-text-content p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
    margin: 0;
}

.vision-image {
    display: grid;
    gap: 20px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all var(--transition-normal);
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.vision-card i {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--db-yellow);
}

.vision-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.vision-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery {
    background: var(--db-light-beige);
}

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

.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.05s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(5) { animation-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(6) { animation-delay: 0.25s; }
.gallery-grid .gallery-item:nth-child(7) { animation-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(8) { animation-delay: 0.35s; }
.gallery-grid .gallery-item:nth-child(9) { animation-delay: 0.4s; }
.gallery-grid .gallery-item:nth-child(10) { animation-delay: 0.45s; }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: galleryFadeIn 0.6s ease-out both;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-xl), 0 0 0 3px rgba(121, 181, 192, 0.2);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(121, 181, 192, 0.92) 0%, rgba(232, 184, 153, 0.92) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: all var(--transition-normal);
}

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

.gallery-overlay i {
    font-size: 50px;
    color: var(--white);
    transform: scale(0.5);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay p {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MODAL
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 85%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 0 0 60px rgba(255, 107, 157, 0.3);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 45px;
    font-size: 55px;
    font-weight: 300;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 157, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    font-size: 30px;
    padding: 20px 18px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: 10px;
    z-index: 2001;
}

.modal-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 30px;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    background: linear-gradient(135deg, var(--db-turquoise) 0%, var(--db-teal) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.1),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 24px rgba(0, 0, 0, 0.15),
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
}

.info-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}

.info-item p {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.7;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--db-yellow);
    color: var(--db-brown);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--db-cream);
    padding: 50px 40px;
    border-radius: 25px;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2379B5C0' fill-opacity='0.08'%3E%3Cpath d='M50 5L55 35L85 35L60 55L70 85L50 65L30 85L40 55L15 35L45 35z'/%3E%3Ccircle cx='10' cy='90' r='5' fill='%23F2C94C' fill-opacity='0.1'/%3E%3Ccircle cx='90' cy='10' r='5' fill='%23F2C94C' fill-opacity='0.1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-position: top right;
    background-repeat: no-repeat;
}

.form-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
    z-index: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 15px;
    transition: all var(--transition-normal);
    background: var(--white);
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%237F8C8D' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--db-teal);
    box-shadow: 0 0 0 4px rgba(121, 181, 192, 0.15);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 55px;
    color: var(--text-light);
    transition: all var(--transition-normal);
    pointer-events: none;
    font-size: 15px;
}

.form-group .select-label {
    top: -10px;
    left: 15px;
    background: var(--white);
    padding: 0 8px;
    font-size: 13px;
    color: var(--text-color);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 15px;
    background: var(--white);
    padding: 0 8px;
    font-size: 13px;
    color: var(--primary-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
    display: block;
}

.form-message.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
    display: block;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--db-brown);
    color: var(--white);
    animation: footerSlideUp 0.8s ease-out;
}

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

.footer-top {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    font-size: 40px;
    color: var(--db-yellow);
}

.footer-logo h3 {
    font-size: 26px;
    color: var(--white);
    margin: 0;
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-logo span {
    font-size: 12px;
    color: var(--db-beige);
    font-weight: 500;
}

.footer-tagline {
    font-style: italic;
    color: var(--db-yellow);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-family: 'Quicksand', 'Fredoka', sans-serif;
    font-weight: 600;
    letter-spacing: -0.3px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.footer-section ul li a i {
    font-size: 10px;
    color: var(--db-teal);
}

.footer-section ul li a:hover {
    color: var(--db-teal);
    padding-left: 5px;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--db-yellow);
    margin-top: 3px;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-8px) rotate(360deg) scale(1.2);
    box-shadow: 0 10px 25px rgba(121, 181, 192, 0.4);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-bottom i {
    color: var(--primary-color);
    margin: 0 5px;
}

/* ===================================
   SCROLL TO TOP
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #6BAFBC 0%, #5BA0AD 50%, #79B5C0 100%);
        width: 100vw;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: none;
        padding: 100px 30px 50px;
        gap: 25px;
        z-index: -1;
        overflow-y: auto;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
    }
    
    /* Show theme toggle only on mobile */
    .mobile-theme-toggle {
        display: block !important;
    }

    .nav-menu::before {
        content: '✕';
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 36px;
        color: var(--white);
        cursor: pointer;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 197, 90, 0.9);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: all var(--transition-normal);
        z-index: 10000;
        font-weight: 300;
        line-height: 1;
    }

    .nav-menu::before:hover {
        transform: rotate(90deg) scale(1.1);
        background: rgba(255, 197, 90, 1);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }

    .nav-menu .nav-link {
        color: var(--white) !important;
        font-size: 22px;
        padding: 15px 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        font-weight: 600;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        border-radius: 12px;
        transition: all var(--transition-normal);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
        border-color: var(--accent-color);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu.active {
        left: 0;
        z-index: 9999;
        visibility: visible;
        opacity: 1;
    }

    .hamburger {
        display: flex;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255, 244, 230, 0.2);
        backdrop-filter: blur(10px);
        transition: all var(--transition-normal);
    }

    .hamburger:hover {
        background: rgba(255, 244, 230, 0.3);
        transform: scale(1.05);
    }

    .navbar.scrolled .hamburger {
        background: rgba(107, 175, 188, 0.1);
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 17px;
        padding: 0 15px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat {
        padding: 15px 25px;
    }

    .hero-stat h3 {
        font-size: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

    .vision-image {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 35px 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-info h3 {
        font-size: 28px;
    }

    .info-item {
        margin-bottom: 25px;
        width: 100%;
    }

    .info-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 24px;
    }

    .info-item h4 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 14px;
    }

    .contact-form {
        padding: 35px 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-header h3 {
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 30px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-color: var(--light-color);
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
        line-height: 1.6;
    }

    .typing-text {
        white-space: normal;
        border-right: none;
        animation: none;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .hero-stats {
        width: 100%;
        max-width: 100%;
        gap: 15px;
        padding: 0;
        margin: 30px auto;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
    }

    .hero-stat {
        padding: 15px 25px;
        min-width: auto;
        width: 90%;
        max-width: 350px;
        box-sizing: border-box;
        margin: 0;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .hero-stat h3 {
        font-size: 26px;
    }

    .hero-stat p {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 15px;
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 15px 30px;
        box-sizing: border-box;
    }

    .hero-location {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .scroll-indicator {
        display: none;
    }

    .about {
        padding-top: 40px !important;
    }

    .about-features {
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .stat-card {
        padding: 25px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        max-width: 100%;
    }

    .program-card {
        padding: 30px 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .vision-point {
        flex-direction: column;
        text-align: center;
    }

    .vision-card {
        padding: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        border-radius: 10px;
        aspect-ratio: 1/1;
        height: auto;
        min-height: 150px;
        max-height: 180px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 70%;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
        width: 45px;
        height: 45px;
    }

    .modal-nav {
        padding: 12px 10px;
        font-size: 20px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-item {
        padding: 15px;
    }

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

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

    .footer-logo-image {
        height: 70px;
    }

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

    .footer-section ul li a {
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-mouse {
        width: 28px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100%;
    }

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 50px 0;
    }

    .navbar {
        padding: 12px 0;
        width: 100%;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo span {
        font-size: 11px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 20px;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        padding: 50px 10px 20px 10px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
        padding: 0;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 15px;
        margin-bottom: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        margin: 30px 0;
        width: 100%;
    }

    .hero-stat {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .hero-stat h3 {
        font-size: 32px;
    }

    .hero-location {
        font-size: 13px;
        flex-wrap: wrap;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 0;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .section-description {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        margin: 30px 0;
        width: 100%;
    }

    .hero-stat {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .hero-stat h3 {
        font-size: 32px;
    }

    .hero-location {
        font-size: 13px;
        flex-wrap: wrap;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 0;
    }

    .about-text h3 {
        font-size: 22px;
    }

    .quote-box {
        padding: 20px;
        margin-bottom: 25px;
    }

    .quote-box p {
        font-size: 14px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .feature-icon {
        margin-bottom: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .program-card {
        padding: 25px 20px;
    }

    .program-card h3 {
        font-size: 20px;
    }

    .program-icon i {
        font-size: 40px;
    }

    .vision-card {
        padding: 20px;
    }

    .vision-card h4 {
        font-size: 16px;
    }

    .vision-point h4 {
        font-size: 18px;
    }

    .contact-wrapper {
        gap: 25px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-intro {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .info-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
    }

    .info-item h4 {
        font-size: 15px;
    }

    .info-item p {
        font-size: 13px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-header h3 {
        font-size: 22px;
    }

    .form-header p {
        font-size: 13px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-logo h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 18px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-indicator {
        display: none;
    }

    .modal-caption {
        font-size: 14px;
        bottom: 15px;
        padding: 0 10px;
    }
}

/* Continue with remaining CSS in next part due to length */