html, body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* Enhanced Enrollment Section Layout */
.enrollment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 16px 40px 16px;
    max-width: 900px;
    margin: 0 auto;
}
.enrollment-section h2 {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 18px;
}
.enrollment-section p {
    margin-bottom: 32px;
    font-size: 1.15em;
}
.enrollment-section .enrollment-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.enrollment-section .enrollment-buttons button,
.enrollment-section .enrollment-buttons a {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    min-width: 180px;
    box-sizing: border-box;
}
.enrollment-section .enrollment-buttons .btn-primary {
    background: #ffc107;
    color: #276c36;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(45,122,62,0.10);
    transition: background 0.2s, color 0.2s;
}
.enrollment-section .enrollment-buttons .btn-primary:hover {
    background: #fff;
    color: #276c36;
}
.enrollment-section .enrollment-buttons .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}
.enrollment-section .enrollment-buttons .btn-outline:hover {
    background: #fff;
    color: #276c36;
}
/* Enhanced Enrollment Section Alignment */
.enrollment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 16px 40px 16px;
}
.enrollment-section h2, .enrollment-section h1 {
    margin-bottom: 12px;
}
.enrollment-section p {
    margin-bottom: 32px;
    font-size: 1.15em;
}
.enrollment-section .enrollment-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.enrollment-section .enrollment-buttons button,
.enrollment-section .enrollment-buttons a {
    margin: 0;
}
/* Balance checklist image with text */
.documents-section {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.documents-checklist {
    flex: 1 1 0;
}
.documents-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.documents-image img {
    max-height: 420px; /* Adjust as needed to match checklist height */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
/* Highlighted event checkbox labels for admin visibility */
.event-checkbox-label {
    font-weight: bold;
    font-size: 1.15em;
    color: #155724;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 8px 12px;
    margin-bottom: 10px;
    display: block;
    border-radius: 4px;
}
.event-checkbox-label.important {
    color: #721c24;
    background: #f8d7da;
    border-left-color: #dc3545;
}
/* Modern FAQ Layout */
.modern-faq-layout {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.faq-categories-nav {
    flex: 0 0 260px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-category-tab {
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    box-shadow: 0 2px 8px rgba(45,122,62,0.06);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-category-tab.active, .faq-category-tab:hover, .faq-category-tab:focus {
    background: #fff;
    color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(45,122,62,0.10);
}
.faq-qa-panel {
    flex: 1 1 400px;
    max-width: 700px;
}
.faq-item-modern {
    margin-bottom: 18px;
}
.faq-question-modern {
    background: var(--white);
    border-radius: 12px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 22px 28px;
    box-shadow: 0 2px 8px rgba(45,122,62,0.06);
    margin-bottom: 0;
    outline: none;
    transition: box-shadow 0.2s, color 0.2s;
}
.faq-question-modern[aria-expanded="true"], .faq-question-modern:hover, .faq-question-modern:focus {
    color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(45,122,62,0.10);
}
.faq-answer-modern {
    background: var(--white);
    border-radius: 12px;
    margin-top: 6px;
    box-shadow: 0 2px 8px rgba(45,122,62,0.06);
    padding: 18px 28px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    animation: fadeInFaq 0.3s;
}
@media (max-width: 900px) {
    .modern-faq-layout {
        flex-direction: column;
        gap: 24px;
    }
    .faq-categories-nav {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 18px;
    }
    .faq-category-tab {
        flex: 1 1 0;
        min-width: 120px;
        padding: 14px 10px;
        font-size: 1rem;
    }
    .faq-qa-panel {
        max-width: 100%;
    }
}
/* =============================================
   FAQ SECTION STYLES
   ============================================= */

.faq-section {
    background: var(--light-gray);
    padding: 60px 0 40px 0;
}

.faq-category {
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(45, 122, 62, 0.07);
    padding: 32px 28px 18px 28px;
}

.faq-category h3 {
    color: var(--primary-green);
    font-size: 1.35rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq-item {
    margin-bottom: 18px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 12px;
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: var(--light-gray);
    border: 1.5px solid var(--light-green);
    border-radius: 10px;
    width: 100%;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 14px 18px;
    outline: none;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(45,122,62,0.06);
    transition: color 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.faq-question:hover, .faq-question:focus {
    background: var(--white);
    border-color: var(--primary-green);
    color: var(--primary-green);
    box-shadow: 0 4px 16px rgba(45,122,62,0.10);
}
.faq-question[aria-expanded="true"] {
    color: var(--primary-green);
}
.faq-question .toggle {
    font-size: 1.5rem;
    margin-left: 12px;
    font-weight: 700;
    transition: color 0.2s;
}

.faq-answer {
    margin-top: 8px;
    padding-left: 2px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeInFaq 0.3s;
}

@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .faq-category {
        padding: 18px 8px 8px 8px;
    }
    .faq-section {
        padding: 30px 0 20px 0;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.97rem;
    }
}
/* =============================================
   Kidvantage Learning Center - Stylesheet
   ============================================= */

/* CSS Variables for Easy Customization */
:root {
    --primary-green: #2d7a3e;
    --light-green: #4caf50;
    --dark-green: #1b5e20;
    --accent-gold: #ffd700;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 65px; /* Space for fixed header */
    transition: padding-top 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER STYLES
   ============================================= */

.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    box-shadow: 0 4px 6px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.header.scrolled .header-main {
    padding: 6px 0;
}

.header.scrolled .logo img {
    height: 42px;
}

.header.scrolled .logo h1 {
    font-size: 16px;
}

.header.scrolled .logo p {
    font-size: 9px;
}

.header.hidden {
    transform: translateY(-100%);
}

/* Main Header */
.header-main {
    padding: 8px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    transition: padding 0.3s ease;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 10px;
}

/* Navigation */
nav {
    position: relative;
    flex-grow: 0;
    display: flex;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    flex-shrink: 0;
    margin-left: auto;
}

.header-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-contact a:hover {
    color: var(--accent-gold);
}

.header-contact i {
    margin-right: 4px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo a:hover {
    transform: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.logo img:hover {
    filter: none;
    transform: none;
}

.logo h1 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    transition: font-size 0.3s ease;
}

.logo p {
    color: var(--accent-gold);
    font-size: 10px;
    font-style: italic;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: font-size 0.3s ease;
}



.menu-toggle {
    display: none;
    background: var(--white);
    border: none;
    color: var(--primary-green);
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: var(--light-gray);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 10px;
    display: block;
    font-weight: 600;
    font-size: 12px;
    border-radius: 5px;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.nav-menu li a::before {
    display: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.nav-menu li:last-child a {
    background: var(--accent-gold);
    color: var(--dark-green);
    font-weight: 700;
    padding: 8px 12px;
    box-shadow: none;
    margin-left: 3px;
}

.nav-menu li:last-child a::before {
    display: none;
}

.nav-menu li:last-child a:hover {
    background: #ffed4e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1100px) {
    .header-main .container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .header-contact {
        order: 2;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .header {
        position: relative;
    }

    .header-main {
        padding: 10px 0;
    }

    .header-main .container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .logo {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }
    
    .logo a {
        gap: 10px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 16px;
    }
    
    .logo p {
        font-size: 9px;
    }
    
    .header-contact {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 10px;
        order: 2;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }
    
    .header-contact a {
        font-size: 10px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 20px;
    }
    
    nav {
        width: 100%;
        order: 3;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: var(--primary-green);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        text-align: center;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 8px 0;
    }
    
    .logo img {
        height: 40px;
    }

    .logo h1 {
        font-size: 14px;
    }

    .logo p {
        font-size: 8px;
    }
    
    .logo a {
        gap: 8px;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 6px;
        font-size: 9px;
    }
    
    .header-contact a {
        font-size: 9px;
    }
}

/* =============================================
   HOMEPAGE STYLES
   ============================================= */

/* Homepage Slideshow Section */
.homepage-slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.slideshow-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slideshow-track.dragging {
    transition: none;
}

.slideshow-slide {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slideshow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 60px 20px;
    z-index: 2;
}

.slideshow-content {
    text-align: center;
}

.slideshow-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.slideshow-description {
    color: var(--white);
    font-size: 22px;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

/* Slideshow Navigation Arrows */
.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-prev {
    left: 30px;
}

.slideshow-next {
    right: 30px;
}

/* Slide Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slideshow-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slideshow-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slideshow-indicators .indicator.active {
    background: var(--accent-gold);
    border-color: var(--white);
    transform: scale(1.3);
}

/* Slideshow Placeholder (no images) */
.slideshow-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .homepage-slideshow {
        height: 400px;
    }
    
    .slideshow-overlay {
        padding: 40px 20px;
    }
    
    .slideshow-content {
        max-width: 100%;
    }

    .slideshow-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .slideshow-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .slideshow-prev,
    .slideshow-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slideshow-prev {
        left: 10px;
    }

    .slideshow-next {
        right: 10px;
    }

    .slideshow-indicators {
        bottom: 15px;
        gap: 6px;
    }

    .slideshow-indicators .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .homepage-slideshow {
        height: 300px;
    }

    .slideshow-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .slideshow-description {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slideshow-overlay {
        padding: 30px 15px;
    }

    .slideshow-prev,
    .slideshow-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slideshow-prev {
        left: 8px;
    }

    .slideshow-next {
        right: 10px;
    }
}


/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"rgba(255,255,255,0.05)\" d=\"M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>') no-repeat bottom center;
    background-size: cover;
    opacity: 0.3;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--dark-green);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--light-gray);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 30px rgba(45, 122, 62, 0.2);
    border-color: var(--light-green);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 6px 15px rgba(45, 122, 62, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.4);
}

.feature-icon i {
    font-size: 40px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 23px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-white {
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .features-section {
        padding: 50px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin: 15px 0 10px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .features-section {
        padding: 40px 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin: 12px 0 8px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .cta-section {
        padding: 50px 15px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* =============================================
   ADMIN PANEL STYLES
   ============================================= */

/* Admin Header */
.admin-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 8px 0 12px 0;
    box-shadow: 0 4px 6px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-header h1 {
    color: var(--white);
    font-size: 26px;
    margin: 0;
    font-weight: 700;
}

.admin-header h1 i {
    margin-right: 10px;
    color: var(--accent-gold);
}

/* Admin Navigation */
.admin-nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.admin-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.admin-nav a i {
    margin-right: 5px;
}

/* Admin Content */
.admin-content {
    padding: 16px 20px 40px 20px;
    background: var(--light-gray);
    min-height: calc(100vh - 100px);
}

/* Admin Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(45, 122, 62, 0.2);
}

.card-content {
    padding: 30px;
}

.card-content.text-center {
    text-align: center;
}

/* Admin Tables */
.admin-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
}

.admin-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}

.admin-table tbody tr:hover {
    background: rgba(45, 122, 62, 0.05);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success::before {
    content: "✓";
    font-weight: bold;
    font-size: 18px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-danger::before {
    content: "⚠";
    font-weight: bold;
    font-size: 18px;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group-inline input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.form-group-inline label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

/* Button Variations */
.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-success {
    background: var(--light-green);
    color: var(--white);
}

.btn-success:hover {
    background: var(--primary-green);
}

.btn-danger {
    background: #dc3545;
    color: var(--white);
}

.btn-danger:hover {
    background: #c82333;
}

.btn-secondary {
    background: #6c757d;
    color: var(--white);
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Image Preview */
.image-preview {
    margin-top: 15px;
    max-width: 100%;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
}

.current-image {
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-important {
    background: #dc3545;
    color: var(--white);
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 20px;
}

.login-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-header p {
    color: var(--text-dark);
    font-size: 14px;
    opacity: 0.8;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.login-footer a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
    .admin-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .admin-header h1 {
        font-size: 22px;
        text-align: center;
    }

    .admin-nav {
        width: 100%;
        justify-content: center;
    }

    .admin-nav a {
        padding: 8px 15px;
        font-size: 13px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .admin-table {
        overflow-x: auto;
    }

    .admin-table table {
        min-width: 600px;
    }

    .login-box {
        padding: 30px 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
    }
}
