/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Child-friendly but professional */
    --primary-orange: #FF6B35;
    --primary-yellow: #F7931E;
    --primary-blue: #4A90E2;
    --primary-green: #7ED321;
    --primary-purple: #9013FE;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-yellow) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Fredoka', cursive;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.btn-outline-primary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
    border-radius: var(--border-radius-sm);
}

.navbar-brand .brand-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    padding: 8px 16px !important;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
    background-color: rgba(255, 107, 53, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation Improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: var(--border-radius-sm);
        box-shadow: var(--shadow-md);
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        text-align: center;
        padding: 12px 16px !important;
        border-radius: var(--border-radius-sm);
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: var(--primary-orange);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: floatBubble 6s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatBubble {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.title-slogan {
    position: absolute;
    top: 30%;
    left: 8%;
    z-index: 3;
    max-width: 600px;
}

.title-slogan h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.title-slogan p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
}

.title-slogan span {
    font-weight: 600;
    color: var(--primary-yellow);
}

.circle-logo {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -50px;
    right: -50px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.circle-logo img {
    width: 150px;
    height: auto;
    animation: logoFloat 4s ease-in-out infinite;
}

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

.yellow-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    top: 40%;
    right: 30%;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
}

.circle-star {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10%;
    right: 10%;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.circle-star img {
    width: 120px;
    height: 120px;
    animation: rotate 8s linear infinite;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-orange);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.feature-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
    padding: var(--section-padding);
    background: var(--white);
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 5px solid;
}

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

.stat-orange { border-left-color: var(--primary-orange); }
.stat-grey { border-left-color: var(--medium-gray); }
.stat-yellow { border-left-color: var(--primary-yellow); }
.stat-blue { border-left-color: var(--primary-blue); }

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-orange .stat-icon { background: var(--primary-orange); }
.stat-grey .stat-icon { background: var(--medium-gray); }
.stat-yellow .stat-icon { background: var(--primary-yellow); }
.stat-blue .stat-icon { background: var(--primary-blue); }

.stat-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin: 0;
}

/* ===== BOOKS SECTION ===== */
.books-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

/* Custom grid for 5 columns */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

.theme-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

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

.theme-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.theme-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.ubuntu-theme .theme-icon { background: var(--primary-orange); }
.democracy-theme .theme-icon { background: var(--primary-yellow); }
.constitution-theme .theme-icon { background: var(--primary-blue); }
.economy-theme .theme-icon { background: var(--primary-green); }
.patriotism-theme .theme-icon { background: var(--medium-gray); }

.theme-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.ubuntu-theme h4 { color: var(--primary-orange); }
.democracy-theme h4 { color: var(--primary-yellow); }
.constitution-theme h4 { color: var(--primary-blue); }
.economy-theme h4 { color: var(--primary-green); }
.patriotism-theme h4 { color: var(--medium-gray); }

.story-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 2rem 0;
}

.story-section h3 {
    color: var(--primary-orange);
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Book Showcase */
.book-showcase-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.book-slideshow {
    position: relative;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mySlides {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.mySlides.active {
    display: block;
}

.mySlides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    vertical-align: top;
}

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

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.slide-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slide-btn.prev { left: 15px; }
.slide-btn.next { right: 15px; }

.book-details {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.book-slideshow,
.book-details {
    margin-top: 0;
}

.slideshow-container,
.back-cover-img {
    margin-top: 0;
}

.book-details h5 {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.back-cover-img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    vertical-align: top;
    margin-top: 0;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: var(--section-padding);
    background: var(--white);
}

.project-content h3 {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.project-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.video-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.project-video {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    min-height: 250px;
}

.project-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.project-logo {
    text-align: center;
}

.bee-logo {
    width: 120px;
    height: auto;
}

.services-list {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.services-list h4 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    width: 20px;
}

.service-item span {
    font-weight: 500;
    color: var(--dark-gray);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-card h3,
.contact-form-card h3 {
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--light-gray);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
    font-size: 1rem;
}

.contact-details a,
.contact-details p {
    color: var(--medium-gray);
    text-decoration: none;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ===== MERCHANDISE SECTION ===== */
.merchandise-section {
    padding: var(--section-padding);
    background: var(--white);
}

.merchandise-content h3 {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.merchandise-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.merchandise-img {
    max-width: 300px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

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

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.footer-brand h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-orange);
    width: 16px;
}

.registration {
    color: var(--medium-gray);
    font-size: 0.8rem;
    margin-bottom: 0;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-divider {
    border-color: var(--medium-gray);
    opacity: 0.3;
    margin: 2rem 0 1rem;
}

.copyright {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-mission {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

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

/* Medium Devices - Tablets (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .title-slogan {
        top: 20%;
        left: 3%;
    }
    
    .title-slogan h1 {
        font-size: 2.5rem;
    }
    
    .circle-logo {
        width: 300px;
        height: 300px;
        bottom: -150px;
        right: -150px;
    }
    
    .circle-logo img {
        width: 150px;
    }
    
    .circle-star {
        width: 250px;
        height: 250px;
        top: -125px;
    }
    
    .circle-star img {
        width: 100px;
        height: 100px;
    }
    
    .yellow-circle {
        width: 50px;
        height: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .col-lg-2-4 {
        width: 50%;
        margin-bottom: 2rem;
    }
    
    .book-showcase-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mySlides img {
        height: 350px;
    }
    
    .back-cover-img {
        height: 350px;
    }
    
    .footer-info {
        text-align: left;
        margin-top: 2rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .project-content,
    .services-list {
        margin-bottom: 2rem;
    }
}

/* Small-Medium Devices - Large Phones/Small Tablets (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .title-slogan {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    
    .title-slogan h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .circle-logo {
        width: 200px;
        height: 200px;
        bottom: -20px;
        right: -20px;
    }
    
    .circle-logo img {
        width: 80px;
    }
    
    .circle-star {
        width: 120px;
        height: 120px;
        top: 5%;
        right: 5%;
    }
    
    .circle-star img {
        width: 50px;
        height: 50px;
    }
    
    .yellow-circle {
        width: 40px;
        height: 40px;
        top: 50%;
        right: 20%;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .col-lg-2-4 {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .feature-card,
    .stat-card,
    .theme-card {
        margin-bottom: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .book-showcase-wrapper {
        flex-direction: column;
    }
    
    .slide-btn {
        padding: 12px;
        font-size: 1.1rem;
    }
    
    .slide-btn.prev { left: 10px; }
    .slide-btn.next { right: 10px; }
    
    .mySlides img,
    .back-cover-img {
        height: 300px;
    }
    
    .contact-info-card,
    .contact-form-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .merchandise-img {
        max-width: 250px;
        margin-top: 2rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.3rem;
    }
}

/* Small Devices - Phones (up to 575px) */
@media (max-width: 575px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .title-slogan {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    
    .title-slogan h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .title-slogan p {
        font-size: 1rem;
    }
    
    .circle-logo {
        width: 150px;
        height: 150px;
        bottom: -10px;
        right: -10px;
    }
    
    .circle-logo img {
        width: 60px;
    }
    
    .circle-star {
        width: 100px;
        height: 100px;
        top: 3%;
        right: 3%;
    }
    
    .circle-star img {
        width: 40px;
        height: 40px;
    }
    
    .yellow-circle {
        width: 30px;
        height: 30px;
        top: 55%;
        right: 15%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card,
    .stat-card,
    .theme-card,
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon,
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .theme-icon {
        width: 60px;
        height: 60px;
    }
    
    .theme-icon img {
        width: 30px;
        height: 30px;
    }
    
    .book-showcase-wrapper {
        flex-direction: column;
    }
    
    .slide-btn {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .slide-btn.prev { left: 5px; }
    .slide-btn.next { right: 5px; }
    
    .mySlides img,
    .back-cover-img {
        height: 220px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand .logo {
        height: 35px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
    
    .nav-link {
        padding: 8px 12px !important;
        font-size: 0.9rem;
    }
    
    .merchandise-img {
        max-width: 200px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-item {
        padding: 0.8rem;
    }
    
    .bee-logo {
        width: 80px;
    }
    
    .story-section {
        padding: 2rem 1.5rem;
    }
    
    .project-video {
        height: 200px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-info {
        text-align: center !important;
        margin-top: 1.5rem;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .registration {
        text-align: center;
    }
}

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

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

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