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

:root {
    --primary-color: #4CAF50;
    --dark-color: #333;
    --light-gray: #f4f4f4;
    --text-gray: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-background-img {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 400px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 1.3;
}

.logo img {
    height: 50px;
    width: 150px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.btn-contact {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: #45a049;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slideshow-slide.fade {
    opacity: 0;
    animation: fade 15s ease-in-out infinite;
}

.slideshow-slide.fade:nth-child(1) {
    animation-delay: 0s;
}

.slideshow-slide.fade:nth-child(2) {
    animation-delay: 5s;
}

.slideshow-slide.fade:nth-child(3) {
    animation-delay: 10s;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsZoom 5s ease-in-out forwards;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-title {
    font-size: 4rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-accent {
    color: var(--primary-color);
    font-style: italic;
}

.hero-description {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-video {
    background: transparent;
    color: white;
    border: 2px solid white;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.5rem;
}

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

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

.btn-video:hover .play-icon {
    background: var(--primary-color);
    color: white;
}

/* Experience Section */
.experience-section {
    padding: 4rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.year-block {
    text-align: center;
}

.year-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.year-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.year-block h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.stats-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 1.8rem;
}

.stat-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-title {
    font-size: 4rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-accent {
    color: var(--primary-color);
    font-style: italic;
}

.hero-description {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* About Us Section */
.about-us {
    padding: 4rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

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

.about-text {
    max-width: 800px;
}

.about-text .subtitle {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.about-text > p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-gray);
}

.about-feature-item .checkmark {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Programs Section */
.programs {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.programs .subtitle {
    color: var(--primary-color);
    font-style: italic;
}

.programs h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.programs .description {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

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

.program-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
    cursor: pointer;
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.3s;
}

.program-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.75);
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #45a049;
}

/* Facilities Section */
.facilities {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.facility-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.facility-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    height: 420px;
}

.facility-overlay .container {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.facility-content-left .subtitle {
    color: var(--primary-color);
    font-style: italic;
}

.facility-content-left h2 {
    font-size: 3rem;
    color: white;
    margin: 1rem 0 2rem;
}

.facility-content-right {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.facility-overlay .subtitle {
    color: var(--primary-color);
    font-style: italic;
}

.facility-overlay h2 {
    font-size: 3rem;
    color: white;
    margin: 1rem 0 2rem;
}

.link-arrow {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-box {
    background: white;
    padding: 2.5rem;
    text-align: center;
    box-shadow: none;
    border-right: 1px solid #eee;
    transition: background 0.3s;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box:hover {
    background: #f0f8f0;
    transform: none;
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 3rem;
    color: #ff9800;
}

.music-icon {
    height: 90px;
    width: 90px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Classes Section */
.classes {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.classes .subtitle {
    color: #ff9800;
    font-style: italic;
}

.classes h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.classes .description {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

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

.class-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.class-card:hover {
    transform: translateY(-5px);
}

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

.class-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.class-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Join Class Section */
.join-class {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-content p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
    font-size: 1rem;
}

.skills-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.skill-item h4 {
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress {
    background: var(--primary-color);
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.skill-item span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.join-class-img {
    padding: 4rem 0;
    background: white;
}

.join-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.join-image-col {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.join-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.join-content-col .subtitle {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.join-content-col h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.join-content-col > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.join-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.join-feature-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.join-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--dark-color);
}

.join-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

.testimonials .subtitle {
    color: var(--primary-color);
    font-style: italic;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.testimonials .description {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

/* ===== ABOUT US PAGE ===== */

/* Breadcrumb */
.breadcrumb {
    background: #f9f9f9;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb a,
.breadcrumb span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

/* About Hero */
.about-hero,
.contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    position: relative;
    overflow: hidden;
}

.hero-bg-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(76,175,80,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="white"/><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-overlay-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.03));
}

.about-hero h1,
.contact-hero h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 0.8rem;
    position: relative;
    z-index: 2;
}

/* Quick Contact Section */
.quick-contact {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f9f9f9, white);
    border: 2px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-contact-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
    transform: translateY(-5px);
}

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

.quick-contact-btn h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.quick-contact-btn p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Hero */
.about-hero,
.contact-hero {
    position: relative;
}

/* About Content Section */
.about-content-section {
    padding: 4rem 0;
    background: white;
}

.about-header {
    max-width: 900px;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.about-header .subtitle {
    color: var(--primary-color);
    font-style: italic;
}

.about-header h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.about-header p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CEO Section */
.ceo-section {
    margin-top: 3rem;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.ceo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.ceo-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.ceo-description {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.stat-box h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Teachers Section */
.teachers-section {
    padding: 4rem 0;
    background: #f9f9f9;
    text-align: center;
}

.teachers-section .subtitle {
    color: var(--primary-color);
    font-style: italic;
}

.teachers-section h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.teachers-section .description {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

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

.teacher-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.teacher-card:hover {
    transform: translateY(-5px);
}

.teacher-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.teacher-info {
    padding: 1.5rem;
    text-align: center;
}

.teacher-info .specialty {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.teacher-info h3 {
    color: var(--dark-color);
    margin-bottom: 0;
}

/* ===== CONTACT US PAGE ===== */

/* Contact Content Section */
.contact-content-section {
    padding: 4rem 0;
    background: white;
}

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

/* Contact Form */
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-form-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
}

.form-header h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.6rem;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
    background: #f9fff9;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

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

/* Contact Info Section */
.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
}

.info-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9f9f9, white);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.12);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
    line-height: 1;
}

.info-content h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.info-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.social-btn:hover {
    background: #45a049;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f9f9f9, white);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
}

/* Why Choose Section */
.why-choose-contact {
    padding: 4rem 0;
    background: white;
}

.why-choose-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s;
}

.why-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.why-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.why-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== DROPDOWN SECTIONS ===== */

.dropdown-section {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.dropdown-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dropdown-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.dropdown-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.dropdown-container {
    max-width: 900px;
    margin: 0 auto;
}

.dropdown-btn {
    width: 100%;
    padding: 1.5rem;
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

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

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    background: white;
    padding: 2rem;
    border: 2px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.dropdown-content.show {
    max-height: 1000px;
    display: block;
}

.dropdown-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dropdown-content ul {
    list-style: none;
    margin: 1rem 0;
}

.dropdown-content ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.view-more-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.view-more-link:hover {
    color: #45a049;
}

/* ===== CLASSES PAGE ===== */

.classes-hero,
.teachers-hero,
.pricing-hero {
    padding: 3rem 0;
    background: white;
}

.classes-hero h1,
.teachers-hero h1,
.pricing-hero h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.classes-hero p,
.teachers-hero p,
.pricing-hero p {
    color: var(--text-gray);
    font-size: 1rem;
}

.classes-content,
.teachers-content,
.pricing-content {
    padding: 4rem 0;
    background: white;
}

.classes-content .subtitle,
.teachers-content .subtitle,
.pricing-content .subtitle {
    color: var(--primary-color);
    font-style: italic;
}

.classes-content h2,
.teachers-content h2,
.pricing-content h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
    color: var(--dark-color);
}

.classes-content .description,
.teachers-content .description,
.pricing-content .description {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-gray);
}

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

.class-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.class-detail-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

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

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

.class-detail-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.class-detail-card ul {
    list-style: none;
    margin: 1rem 0;
}

.class-detail-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Class Schedule Section */
.class-schedule {
    padding: 4rem 0;
    background: #f9f9f9;
}

.class-schedule h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.class-schedule .description {
    text-align: center;
    margin-bottom: 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.schedule-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.schedule-box:hover {
    transform: translateY(-5px);
}

.schedule-box h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.schedule-box p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.schedule-box .duration {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== TEACHERS PAGE ===== */

.teachers-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.teacher-detail-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.teacher-detail-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.teacher-detail-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.teacher-details h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.teacher-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.teacher-experience {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.teacher-specialties h4 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.teacher-specialties ul {
    list-style: none;
    columns: 2;
}

.teacher-specialties ul li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Why Learn Section */
.why-learn-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.why-learn-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.why-learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-learn-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.why-learn-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.why-learn-item .why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-learn-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.why-learn-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== PRICING PAGE ===== */

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #eee;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.02));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-header h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Pricing Details Section */
.pricing-details {
    padding: 4rem 0;
    background: #f9f9f9;
}

.pricing-details h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.detail-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.detail-item h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.detail-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Special Offers Section */
.special-offers {
    padding: 4rem 0;
    background: white;
}

.special-offers h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.offer-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s;
}

.offer-box:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border-color: var(--primary-color);
}

.offer-box h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.offer-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Pricing FAQ Section */
.pricing-faq {
    padding: 4rem 0;
    background: #f9f9f9;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

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

/* Responsive */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }

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

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

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

    .experience-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-block {
        grid-template-columns: 1fr;
    }

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

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

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

    .facility-overlay h2 {
        font-size: 2rem;
    }

    .buttons {
        justify-content: center;
    }

    .skills-bar {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    /* About Us Page */
    .ceo-content {
        grid-template-columns: 1fr;
    }

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

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

    /* Contact Us Page */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    /* Quick Contact */
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    /* Map */
    .map-container iframe {
        height: 350px;
    }

    /* Classes Page */
    .classes-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    /* Teachers Page */
    .teachers-detail-grid {
        grid-template-columns: 1fr;
    }

    .teacher-detail-card {
        grid-template-columns: 1fr;
    }

    .teacher-specialties ul {
        columns: 1;
    }

    .why-learn-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing Page */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Dropdown Sections */
    .dropdown-btn {
        font-size: 1rem;
        padding: 1rem;
    }

    .dropdown-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .year-number {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-text h2,
    .programs h2,
    .classes h2 {
        font-size: 1.8rem;
    }

    .facility-overlay h2 {
        font-size: 1.5rem;
    }

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

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

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

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

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

    .contact-hero h1 {
        font-size: 1.8rem;
    }

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

    .contact-form-section,
    .contact-info-section {
        padding: 0;
    }

    .map-container iframe {
        height: 300px;
    }

    .info-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .info-icon {
        font-size: 2rem;
        width: 100%;
    }

    .social-links {
        flex-direction: column;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}