/* ========================================
   LANDING PAGE STYLES
   ======================================== */

/* ========================================
   BASE STYLES
   ======================================== */
:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --primary-dark: #667eeadd;
    --primary-light: #667eea22;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-hover: linear-gradient(135deg, #667eeadd 0%, #764ba2dd 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    background: #f8f9fe;
    color: #1b1b18;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

#contact.section-padding {
    padding-bottom: 0;
}

#contact .cta-section {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section-header h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 17px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 24px;
}

.top-bar .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: white;
}

.top-bar .social-links {
    display: flex;
    gap: 14px;
}

.top-bar .social-links a {
    opacity: 0.8;
    transition: all 0.3s;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar .social-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 24px;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1b1b18;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.logo-text small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-links .btn-primary {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
}

.nav-links .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.45);
    background: var(--primary-gradient-hover);
}

.nav-links .btn-outline {
    border: 2px solid #e5e7eb;
    background: transparent;
    color: #4b5563;
}

.nav-links .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1b1b18;
    padding: 4px;
    transition: transform 0.3s;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* ========================================
   HERO SECTION - FIXED
   ======================================== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8f9fe 0%, #ffffff 100%);
    width: 100%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    padding-right: 20px;
}

.hero-content .badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #1b1b18;
    margin-bottom: 16px;
}

.hero-content h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons .btn-hero-primary {
    padding: 14px 34px;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(102, 126, 234, 0.5);
    color: white;
}

.hero-buttons .btn-hero-secondary {
    padding: 14px 34px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    color: #4b5563;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1b1b18;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.hero-stats .stat i {
    color: var(--primary);
    margin-right: 4px;
}

/* Hero Image */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 20px;
}

.hero-image .image-wrapper {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    background: white;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    background: #f3f4f6;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -10px;
    right: -10px;
    animation-delay: 0s;
}

.floating-badge.bottom-left {
    bottom: 20px;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-badge .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-badge .badge-icon.green {
    background: #d1fae5;
    color: #065f46;
}

.floating-badge .badge-icon.blue {
    background: #dbeafe;
    color: #1e40af;
}

.floating-badge .badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b18;
}

.floating-badge .badge-sub {
    font-size: 12px;
    color: #6b7280;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ========================================
   MISSION, VISION, VALUES
   ======================================== */
.mission-vision {
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #f8f9fe;
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.mv-card .mv-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.mv-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1b1b18;
}

.mv-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    background: #f3f4f6;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.about-content h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    background: #f8f9fe;
    border-radius: 10px;
}

.about-feature .check {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */
.programs {
    background: #f8f9fe;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.program-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.program-card .program-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.program-card .program-icon.purple {
    background: #ede9fe;
    color: #6d28d9;
}
.program-card .program-icon.green {
    background: #d1fae5;
    color: #065f46;
}
.program-card .program-icon.orange {
    background: #fef3c7;
    color: #92400e;
}
.program-card .program-icon.blue {
    background: #dbeafe;
    color: #1e40af;
}
.program-card .program-icon.pink {
    background: #fce7f3;
    color: #9d174d;
}
.program-card .program-icon.indigo {
    background: #e0e7ff;
    color: #3730a3;
}

.program-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.program-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ========================================
   OUR TEACHERS
   ======================================== */
.teachers {
    background: #f8f9fe;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.teacher-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #f1f3f5;
    text-align: center;
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.teacher-card .teacher-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-gradient);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    font-weight: 700;
}

.teacher-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.teacher-card .teacher-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.teacher-card p {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose {
    background: var(--primary-gradient);
    color: white;
    padding: 80px 0;
}

.why-choose .section-header h2 {
    color: white;
}

.why-choose .section-header h2 span {
    -webkit-text-fill-color: white;
    background: none;
}

.why-choose .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.why-card .why-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   ACADEMIC CALENDAR
   ======================================== */
.calendar-section {
    background: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.calendar-item {
    background: #f8f9fe;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.calendar-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.calendar-item .cal-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.calendar-item .cal-date {
    font-size: 14px;
    color: #6b7280;
}

.calendar-item .cal-event {
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
}

/* ========================================
   BLOG & NEWS
   ======================================== */
.blog-section {
    background: #f8f9fe;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.blog-card .blog-image {
    height: 200px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
}

.blog-card .blog-content {
    padding: 24px;
}

.blog-card .blog-date {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.blog-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0;
}

.blog-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.blog-card .blog-read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.blog-card .blog-read-more:hover {
    text-decoration: underline;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #e5e7eb;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: white;
    font-weight: 500;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    background: #f8f9fe;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid #f1f3f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-card .author .info .name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-card .author .info .role {
    font-size: 12px;
    color: #6b7280;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-section {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 56px 48px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.cta-section .cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-section .cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-section .btn-cta {
    padding: 14px 36px;
    border-radius: 12px;
    background: white;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-section .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.recruitment-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 56px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
    color: white;
}

.recruitment-cta .cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.recruitment-cta .cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.recruitment-cta .btn-cta {
    padding: 14px 36px;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.recruitment-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #0f0f0e;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo-text small {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-image {
        padding-left: 0;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stats .stat {
        text-align: center;
    }

    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .floating-badge {
        display: none;
    }

    .cta-section,
    .recruitment-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .cta-section .btn-cta,
    .recruitment-cta .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 6px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar .contact-info {
        justify-content: center;
    }

    .top-bar .social-links {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid,
    .teachers-grid,
    .blog-grid,
    .calendar-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid>div {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .cta-section,
    .recruitment-cta {
        padding: 32px 20px;
    }

    .hero {
        padding: 40px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .program-card {
        padding: 24px 18px;
    }

    .testimonial-card {
        padding: 20px 16px;
    }

    .teacher-card {
        padding: 20px 16px;
    }

    .mv-card {
        padding: 28px 20px;
    }

    .blog-card .blog-content {
        padding: 18px;
    }

    .calendar-item {
        padding: 18px;
    }
}