/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --primary: #12b886;      /* Vibrant Green */
    --secondary: #ff922b;    /* Orange */
    --accent: #f06595;       /* Pink */
    --info: #339af0;         /* Blue */
    --dark: #212529;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #868e96;
    --primary-dark: #087f5b;
    --footer-bg: #5f3dc4;    /* Purple */
    
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(18, 184, 134, 0.2);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(-45deg, #ffffff, #e6fcf5, #e3fafc, #fff0f6);
    background-size: 400% 400%;
    animation: bgMesh 20s ease-in-out infinite;
    padding-top: 120px;
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
}

@keyframes bgMesh {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--info) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

/*h2 {*/
    /*color: white;*/
/*    background: white;*/
    /* linear-gradient(135deg, var(--primary-dark) 0%, var(--info) 100%); */
/*    -webkit-background-clip: text; */
/*    -webkit-text-fill-color: transparent; */
/*    display: table;*/
    /*color: #ff922b;*/
/*}*/

.section-header.center {
    text-align: center;
    margin-bottom: 50px;
}

.highlight {
    color: var(--secondary);
}

.bg-light { background-color: rgba(241, 243, 245, 0.4); backdrop-filter: blur(10px); }
.bg-white { background-color: var(--white); }
.bg-primary-dark { background-color: var(--primary-dark); color: var(--white); }
.bg-gradient-vibrant {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
}

/* Colors for Cards/Icons */
.bg-pink { background-color: var(--accent) !important; color: white; }
.bg-blue { background-color: var(--info) !important; color: white; }
.bg-orange { background-color: var(--secondary) !important; color: white; }
.bg-green { background-color: var(--primary) !important; color: white; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 146, 43, 0.4);
}

.btn-primary:hover {
    background-color: #e87c1e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 146, 43, 0.6);
}

.btn-secondary {
    background-color: var(--info);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(51, 154, 240, 0.4);
}

.btn-secondary:hover {
    background-color: #228be6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(51, 154, 240, 0.6);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Topbar & Header
   ========================================================================== */
.topbar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span, .topbar-right span {
    margin-right: 20px;
    font-weight: 600;
}

.topbar-left i, .topbar-right i {
    margin-right: 5px;
}

.social-icons a {
    color: var(--white);
    margin-left: 10px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.social-icons a:hover {
    background: var(--white);
    color: var(--primary);
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
    font-weight: 700;
}

.navbar ul {
    display: flex;
    gap: 25px;
}

.navbar ul li a {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    position: relative;
}

.navbar ul li a:hover, .navbar ul li a.active {
    color: var(--primary);
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar ul li a:hover::after, .navbar ul li a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.navbar ul li.dropdown {
    position: relative;
}

.navbar ul .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    flex-direction: column;
    gap: 0;
}

.navbar ul li.dropdown:hover .dropdown-menu,
.navbar ul li.dropdown.show .dropdown-menu {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.navbar ul .dropdown-menu li {
    width: 100%;
}

.navbar ul .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.navbar ul .dropdown-menu li a::after {
    display: none;
}

.navbar ul .dropdown-menu li a:hover {
    background-color: rgba(18, 184, 134, 0.05); /* very light primary */
    color: var(--primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 100px 0 150px;
    background-color: #fcfcfc;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: var(--info);
    opacity: 0.05;
    border-bottom-left-radius: 100%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    background-color: rgba(18, 184, 134, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-list {
    margin-bottom: 30px;
}

.hero-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-list li i {
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: right;
}

.hero-image img {
    max-width: 90%;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

.floating-element {
    position: absolute;
    width: 60px; height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.el-1 { top: 10%; left: 0; color: var(--secondary); }
.el-2 { bottom: 10%; right: 0; color: var(--accent); animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-bottom .shape-fill { fill: #f1f3f5; } /* Matches .bg-light */

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.img-wrapper {
    position: relative;
    border-radius: var(--radius);
}

.img-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(18, 184, 134, 0.4);
    border: 5px solid var(--white);
}

.experience-badge .num {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 700;
}

.about-content {
    flex: 1;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.mv-card:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(18, 184, 134, 0.15);
}

.mv-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mv-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.mv-text p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   Courses Section
   ========================================================================== */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.course-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.course-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(18, 184, 134, 0.15);
}

.card-header {
    padding: 30px 20px;
    text-align: center;
}

.card-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.card-body {
    padding: 25px;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #fcc419; /* Yellow star */
    font-size: 0.9rem;
}

/* ==========================================================================
   Stats Banner
   ========================================================================== */
.stats-banner {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-diamond {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,0.2);
}

.stat-diamond i {
    transform: rotate(-45deg);
    font-size: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 0.9;
}

/* ==========================================================================
   Achievements & Partners
   ========================================================================== */
.awards-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.awards-gallery.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .awards-gallery.grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .awards-gallery.grid-3-col {
        grid-template-columns: 1fr;
    }
}

.awards-gallery.single-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
}

.awards-gallery.single-row .award-img {
    flex: 0 0 250px;
}

.awards-gallery.single-row::-webkit-scrollbar {
    height: 8px;
}
.awards-gallery.single-row::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.award-img {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.award-img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 146, 43, 0.2);
}

.award-img img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.award-img p {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.partners-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
}

.partner-tag i {
    color: var(--info);
    font-size: 1.3rem;
}

.partner-tag:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(51, 154, 240, 0.15);
    background: linear-gradient(135deg, var(--white) 0%, rgba(227, 250, 252, 0.5) 100%);
    border-color: rgba(51, 154, 240, 0.3);
}

/* ==========================================================================
   Teachers Section
   ========================================================================== */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.teacher-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.teacher-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(240, 101, 149, 0.15);
}

.t-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #f1f3f5;
}

.teacher-card h3 {
    margin-bottom: 5px;
}

.teacher-card p {
    color: var(--gray);
    font-weight: 600;
}

/* ==========================================================================
   Contact / Enroll Section
   ========================================================================== */
.contact-wrapper {
    display: flex;
    gap: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    top: -40px; /* Offset to overlap sections slightly */
}

.contact-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff922b;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.contact-form-container {
    flex: 1;
    padding: 50px;
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: #ff922b;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.half-width {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(18, 184, 134, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--footer-bg);
    color: var(--white);
    position: relative;
    padding: 100px 20px 40px;
}

.footer-wave {
    position: absolute;
    top: 0; left: 0; width: 100%; overflow: hidden; line-height: 0;
    transform: rotate(180deg);
}

.footer-content {
    min-width: 0;
}

.footer-col {
    max-width: 420px;
    min-width: 0;
}

.footer-wave svg {
    position: relative; display: block; width: calc(100% + 1.3px); height: 50px;
}

.footer-wave .shape-fill { fill: var(--white); }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 80px 0 50px;
}

.footer-simple {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0 20px;
}

.footer-simple-logo,
.footer-simple-middle,
.footer-simple-right {
    flex: 1;
}

.footer-simple-logo {
    max-width: 220px;
}

.footer-simple-middle {
    max-width: 560px;
}

.footer-simple-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.footer-simple-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff922b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-simple .footer-description {
    margin-bottom: 0;
    max-width: 720px;
    font-weight: 700;
    color: #ff922b;
    line-height: 1.8;
}

.footer-simple .social-icons {
    justify-content: flex-end;
}

.footer-simple .social-icons a {
    margin-right: 10px;
    width: 44px;
    height: 44px;
}

.footer-simple .social-icons a:last-child {
    margin-right: 0;
}

@media (max-width: 920px) {
    .footer-simple {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-simple-right {
        align-items: flex-start;
        margin-top: 20px;
    }

    .footer-simple .social-icons {
        justify-content: flex-start;
    }
}

.footer-logo {
    width: 150px;
    max-width: 100%;
    height: auto;
    display: block;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-col h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 55px; height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-col p i,
.footer-col .contact-info p i {
    min-width: 28px;
    color: var(--secondary);
}

.footer .social-icons a,
.footer .social-link {
    color: var(--white);
    margin-right: 10px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    transition: var(--transition);
}

.footer .social-icons a:hover,
.footer .social-link:hover {
    background: var(--white);
    color: var(--primary);
}

.footer .contact-info p {
    margin-bottom: 18px;
}

.footer-bottom {
    background: rgba(0,0,0,0.18);
    text-align: center;
    padding: 22px 0;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================================================
   WhatsApp Button
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .topbar { display: none; }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
        display: none;
        flex-direction: column;
    }

    .navbar.active {
        display: flex;
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container, .about-container, .contact-wrapper {
        flex-direction: column;
    }
    
    .hero-content { margin-bottom: 50px; text-align: center; }
    .hero-image { text-align: center; }
    
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 2.8rem; }
    
    .contact-wrapper { top: 0; box-shadow: var(--shadow); }
    .contact-info, .contact-form-container { padding: 30px; }
    .form-row { flex-direction: column; gap: 0; }

    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-wave { height: 40px; }
    .footer-wave svg { height: 40px; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0 20px;
    }

    .footer-col {
        max-width: none;
    }

    .footer-col h3 { font-size: 1.4rem; }
    
    .footer-col p,
    .footer .contact-info p {
        display: block;
        align-items: normal;
    }
}

@media (max-width: 576px) {
    .logo img { height: 35px; width: auto; }
    .logo-text h1 { font-size: 1.1rem !important; }
    .logo-text p { font-size: 0.7rem; }
    
    h1 { font-size: 1.6rem !important; }
    .section-title { font-size: 1.5rem !important; }
    .hero-title { font-size: 1.8rem !important; line-height: 1.3; }
    .page-header h1, .montessori-header h1 { font-size: 1.6rem !important; }
    
    .footer-logo { width: 100px !important; }
    .footer { padding-left: 20px; padding-right: 20px; padding: 60px 20px 40px; }
    .footer-content { padding-left: 0; padding-right: 0; gap: 25px; padding: 40px 0 20px; }
    .footer-col h3 { font-size: 1.3rem; margin-bottom: 18px; }
    .footer-description { font-size: 0.85rem; line-height: 1.5; }
    .footer-col p { font-size: 0.9rem; margin-bottom: 12px; gap: 8px; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a { font-size: 0.9rem; }
    .footer-bottom { padding: 15px 20px; font-size: 0.85rem; }
    
    .header-cta { display: none; }

    .whatsapp-btn {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 30px;
    }
}
