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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --warm-pink: #ffb3ba;
    --warm-yellow: #ffdfba;
    --warm-green: #baffc9;
    --warm-blue: #bae1ff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0.8rem 0;
    gap: 0.8rem;
    position: relative;
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
}

.nav-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100px;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 220px;
    min-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-text h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: 2px;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-call,
.nav-email {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 12px;
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.nav-call:hover,
.nav-email:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 1.1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

.email-icon {
    animation: float 3s ease-in-out infinite;
}

.phone-icon {
    animation: shake 2s ease-in-out infinite;
}

.nav-text {
    font-size: 0.85rem;
}

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

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-5deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(5deg);
    }
}

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

@media (max-width: 1200px) {
    .nav-wrapper {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-call,
    .nav-email {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .nav-text {
        font-size: 0.75rem;
    }
    
    .nav-icon {
        font-size: 0.9rem;
    }
    
    .btn-inquire {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 968px) {
    .nav-actions {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-call,
    .nav-email {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        justify-content: center;
        width: 100%;
    }
    
    .nav-text {
        font-size: 0.75rem;
    }
    
    .btn-inquire {
        width: 100%;
        text-align: center;
    }
}

.btn-inquire {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-inquire:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.hero-banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.hero-banner-fallback {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero-banner-fallback .hero-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
    padding: 2rem;
}

.hero-gallery {
    position: relative;
    padding: 1rem;
}

.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 400%;
}

.gallery-slide {
    min-width: 25%;
    width: 25%;
}

.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-image {
    margin: 2rem 0 3rem;
    text-align: center;
}

.babies-image {
    max-width: 100%;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .babies-image {
        max-width: 350px;
    }
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: 1rem;
    line-height: 1.2;
    padding: 0 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-learn-more {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-learn-more:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.welcome-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

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

.welcome-videos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 800px;
}

.welcome-video-top {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.welcome-video-bottom {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.welcome-video {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.banner-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    max-width: 100%;
    object-fit: contain;
}

#bannerVideo {
    max-width: 100%;
    height: auto;
}

.btn-more-details {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-more-details:hover {
    background: #3db5a8;
    transform: translateY(-2px);
}

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

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

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

.program-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Activities Section */
.activities-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.activity-item {
    background: transparent;
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
}

.activity-item:nth-child(even) {
    background: transparent;
}

.activity-item:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.activity-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    max-width: 100%;
}

.activity-item h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.enroll-section {
    text-align: center;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 15px;
    margin-top: 3rem;
}

.enroll-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.btn-enroll {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-enroll:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.team-feature {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.check-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

/* Branches Section */
.branches-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

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

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

.branch-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
}

.branch-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
}

.branch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.branch-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 1.5rem 2.5rem 1rem;
}

.branch-card > p {
    margin: 0 2.5rem;
    padding-bottom: 0.8rem;
}

.branch-address,
.branch-state,
.branch-hours,
.branch-phone,
.branch-email {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.branch-state {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.branch-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 2.5rem 2.5rem;
    flex-wrap: wrap;
}

.branch-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.whatsapp-link {
    background: #25D366;
    color: var(--white);
}

.whatsapp-link:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.map-link {
    background: #4285F4;
    color: var(--white);
}

.map-link:hover {
    background: #357AE8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
}

.link-icon {
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 200px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.gallery-item {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.gallery-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-thumbnail .gallery-placeholder {
    width: 100%;
    height: 100%;
    margin: 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 107, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .play-icon {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--warm-pink) 0%, var(--warm-yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.gallery-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #000;
}

.gallery-item p {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.video-modal-close:hover {
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95%;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 35px;
    }
}

/* Owner Section */
.owner-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.owner-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.owner-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.owner-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.owner-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.owner-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--warm-pink) 0%, var(--warm-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.owner-info h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.owner-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.owner-bio,
.owner-education {
    margin-bottom: 2rem;
}

.owner-bio h4,
.owner-education h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.owner-education ul {
    list-style: none;
    padding-left: 0;
}

.owner-education li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.owner-education li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-icon {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.whatsapp-text {
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 1.5rem;
    }
    
    .whatsapp-text {
        font-size: 0.6rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-top {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

    .nav-bottom {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        height: 70px;
        gap: 0.8rem;
    }

    .logo-image {
        height: 70px;
        max-width: 140px;
        min-width: 120px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text .tagline {
        font-size: 0.7rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-gallery {
        order: -1;
    }
    
    .gallery-image {
        height: 300px;
    }

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

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

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

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

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

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

    .owner-photo {
        width: 200px;
        height: 200px;
    }
    
    .owner-placeholder {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

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

@media (max-width: 768px) {
    .welcome-videos {
        gap: 1.5rem;
    }
    
    .welcome-video-top,
    .welcome-video-bottom {
        width: 100%;
        max-width: 100%;
    }

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

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

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

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

    .logo {
        height: 65px;
        gap: 0.7rem;
    }

    .logo-image {
        height: 65px;
        max-width: 130px;
        min-width: 110px;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .logo-text .tagline {
        font-size: 0.65rem;
    }
}
