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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: #f0f8ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(135, 206, 235, 0.3);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 2px solid #87ceeb;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-image {
    height: 55px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.2);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-logo h2 {
    color: #20b2aa;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(32, 178, 170, 0.3);
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
}

.tagline {
    color: #ff6b35;
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.8rem 1.3rem;
    border-radius: 30px;
    font-family: 'Comfortaa', cursive;
    font-size: 1rem;
    white-space: nowrap;
    position: relative;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1), rgba(72, 209, 204, 0.1));
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.1);
    backdrop-filter: blur(5px);
    overflow: hidden;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, #20b2aa, #48d1cc);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.nav-link:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4);
}

/* Bubble animation effect */
.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 2;
}

.nav-link:hover::after {
    width: 100px;
    height: 100px;
    opacity: 0;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #20b2aa;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Promotional Banner */
.promo-banner {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fff6f0, #fff);
    position: relative;
    overflow: hidden;
}

.promo-badge {
    background: linear-gradient(135deg, #4a90e2, #7e57c2);
    border-radius: 25px;
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}

.sparkle-badge {
    position: relative;
}

.sparkle-1, .sparkle-2, .sparkle-3 {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 { top: -10px; left: 20%; animation-delay: 0s; }
.sparkle-2 { top: 40%; right: 10%; animation-delay: 0.4s; }
.sparkle-3 { bottom: -5px; left: 30%; animation-delay: 0.8s; }

.promo-badge h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.promo-date, .promo-time {
    font-family: 'Comfortaa', cursive;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.promo-desc {
    font-size: 1.1rem;
    margin: 1rem 0;
    opacity: 0.9;
}

.promo-cta {
    display: inline-block;
    background: white;
    color: #4a90e2;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.promo-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Hero Section */
.hero {
    color: white;
    padding: 80px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.4) 0%, rgba(155, 89, 182, 0.3) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(41, 128, 185, 0.15);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 1px 1px 4px rgba(0,0,0,1), 0 0 20px rgba(0,0,0,0.6);
    color: #fff;
    line-height: 1.1;
    font-weight: bold;
    letter-spacing: -1px;
    position: relative;
    z-index: 15;
    font-family: 'Fredoka', cursive;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9), 1px 1px 3px rgba(0,0,0,1), 0 0 15px rgba(0,0,0,0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    position: relative;
    z-index: 15;
    font-family: 'Comfortaa', cursive;
}

/* Hero Images Grid */
.hero-images-grid {
    display: grid;
    grid-template-columns: 0.8fr 3fr 0.8fr;
    gap: 2rem;
    width: 100%;
    max-width: 1500px;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 5;
    align-items: end;
    flex-grow: 1;
    align-content: end;
    min-height: 400px;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.hero-image-main {
    transform: translateY(-20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    height: calc(100% + 40px);
    margin-bottom: -20px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.hero-side-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.hero-image .image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px 15px;
    border-radius: 15px;
    font-size: 1rem;
    text-align: center;
    z-index: 5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    font-weight: 500;
}

/* Common Section Styles */
.section {
    padding: 40px 0;
}

.alt-bg {
    background: #e0f6ff;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #20b2aa;
    position: relative;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #48d1cc;
    border-radius: 2px;
}

/* Image Placeholders */
.placeholder-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(72, 209, 204, 0.2);
    transition: transform 0.3s ease;
}

.placeholder-image:hover {
    transform: scale(1.02);
}

/* Hide placeholder text when image loads */
.placeholder-image[src]:not([src=""]) + .image-placeholder {
    display: none;
}

.image-placeholder {
    text-align: center;
    color: #6c757d;
    background: #f0f8ff;
    padding: 40px 20px;
    border-radius: 15px;
    border: 2px dashed #87ceeb;
    font-size: 1.1rem;
    margin: 20px 0;
}

/* About, vision, mission, events, contact image styling */
.about-image .placeholder-image,
.vision-image .placeholder-image,
.mission-image .placeholder-image,
.events-image .placeholder-image,
.contact-image .placeholder-image {
    height: 250px;
    margin: 1rem 0;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    min-height: 500px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f8fffe;
    padding: 1rem;
    border-radius: 20px;
    border-left: 5px solid #20b2aa;
    box-shadow: 0 5px 20px rgba(72, 209, 204, 0.1);
}

.about-text p {
    margin-bottom: 0.75rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.age-highlight {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.15), rgba(72, 209, 204, 0.15));
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border-left: 4px solid #20b2aa;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    font-family: 'Comfortaa', cursive;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(72, 209, 204, 0.1);
    text-align: center;
}

.about-text strong {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    color: #20b2aa;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 8px 25px rgba(72, 209, 204, 0.15);
    border: 2px solid #b0e0e6;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #20b2aa, #48d1cc, #87ceeb);
    border-radius: 20px 20px 0 0;
}

.about-image .placeholder-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image:hover .placeholder-image {
    transform: scale(1.05);
}

/* About Highlights Section */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.highlight-card {
    background: linear-gradient(135deg, #fff 0%, #f8fffe 100%);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(72, 209, 204, 0.15);
    border: 2px solid #b0e0e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #20b2aa, #48d1cc, #87ceeb);
    border-radius: 20px 20px 0 0;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.25);
    border-color: #48d1cc;
}

.highlight-card i {
    font-size: 2rem;
    color: #20b2aa;
    margin-bottom: 0.75rem;
    display: block;
    transition: all 0.3s ease;
}

.highlight-card:hover i {
    transform: scale(1.1);
    color: #48d1cc;
}

.highlight-card h4 {
    color: #20b2aa;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

.highlight-card p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Special styling for crossed-out mobile icon */
.highlight-card i[style*="line-through"] {
    position: relative;
    opacity: 0.6;
}

.highlight-card i[style*="line-through"]:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #dc3545;
    transform: translateY(-50%) rotate(-15deg);
    border-radius: 2px;
}

/* About Highlights Responsive Design */
@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .highlight-card h4 {
        font-size: 1.2rem;
    }
    
    .highlight-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
    
    .highlight-card {
        padding: 1.25rem;
    }
    
    .highlight-card i {
        font-size: 2.2rem;
    }
    
    .highlight-card h4 {
        font-size: 1.1rem;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e0f6ff 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission-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 100 20"><defs><radialGradient id="vm" cx="50%" cy="50%"><stop offset="0%" stop-color="%2320b2aa" stop-opacity="0.05"/><stop offset="100%" stop-color="%2320b2aa" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="10" r="8" fill="url(%23vm)"/><circle cx="80" cy="10" r="12" fill="url(%23vm)"/></svg>') repeat;
    opacity: 0.6;
}

.vision-mission-section .container {
    position: relative;
    z-index: 2;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Comfortaa', cursive;
    font-weight: 400;
    line-height: 1.6;
}

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

.vision, .mission {
    background: #fff;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(32, 178, 170, 0.15);
    border: 3px solid #b0e0e6;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.vision:hover, .mission:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(32, 178, 170, 0.25);
    border-color: #48d1cc;
}

.vm-header {
    background: linear-gradient(135deg, #20b2aa 0%, #48d1cc 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.vm-header::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 100 20"><defs><radialGradient id="header" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="25" cy="5" r="15" fill="url(%23header)"/><circle cx="75" cy="15" r="10" fill="url(%23header)"/></svg>') repeat;
    opacity: 0.3;
}

.vm-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.vm-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.vm-header h3 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.vm-content {
    padding: 1.5rem;
}

.vm-tagline {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.2rem;
    color: #20b2aa;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1), rgba(72, 209, 204, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(32, 178, 170, 0.2);
    position: relative;
    overflow: hidden;
}

.vm-tagline::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 3rem;
    color: rgba(32, 178, 170, 0.3);
    font-family: serif;
}

.vm-tagline::after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 3rem;
    color: rgba(32, 178, 170, 0.3);
    font-family: serif;
}

.vm-content > p {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: left;
}

.vm-highlights {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.vm-highlights .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    background: rgba(32, 178, 170, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(32, 178, 170, 0.2);
    transition: all 0.3s ease;
    min-width: 80px;
    flex: 1;
}

.vm-highlights .highlight-item:hover {
    background: rgba(32, 178, 170, 0.15);
    transform: translateY(-3px);
    border-color: rgba(32, 178, 170, 0.4);
}

.vm-highlights .highlight-item i {
    font-size: 1.5rem;
    color: #20b2aa;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.vm-highlights .highlight-item:hover i {
    transform: scale(1.1);
    color: #48d1cc;
}

.vm-highlights .highlight-item span {
    font-family: 'Comfortaa', cursive;
    font-weight: 500;
    font-size: 0.9rem;
    color: #2c3e50;
    text-align: center;
    line-height: 1.3;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8ff 100%);
    border-radius: 15px;
    border-left: 4px solid #20b2aa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #20b2aa, #48d1cc);
    transition: width 0.3s ease;
}

.mission-point:hover::before {
    width: 8px;
}

.mission-point:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #fff 0%, #f8fffe 100%);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.1);
}

.point-icon {
    background: linear-gradient(135deg, #20b2aa, #48d1cc);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.point-icon i {
    color: white;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.point-content h4 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    color: #20b2aa;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.point-content p {
    font-family: 'Inter', sans-serif;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Call to Action */
.vm-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.vm-cta::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 100 20"><defs><radialGradient id="cta" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="10" r="15" fill="url(%23cta)"/><circle cx="80" cy="10" r="10" fill="url(%23cta)"/></svg>') repeat;
    opacity: 0.4;
}

.vm-cta h4 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.vm-cta p {
    font-family: 'Comfortaa', cursive;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    text-shadow: none;
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Vision & Mission Responsive Design */
@media (max-width: 968px) {
    .vision-mission {
        gap: 3rem;
    }
    
    .vm-header {
        padding: 2rem 1.5rem;
    }
    
    .vm-content {
        padding: 2rem;
    }
    
    .vm-tagline {
        font-size: 1.2rem;
    }
    
    .mission-point {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .vm-header h3 {
        font-size: 1.7rem;
    }
    
    .vm-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .vm-icon-wrapper i {
        font-size: 2rem;
    }
    
    .vm-tagline {
        font-size: 1.1rem;
        padding: 0.75rem;
    }
    
    .vm-highlights {
        gap: 0.75rem;
    }
    
    .vm-highlights .highlight-item {
        padding: 0.75rem;
        min-width: 80px;
    }
    
    .vm-highlights .highlight-item i {
        font-size: 1.2rem;
    }
    
    .vm-highlights .highlight-item span {
        font-size: 0.8rem;
    }
    
    .mission-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .point-icon {
        margin-top: 0;
    }
    
    .vm-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .vm-cta h4 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vm-header {
        padding: 1.5rem 1rem;
    }
    
    .vm-content {
        padding: 1.5rem;
    }
    
    .vm-tagline {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .vm-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .vm-highlights .highlight-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.75rem;
    }
    
    .vm-highlights .highlight-item i {
        margin-bottom: 0;
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }
    
    .mission-point {
        padding: 1.25rem;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
    }
    
    .point-icon i {
        font-size: 1rem;
    }
    
    .vm-cta {
        padding: 2rem 1rem;
    }
    
    .vm-cta h4 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Events Section */
.events-container {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(72, 209, 204, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #b0e0e6;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(32, 178, 170, 0.25);
}

.event-date {
    background: #48d1cc;
    color: white;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    font-family: 'Fredoka', cursive;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: 'Comfortaa', cursive;
    font-weight: 500;
}

.event-details {
    padding: 1rem;
    flex: 1;
}

.event-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

.event-details p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.event-details p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(72, 209, 204, 0.1);
    border: 1px solid #b0e0e6;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    color: #20b2aa;
    font-size: 1.5rem;
    width: 40px;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

.contact-item p {
    font-family: 'Inter', sans-serif;
}

/* Inquiry Form */
.inquiry-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(72, 209, 204, 0.15);
    border: 1px solid #b0e0e6;
}

.inquiry-form h3 {
    color: #20b2aa;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0f6ff;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #48d1cc;
    box-shadow: 0 0 0 3px rgba(72, 209, 204, 0.1);
    transform: translateY(-1px);
}

.submit-btn {
    width: 100%;
    background: #20b2aa;
    color: white;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    background: #48d1cc;
}

.submit-btn i {
    margin-right: 0.5rem;
}

/* Social Media Section */
.social-section {
    background: linear-gradient(135deg, #6bb6ff 0%, #4dabf7 50%, #339af0 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-section .container {
    position: relative;
    z-index: 2;
}

.social-section h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 3px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.4);
}

.social-link.facebook { 
    background: linear-gradient(135deg, #4267b2, #365899);
}

.social-link.instagram { 
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
}

.social-section p {
    font-family: 'Comfortaa', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #495057 0%, #343a40 50%, #212529 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #20b2aa, #48d1cc, #87ceeb, #6bb6ff);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Logo Styling */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(135, 206, 235, 0.3);
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-logo-text h4 {
    color: #87ceeb;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.footer-tagline {
    color: #ff6b35;
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
    line-height: 1;
}

.footer-brand > p {
    color: #e9ecef;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #87ceeb;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 0.2rem 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #87ceeb;
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(135, 206, 235, 0.3);
}

.footer-section p {
    color: #e9ecef;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: #87ceeb;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(135, 206, 235, 0.2);
    color: #adb5bd;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Paint Splash Decorative Elements */
.paint-splashes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.paint-splash {
    position: absolute;
    opacity: 0.7;
    transition: transform 0.3s ease;
    height: auto;
}

.paint-splash:hover {
    transform: rotate(8deg) scale(1.1);
}

/* Individual paint splash positioning with random sizes */
.paint-splash-1 {
    top: 5%;
    left: 2%;
    width: 480px;
    animation: float1 6s ease-in-out infinite;
    transform: rotate(-15deg);
}

.paint-splash-2 {
    top: 18%;
    right: 3%;
    width: 420px;
    animation: float2 8s ease-in-out infinite;
    transform: rotate(25deg);
}

.paint-splash-3 {
    top: 35%;
    left: -2%;
    width: 550px;
    animation: float3 7s ease-in-out infinite;
    transform: rotate(-8deg);
}

.paint-splash-4 {
    top: 55%;
    right: 5%;
    width: 390px;
    animation: float4 9s ease-in-out infinite;
    transform: rotate(35deg);
}

.paint-splash-5 {
    top: 72%;
    left: 8%;
    width: 510px;
    animation: float5 5s ease-in-out infinite;
    transform: rotate(-22deg);
}

.paint-splash-6 {
    top: 28%;
    left: 45%;
    width: 460px;
    animation: float6 6.5s ease-in-out infinite;
    transform: rotate(18deg);
}

/* Enhanced floating animations for paint splashes */
@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(-15deg); }
    50% { transform: translateY(-15px) rotate(-12deg); }
}

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

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(-8deg); }
    50% { transform: translateY(-12px) rotate(-5deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(35deg); }
    50% { transform: translateY(-18px) rotate(32deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) rotate(-22deg); }
    50% { transform: translateY(-25px) rotate(-18deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) rotate(18deg); }
    50% { transform: translateY(-22px) rotate(15deg); }
}

/* Gallery Section */
.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Comfortaa', cursive;
    font-weight: 400;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(72, 209, 204, 0.2);
    overflow: hidden;
    border: 2px solid #b0e0e6;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 1;
    display: block;
}

.carousel-slide.portrait .gallery-image {
    height: 90%;
    width: auto;
}

.carousel-slide.landscape .gallery-image {
    width: 90%;
    height: auto;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(32, 178, 170, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'Comfortaa', cursive;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(32, 178, 170, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.carousel-btn:hover {
    background: rgba(32, 178, 170, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255,255,255,0.9);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1ecf1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #87ceeb;
}

.indicator.active {
    background: #20b2aa;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.4);
}

.indicator:hover {
    background: #48d1cc;
    transform: scale(1.1);
}

/* Thumbnail Grid for Mobile */
.thumbnail-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.thumbnail-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail-item:hover {
    transform: scale(1.05);
    border-color: #20b2aa;
}

.thumbnail-item.active {
    border-color: #48d1cc;
    box-shadow: 0 4px 15px rgba(72, 209, 204, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* Auto-play progress bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(32, 178, 170, 0.3);
    transition: width 0.1s linear;
    z-index: 5;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #20b2aa;
    width: var(--progress, 0%);
    transition: width 0.1s linear;
}

/* Holiday Clubs Container */
.holiday-clubs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto 2rem;
    max-width: 1200px;
}

.holiday-club-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(72, 209, 204, 0.15);
    border: 2px solid #e0f6ff;
    transition: transform 0.3s ease;
}

.holiday-club-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(72, 209, 204, 0.25);
}

.holiday-club-title {
    color: #20b2aa;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #48d1cc;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

.holiday-club-title i {
    margin-right: 0.5rem;
}

/* Responsive design for holiday clubs */
@media (max-width: 1024px) {
    .holiday-clubs-container {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .holiday-clubs-container {
        padding: 0 1rem;
    }
    
    .holiday-club-section {
        padding: 1.25rem;
    }
    
    .holiday-club-title {
        font-size: 1.2rem;
    }

    .event-card {
        flex-direction: row;
    }

    .event-date {
        min-width: 70px;
    }
}

/* Team Section */
.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Comfortaa', cursive;
    font-weight: 400;
}

.team-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(72, 209, 204, 0.15);
    border: 1px solid #b0e0e6;
    transition: all 0.3s ease;
    align-items: stretch;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(32, 178, 170, 0.2);
}

.member-photo {
    position: relative;
    display: flex;
}

.member-photo .placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(72, 209, 204, 0.2);
}

/* Specific styling for team member 2 to crop from bottom and match height */
.team-member:nth-child(2) .member-photo .placeholder-image {
    object-position: center 20%;
    object-fit: cover;
}

.member-info h3 {
    color: #20b2aa;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: 'Fredoka', cursive;
}

.member-info h4 {
    color: #48d1cc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Comfortaa', cursive;
}

.member-info p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.member-contact {
    background: #f0f8ff;
    border-radius: 10px;
    padding: 0.75rem;
    border-left: 4px solid #20b2aa;
}

.member-contact p {
    margin-bottom: 0.25rem;
    color: #2c3e50;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.member-contact p:last-child {
    margin-bottom: 0;
}

.member-contact i {
    color: #20b2aa;
    margin-right: 0.5rem;
    width: 16px;
    font-size: 0.9rem;
}

/* Team Section Responsive Design */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .member-photo .placeholder-image {
        height: 250px;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-info h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .member-photo .placeholder-image {
        height: 200px;
        max-width: 200px;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
}

/* Footer Contact Links */
.footer-section a {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 2px 4px;
    margin: -2px -4px;
    font-weight: 500;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section a[href^="tel:"]:hover {
    background-color: rgba(76, 175, 80, 0.2);
    color: #81C784;
}

.footer-section a[href^="mailto:"]:hover {
    background-color: rgba(33, 150, 243, 0.2);
    color: #64B5F6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .hero-content {
        padding: 2rem 1rem 1rem;
    }

    .hero-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem 1rem;
    }

    .hero-image-main {
        transform: translateY(0);
        order: -1;
    }

    .hero-main-image {
        height: 450px;
    }

    .hero-side-image {
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .social-links {
        flex-wrap: wrap;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: auto;
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .paint-splash-3,
    .paint-splash-5,
    .paint-splash-6 {
        display: none;
    }
    
    .paint-splash {
        opacity: 0.5;
    }
    
    .paint-splash-1 {
        width: 200px;
    }
    
    .paint-splash-2 {
        width: 180px;
    }
    
    .paint-splash-4 {
        width: 160px;
    }

    .thumbnail-grid {
        display: grid;
    }

    /* Gallery responsive styles */
    .gallery-carousel {
        margin: 0 auto 2rem;
        border-radius: 15px;
    }

    .carousel-container {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .image-caption {
        font-size: 0.9rem;
        padding: 8px 16px;
        bottom: 15px;
    }

    .carousel-indicators {
        padding: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 35px;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

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

    .hero-content {
        padding: 0.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

    .logo-image {
        height: 30px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .paint-splash {
        display: none;
    }
}

/* Contact Section Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0.25rem 0;
    line-height: 1.5;
}

/* Clickable contact links */
.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 2px 4px;
    margin: -2px -4px;
}

.contact-item a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 87, 34, 0.1);
    text-decoration: underline;
}

/* Phone links */
.contact-item a[href^="tel:"] {
    font-weight: 500;
}

.contact-item a[href^="tel:"]:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

/* Email links */
.contact-item a[href^="mailto:"] {
    font-weight: 500;
}

.contact-item a[href^="mailto:"]:hover {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

/* Map/address links */
.contact-item a[href*="maps"] {
    display: inline-block;
    line-height: 1.6;
    font-weight: 500;
}

.contact-item a[href*="maps"]:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: #FF9800;
}

.contact-item a[href*="maps"] i.fa-external-link-alt {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.contact-item a[href*="maps"]:hover i.fa-external-link-alt {
    opacity: 1;
}

/* Intellectual Property Rights Section */
.ip-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ip-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ip-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #ff6b35;
}

.ip-notice h4 {
    color: #ff6b35;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.ip-notice h4 i {
    margin-right: 0.5rem;
    color: #ff6b35;
}

.ip-notice p {
    color: #856404;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.ip-permissions {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(72, 209, 204, 0.1);
    border: 1px solid #b0e0e6;
}

.ip-permissions h4 {
    color: #20b2aa;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.ip-permissions h4 i {
    margin-right: 0.5rem;
    color: #20b2aa;
}

.ip-permissions ul {
    list-style: none;
    padding: 0;
}

.ip-permissions li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #20b2aa;
    line-height: 1.6;
}

.ip-permissions li strong {
    color: #20b2aa;
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
}

.ip-contact {
    background: #e8f5e8;
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #28a745;
}

.ip-contact h4 {
    color: #28a745;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.ip-contact h4 i {
    margin-right: 0.5rem;
    color: #28a745;
}

.ip-contact p {
    color: #155724;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.permission-contacts {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.permission-contacts p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #155724;
}

.permission-contacts p:last-child {
    margin-bottom: 0;
}

.permission-contacts i {
    margin-right: 0.5rem;
    color: #28a745;
    width: 16px;
}

.permission-contacts a {
    color: #155724;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 2px 4px;
    margin: -2px -4px;
}

.permission-contacts a[href^="tel:"]:hover {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    text-decoration: underline;
}

.permission-contacts a[href^="mailto:"]:hover {
    background-color: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    text-decoration: underline;
}

.ip-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.copyright-badge {
    background: linear-gradient(135deg, #20b2aa, #48d1cc);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.copyright-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.copyright-badge h3 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.copyright-badge p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.protection-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.protection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.protection-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.protection-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.protection-item span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Comfortaa', cursive;
}

.legal-notice {
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #dc3545;
}

.legal-notice h4 {
    color: #dc3545;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-notice p {
    color: #721c24;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-notice p:last-child {
    margin-bottom: 0;
}

.legal-notice .small-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* IP Rights Responsive Design */
@media (max-width: 768px) {
    .ip-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ip-notice,
    .ip-permissions,
    .ip-contact,
    .legal-notice {
        padding: 1.5rem;
    }
    
    .copyright-badge {
        padding: 1.5rem;
    }
    
    .protection-icons {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .protection-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .protection-icons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .ip-text {
        gap: 1.5rem;
    }
    
    .ip-visual {
        gap: 1.5rem;
    }
}

/* Credibility Section */
.credibility-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 2.5rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.credibility-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 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"/><circle cx="50" cy="10" r="15" fill="url(%23a)"/><circle cx="90" cy="10" r="8" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.3;
}

.credibility-content {
    position: relative;
    z-index: 2;
}

.credibility-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.credibility-content > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.credibility-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.badge-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.credibility-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.credibility-link:hover {
    color: inherit;
    text-decoration: none;
}

.credibility-badge {
    height: 60px;
    width: auto;
    margin-bottom: 0.75rem;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

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

.badge-item h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.badge-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design for Credibility Section */
@media (max-width: 768px) {
    .credibility-section {
        padding: 3rem 0;
    }
    
    .credibility-content h3 {
        font-size: 2rem;
    }
    
    .credibility-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .badge-item {
        padding: 1.5rem;
    }
    
    .credibility-badge {
        height: 60px;
    }
}