/* ==========================================
   FAIRFIELD EDUCATION CENTER
   Professional Childcare Website
   ========================================== */

/* ========== ROOT & TYPOGRAPHY ========== */
:root {
    --primary-color: #7FC243;
    --secondary-color: #6B5A3A;
    --accent-color: #9EE86A;
    --danger-color: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8FBFF;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Nunito:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.2rem; line-height: 1.3; }
h3 { font-size: 1.6rem; line-height: 1.4; }
h4 { font-size: 1.3rem; line-height: 1.4; }
h5 { font-size: 1.1rem; line-height: 1.5; }
h6 { font-size: 1rem; line-height: 1.5; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: grid;
    gap: 2rem;
}

.row-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.row-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.row-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ========== NAVBAR ========== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.25rem 0;
}

.navbar-container,
.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-container .btn {
    flex-shrink: 0;
    padding: 0.5rem 1.2rem;
    font-size: 0.88rem;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    min-width: 0;
}

.nav-menu a {
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2.2rem;
}

.logo-img {
    width: 240px;
    height: auto;
    display: block;
    object-fit: contain;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-menu a.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 4px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.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(8px, -8px);
}

.cta-button {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #5AA62A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #F39C12;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background: #5AC970;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ========== HERO SECTION ========== */
.hero {
    background-image: linear-gradient(135deg, rgba(107,190,68,0.08), rgba(124,90,46,0.04)), url('../images/hero.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 760px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1.2s ease;
}

/* Placeholder for hero image */
.hero-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* ========== SECTIONS ========== */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* ========== CARDS ========== */
.card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 0;
}

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

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.program-icon {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card h3 {
    color: var(--primary-color);
}

.program-card p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.program-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ========== FEATURES SECTION ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4A7BA7 100%);
    color: white;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h5 {
    margin-bottom: 0;
    color: white;
}

.author-info p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

/* ========== LOCATIONS SECTION ========== */
.location-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-color);
}

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

.location-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.5rem;
}

.location-phone {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 141, 190, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ========== CONTACT SECTION ========== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    color: var(--primary-color);
}

.info-box p {
    margin-bottom: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #5AC970 100%);
    color: white;
    text-align: center;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ========== FOOTER ========== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 1rem 0;
    background: var(--bg-light);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4A7BA7 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ========== ANIMATIONS ========== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.color-primary { color: var(--primary-color); }
.color-secondary { color: var(--secondary-color); }
.color-accent { color: var(--accent-color); }

.bg-light { background: var(--bg-light); }
.bg-white { background: white; }

.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }

    .container {
        padding: 0 1rem;
    }

    .logo-img {
        width: 180px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 155px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        gap: 1rem;
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-placeholder {
        max-width: 100%;
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    section {
        padding: 40px 0;
    }

    .row-2,
    .row-3,
    .row-4 {
        grid-template-columns: 1fr;
    }

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

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

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

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

/* ========== NEW HOMEPAGE SECTIONS ========== */

/* Announcement Banner */
.announcement-banner {
    background: #f0f4f8;
    padding: 2rem 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.announcement-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.announcement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.announcement-item h3 {
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
}

.link-btn {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.link-btn:hover {
    color: var(--secondary-color);
}

/* Mission Section */
.mission-section {
    background: var(--bg-white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Programs Section */
.programs-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.program-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    padding-bottom: 1.5rem;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.program-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

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

.program-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding: 0 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Locations Section */
.locations-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

/* Detailed locations list (page-specific) */
.locations-list {
    display: block;
}

.location-detail-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 1.5rem;
}

.location-detail-card .location-detail-header h3 {
    color: var(--primary-color);
}

.location-select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    background: var(--bg-white);
}

.hidden { display: none !important; }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.location-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.location-item:hover {
    box-shadow: var(--shadow-md);
}

.location-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.location-item h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: #2C3E50;
    color: #f6f8f2;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    color: #f6f8f2;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(246, 248, 242, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Updated Hero Styles */
.hero {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45)), url('../images/daycare.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    color: #1f3144;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #6B5A3A;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6B5A3A;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.placeholder-image {
    font-size: 6rem;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

/* Updated Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #4a7ba7);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col p a,
.footer-col span {
    color: white;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-col p a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: white;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: white;
}

.footer-bottom p {
    color: white;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: white;
    margin: 0 1rem;
    transition: var(--transition);
}

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

.footer-dev {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-dev strong {
    color: rgba(255, 255, 255, 0.85);
}

.footer-dev a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-dev a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #4a7ba7);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ========== ABOUT PAGE STYLES ========== */

/* Story Section */
.story-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

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

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-vision-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.mission-vision-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-vision-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.member-avatar {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.team-member h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Educators Section */
.educators-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.educator-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.educator-highlight {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.highlight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.educator-highlight h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.educator-highlight p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Accreditations Section */
.accreditations-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.accreditation-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.accred-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.accreditation-item h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.accreditation-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Community Section */
.community-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

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

.community-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========== PROGRAMS PAGE STYLES ========== */

.programs-overview {
    background: var(--bg-light);
    padding: 3rem 0;
}

.program-section {
    background: var(--bg-white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.program-section:nth-child(odd) {
    background: var(--bg-light);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--secondary-color);
}

.program-header-icon {
    min-width: 100px;
    text-align: center;
}

.program-header-icon .program-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 3px solid rgba(255,255,255,0.9);
}

.program-header h2 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.program-age {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.program-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.program-details h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.program-list {
    list-style: none;
}

.program-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.program-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.program-highlights {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.program-highlights h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-highlights p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== LOCATIONS PAGE STYLES ========== */

.locations-detail-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.location-detail-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
}

.location-detail-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.location-detail-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.location-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    margin: 0;
}

.location-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.info-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.location-details h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-list {
    list-style: none;
}

.location-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.location-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.program-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip {
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    font-weight: 500;
}

.address-link {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-color);
    transition: color 0.2s, border-color 0.2s;
    display: inline-block;
}

.address-link:hover {
    color: var(--primary-color);
    border-bottom-style: solid;
}

/* ========== ADMISSIONS PAGE STYLES ========== */

.enrollment-process {
    background: var(--bg-white);
    padding: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--secondary-color);
}

.step-number {
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

.pricing-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-table thead {
    background: var(--primary-color);
    color: white;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:hover {
    background: #f9fafb;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.pricing-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--text-light);
    margin: 0;
}

.application-form-section {
    background: white;
    padding: 4rem 0;
}

.enrollment-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2rem;
    border: none;
}

.form-section legend {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 141, 190, 0.1);
}

.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1rem !important;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input {
    width: auto;
}

/* ── Multiple children ── */
.btn-add-child {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: var(--transition);
}
.btn-add-child:hover {
    background: rgba(107, 190, 68, 0.08);
}

.child-legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.remove-child-btn {
    background: none;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 1rem;
}
.remove-child-btn:hover {
    background: #e74c3c;
    color: #fff;
}

.additional-child {
    border-top: 2px dashed var(--secondary-color);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    animation: fadeInDown 0.25s ease;
}

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

/* ── State Form Section ── */
.state-form-section {
    background: #fff;
    padding: 4rem 0;
}

.state-form-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    flex-wrap: wrap;
}

.state-form-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.state-form-icon {
    font-size: 3rem;
    line-height: 1;
}

.state-form-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.state-form-info p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.state-form-steps {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.state-form-steps li {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.state-form-download {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── File Upload Field ── */
.file-upload-label {
    display: block;
    cursor: pointer;
}

.file-upload-input {
    display: none;
}

.file-upload-text {
    display: block;
    padding: 0.9rem 1.2rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    text-align: center;
    transition: var(--transition);
    background: var(--bg-light);
}

.file-upload-label:hover .file-upload-text,
.file-upload-input:focus + .file-upload-text {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f0fae6;
}

.documents-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.document-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    text-align: center;
}

.document-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.document-item p {
    color: var(--text-light);
}

/* ========== CONTACT PAGE STYLES ========== */

.contact-info-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--secondary-color);
    text-align: center;
}

.contact-info-box h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.contact-info-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-section {
    background: white;
    padding: 4rem 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.form-heading h2 {
    color: var(--primary-color);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 141, 190, 0.1);
}

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

.all-locations-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.locations-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-contact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.location-contact h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.location-contact p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.location-contact a {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.faq-section {
    background: white;
    padding: 4rem 0;
}

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

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .announcement-banner .container {
        grid-template-columns: 1fr;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

    .program-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .location-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-details {
        grid-template-columns: 1fr;
    }

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

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

    .locations-contact-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .nav-menu {
        top: 60px;
    }

    .announcement-banner .container {
        grid-template-columns: 1fr;
    }

    .announcement-item {
        flex-direction: column;
        text-align: center;
    }

    .announcement-item h3 {
        margin-bottom: 0.5rem;
    }

    .link-btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

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

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

    .placeholder-image {
        width: 180px;
        height: 180px;
        font-size: 4rem;
    }

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

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

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

    .mission-content h2 {
        font-size: 1.8rem;
    }

    .mission-content p {
        font-size: 1rem;
    }

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

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

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

    .educator-highlights {
        grid-template-columns: 1fr;
    }

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

    .page-header h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 2rem;
    }

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

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

    .pricing-details {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .enrollment-form {
        padding: 1.5rem;
    }

    .enrollment-form input,
    .enrollment-form select,
    .enrollment-form textarea,
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.5rem;
    }

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

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

    .locations-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .location-detail-header {
        flex-direction: column;
    }

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

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

/* ========== CAREERS PAGE ========== */

.careers-hero {
    background: linear-gradient(135deg, #2C3E50 0%, #4a7ab5 100%);
    padding: 6rem 0 5rem;
    text-align: center;
    color: white;
}

.careers-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.careers-hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.careers-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.careers-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.careers-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--text-dark);
}

/* Benefits */
.careers-benefits-section {
    background: white;
    padding: 5rem 0;
}

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

.benefit-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

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

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Open Positions */
.open-positions-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

/* ── Map + Jobs two-panel layout ── */
.careers-map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.careers-map-panel {
    position: sticky;
    top: 80px;
}

.careers-map {
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.6rem;
}

/* ── Career map pins ── */
.career-pin {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}

.career-pin::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary-color);
}

.career-pin--active {
    background: var(--primary-color);
    transform: scale(1.1);
}

.career-pin--active .career-pin-count,
.career-pin--active .career-pin-label {
    color: white;
}

.career-pin-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.career-pin-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* ── Jobs panel ── */
.careers-jobs-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Location tabs */
.loc-tabs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.loc-tab {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.loc-tab:hover,
.loc-tab.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Type filter */
.positions-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Job cards */
.positions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

.position-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.position-card:last-child {
    border-bottom: none;
}

.position-card:hover {
    background: var(--bg-light);
}

.position-info {
    flex: 1;
}

.position-info h5 {
    margin: 0 0 0.4rem;
    font-size: 0.97rem;
    color: var(--text-dark);
}

.position-info p {
    margin: 0.4rem 0 0;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.position-meta {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

.tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
}

.tag-full {
    background: #e8f5e0;
    color: #3a8a1c;
}

.tag-part {
    background: #fff3e0;
    color: #e07c00;
}

.tag-loc {
    background: #e8f0fb;
    color: #3a5fa0;
}

.no-positions {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-style: italic;
}

.no-positions-text {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.no-jobs-state {
    text-align: center;
    padding: 3rem 2rem;
}

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

.no-jobs-state h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.no-jobs-state p {
    color: var(--text-light);
    max-width: 420px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    flex-shrink: 0;
    border-radius: 50px;
}

/* Apply Section */
.careers-apply-section {
    background: white;
    padding: 5rem 0;
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.apply-info h2 {
    margin-bottom: 1rem;
}

.apply-info p {
    margin-bottom: 1.5rem;
}

.apply-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.apply-checklist li {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.careers-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.careers-form input,
.careers-form select,
.careers-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    background: white;
    transition: var(--transition);
}

.careers-form input:focus,
.careers-form select:focus,
.careers-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 190, 68, 0.12);
}

.resume-upload label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.resume-upload input[type="file"] {
    padding: 0.5rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

.form-success,
.admissions-success {
    text-align: center;
    padding: 2rem;
    background: #f0f9ea;
    border-radius: 12px;
    border: 1px solid #c3e6a8;
}

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

.form-success h3,
.admissions-success h3 {
    color: var(--primary-color);
}

.form-status {
    margin-bottom: 0.5rem;
}

.form-error {
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6c2;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    margin: 0;
}

/* Careers responsive */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apply-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .careers-hero h1 {
        font-size: 2rem;
    }

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

    .position-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-card .btn-sm {
        align-self: flex-start;
    }

    .careers-map-layout {
        grid-template-columns: 1fr;
    }

    .careers-map-panel {
        position: static;
    }

    .careers-map {
        height: 300px;
    }

    .positions-list {
        max-height: none;
    }
}

/* Map Section */
.map-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

/* Location tabs */
.map-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.map-tab {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.map-tab:hover,
.map-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.map-wrapper {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

.map-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.map-link:hover {
    background: #5AA62A;
    color: white;
}

/* Leaflet map container */
.contact-map {
    height: 460px;
    position: relative;
    z-index: 1;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Keep Leaflet controls below sticky navbar */
.leaflet-top,
.leaflet-bottom {
    z-index: 400 !important;
}

/* Custom logo marker — circle head + triangle pointer */
.fec-marker {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, #c5e87a, #5aaa2b 60%, #3d7a1a);
    border: 2.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35), inset 0 1px 3px rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fec-marker::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 11px solid #3d7a1a;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.25));
}

.fec-marker img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.fec-marker--active {
    width: 54px;
    height: 54px;
    background: radial-gradient(circle at 38% 35%, #ffe066, #f5a623 55%, #c97d0e);
    border: 3px solid white;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), inset 0 1px 4px rgba(255,255,255,0.5);
}

.fec-marker--active::after {
    bottom: -12px;
    border-left-width: 9px;
    border-right-width: 9px;
    border-top: 13px solid #c97d0e;
}

.fec-marker--active img {
    width: 34px;
    height: 34px;
}

/* Popup styling */
.map-popup strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.9rem;
}
.map-popup span, .map-popup small {
    color: var(--text-light);
    font-size: 0.82rem;
}
.map-popup a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Info bar below map */
.map-info-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-info-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.map-info-address,
.map-info-phone,
.map-info-hours {
    color: var(--text-dark);
    font-size: 0.88rem;
    display: block;
    line-height: 1.6;
}

.map-info-phone a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}
