/* ============================================================
   UNIFIED CSS – Villa Academy
   Complete style set for all pages
   ============================================================ */

/* ── reset & base ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #fefcf7;
    color: #1e2a3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}
:root {
    --navy: #0b2b4f;
    --orange: #f97316;
    --golden: #fbbf24;
    --navy-light: #1e3a5f;
    --gray-light: #f8fafc;
    --gray-border: #e2e8f0;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--orange);
    border-radius: 4px;
}
.btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #e65c0c;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--golden);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}
.btn-outline:hover {
    background: var(--golden);
    color: var(--navy);
}

/* ── top bar ── */
.top-bar {
    background: var(--navy);
    color: #e2e8f0;
    padding: 10px 0;
    font-size: 0.85rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.top-bar i {
    color: var(--golden);
    margin-right: 6px;
}

/* ── navbar ── */
.navbar {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 52px;
    width: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}
.logo-text h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}
.logo-text span:first-child {
    color: var(--navy);
}
.logo-text span:last-child {
    color: var(--orange);
}
.logo-text small {
    font-size: 0.7rem;
    color: var(--golden);
    font-weight: 600;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}
.nav-menu>li {
    position: relative;
    padding: 4px 0;
}
.nav-menu>li>a {
    text-decoration: none;
    font-weight: 600;
    color: #1e293b;
    padding: 8px 14px;
    border-radius: 30px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.nav-menu>li>a:hover {
    color: var(--orange);
    background: rgba(249, 115, 22, 0.06);
}
/* ── active link styling ── */
.nav-menu>li>a.active {
    color: var(--orange);
    background: rgba(249, 115, 22, 0.08);
    font-weight: 700;
}
.nav-menu>li>a .fa-chevron-down {
    font-size: 0.65rem;
    margin-left: 2px;
    transition: transform 0.25s;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 18px;
    padding: 10px 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
    list-style: none;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: 0.15s;
}
.dropdown-menu li a:hover {
    background: rgba(249, 115, 22, 0.07);
    color: var(--orange);
}
/* ── active dropdown link ── */
.dropdown-menu li a.active {
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
    font-weight: 700;
}
.dropdown-menu li a i {
    width: 20px;
    color: var(--orange);
    margin-right: 10px;
    font-size: 0.85rem;
}

@media (min-width: 851px) {
    .nav-menu>li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-menu>li:hover>a .fa-chevron-down {
        transform: rotate(180deg);
    }
}

.btn-portal {
    background: var(--navy);
    color: white !important;
    padding: 8px 22px !important;
    border-radius: 40px !important;
    font-weight: 700 !important;
    transition: 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-portal:hover {
    background: #0a1f36 !important;
    transform: translateY(-2px);
    color: white !important;
}
.btn-portal i {
    font-size: 0.95rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy);
}

/* ── page hero (common for inner pages) ── */
.page-hero {
    background: var(--navy);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--golden), var(--orange), var(--golden));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero .hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.page-hero .btn-apply {
    background: var(--orange);
    color: white;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(249,115,22,0.35);
}
.page-hero .btn-apply:hover {
    background: #e65c0c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249,115,22,0.45);
}
.page-hero .btn-apply i {
    font-size: 1.2rem;
}

/* ── HOME PAGE SPECIFIC ── */

/* Hero (home) */
.hero {
    position: relative;
    height: 580px;
    overflow: hidden;
    color: white;
}
.slideshow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(11, 43, 79, 0.85) 0%, rgba(11, 43, 79, 0.75) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Teacher section */
.teacher-section {
    padding: 80px 0;
    background: white;
}
.teacher-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.teacher-card {
    background: var(--gray-light);
    border-radius: 32px;
    padding: 30px;
    flex: 2;
    min-width: 300px;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-border);
}
.teacher-photo-area {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.teacher-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--golden);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.teacher-title h3 {
    font-size: 1.8rem;
    color: var(--navy);
}
.welcome-message {
    background: #ffffff;
    border-left: 6px solid var(--orange);
    padding: 24px;
    border-radius: 24px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #1e2a3e;
}
.campus-img {
    flex: 1;
    min-width: 240px;
}
.campus-img img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* Team (static grid) */
.team-section {
    padding: 60px 0 80px;
    background: #fffaf2;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    justify-items: center;
}
.team-card {
    width: 100%;
    max-width: 280px;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}
.team-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.team-card h4 {
    margin-top: 16px;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
}
.team-card p {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 8px;
}

/* Events */
.events-section {
    padding: 80px 0;
    background: white;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.event-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid var(--gray-border);
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.event-info {
    padding: 20px;
}
.event-info h3 {
    color: var(--navy);
    margin-bottom: 8px;
}
.event-date {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* Stats */
.stats-section {
    background: #f2efe7;
    padding: 80px 0;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.knob-item {
    text-align: center;
    width: 180px;
}
.canvas-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
}
.canvas-wrapper canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
}
.knob-label {
    font-weight: 800;
    margin-top: 12px;
    color: var(--navy);
    font-size: 1.1rem;
}

/* Programs */
.programs {
    background: #fef9ef;
    padding: 80px 0;
}
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.prog-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    border-bottom: 4px solid var(--golden);
    transition: 0.2s;
}
.prog-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 16px;
}

/* Why us */
.why-us {
    padding: 80px 0;
    background: white;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.feature {
    flex: 1 1 220px;
    text-align: center;
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 28px;
}
.feature i {
    font-size: 2rem;
    color: var(--golden);
    margin-bottom: 15px;
}

/* ── CONTACT LOCATION (homepage) ── */
.contact-location {
    background: var(--navy);
    color: white;
    padding: 70px 0;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}
.contact-location .info-block h3 {
    color: var(--golden);
    margin-bottom: 24px;
}
.contact-location .info-block i {
    color: var(--golden);
    margin-right: 12px;
    width: 24px;
}
.contact-location .info-block p {
    margin-bottom: 12px;
    line-height: 1.6;
}
.contact-location .info-block p strong {
    color: white;
}
.contact-location .contact-form input,
.contact-location .contact-form textarea,
.contact-location .contact-form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border-radius: 60px;
    border: none;
    font-family: inherit;
    background: white;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
}
.contact-location .contact-form textarea {
    border-radius: 24px;
    resize: vertical;
}
.contact-location .contact-form input:focus,
.contact-location .contact-form textarea:focus,
.contact-location .contact-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5);
}
.contact-location .contact-form button {
    background: var(--orange);
    border: none;
    width: 100%;
    font-weight: 700;
    padding: 14px;
    color: white;
    border-radius: 60px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.contact-location .contact-form button:hover {
    background: #e65c0c;
}
/* small note */
.contact-location .info-block .note {
    font-size: 0.75rem;
    margin-top: 12px;
    opacity: 0.8;
}

/* ── VISION & MISSION PAGE ── */
.vm-section {
    padding: 80px 0;
    background: white;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.vm-card {
    background: var(--gray-light);
    border-radius: 32px;
    padding: 40px 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}
.vm-card .icon {
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(249,115,22,0.1);
    padding: 14px;
    border-radius: 60px;
    line-height: 1;
}
.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
.vm-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1e2a3e;
}
.vm-card ul {
    list-style: none;
    margin-top: 20px;
}
.vm-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.vm-card ul li:last-child {
    border-bottom: none;
}
.vm-card ul li i {
    color: var(--orange);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 24px;
}

.values-section {
    background: #fef9ef;
    padding: 70px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.value-item {
    background: white;
    padding: 30px 20px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    border-bottom: 4px solid var(--golden);
}
.value-item i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 16px;
}
.value-item h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.value-item p {
    font-size: 0.95rem;
    color: #475569;
}

/* ── ENTRY REQUIREMENTS PAGE ── */
.requirements-section {
    padding: 80px 0;
    background: white;
}
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}
.req-card {
    background: var(--gray-light);
    border-radius: 28px;
    padding: 35px 30px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.req-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}
.req-card .icon {
    font-size: 2.5rem;
    color: var(--orange);
    background: rgba(249,115,22,0.1);
    padding: 14px;
    border-radius: 60px;
    display: inline-block;
    margin-bottom: 20px;
    line-height: 1;
}
.req-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.req-card ul {
    list-style: none;
    padding: 0;
}
.req-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 1rem;
    line-height: 1.6;
}
.req-card ul li:last-child {
    border-bottom: none;
}
.req-card ul li i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 22px;
}

.process-section {
    background: #fef9ef;
    padding: 70px 0;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
    counter-reset: step;
}
.step-item {
    background: white;
    padding: 30px 20px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    border-bottom: 4px solid var(--golden);
    position: relative;
    counter-increment: step;
}
.step-item::before {
    content: counter(step);
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}
.step-item i {
    font-size: 2.2rem;
    color: var(--orange);
    margin: 12px 0 10px;
    display: block;
}
.step-item h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.step-item p {
    font-size: 0.95rem;
    color: #475569;
}

.cta-box {
    text-align: center;
    background: var(--navy);
    color: white;
    padding: 50px 30px;
    border-radius: 32px;
    margin-top: 50px;
}
.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}
.cta-box .btn-apply {
    background: var(--orange);
    color: white;
    padding: 16px 48px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(249,115,22,0.35);
}
.cta-box .btn-apply:hover {
    background: #e65c0c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249,115,22,0.45);
}
.cta-box .btn-apply i {
    font-size: 1.2rem;
}

/* ── CONTACT PAGE ── */
.contact-section {
    padding: 80px 0;
    background: white;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info .info-card {
    background: var(--gray-light);
    border-radius: 28px;
    padding: 28px 30px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.contact-info .info-card:hover {
    transform: translateY(-4px);
}
.contact-info .info-card i {
    font-size: 2rem;
    color: var(--orange);
    background: rgba(249,115,22,0.1);
    padding: 12px;
    border-radius: 60px;
    margin-bottom: 16px;
    display: inline-block;
}
.contact-info .info-card h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-info .info-card p {
    color: #475569;
    line-height: 1.6;
}
.contact-info .info-card a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}
.contact-info .info-card a:hover {
    text-decoration: underline;
}
.map-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
}
.map-container iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

.contact-form-wrapper {
    background: var(--gray-light);
    border-radius: 28px;
    padding: 40px 35px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
}
.contact-form-wrapper h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.contact-form-wrapper p {
    color: #64748b;
    margin-bottom: 25px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 60px;
    border: 1px solid var(--gray-border);
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: 0.2s;
    outline: none;
}
.contact-form textarea {
    border-radius: 24px;
    resize: vertical;
    min-height: 120px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
.contact-form button {
    background: var(--orange);
    border: none;
    padding: 16px 30px;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.contact-form button:hover {
    background: #e65c0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}

/* ── HISTORY PAGE ── */
.history-section {
    padding: 80px 0;
    background: white;
}
.history-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.history-story.reverse {
    direction: rtl;
}
.history-story.reverse > * {
    direction: ltr;
}
.history-story .text-content h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    display: block;
}
.history-story .text-content h2:after {
    display: none;
}
.history-story .text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 16px;
}
.history-story .image-content img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    height: 380px;
}

.timeline-section {
    background: var(--gray-light);
    padding: 80px 0;
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.timeline-item {
    background: white;
    padding: 30px 24px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--golden);
}
.timeline-item .year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
    margin-bottom: 8px;
}
.timeline-item h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.timeline-item p {
    font-size: 0.95rem;
    color: #475569;
}

.founder-section {
    padding: 80px 0;
    background: white;
}
.founder-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background: var(--gray-light);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow);
    align-items: center;
}
.founder-card img {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--golden);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    justify-self: center;
}
.founder-card blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1e293b;
    font-style: italic;
    position: relative;
    padding-left: 30px;
    border-left: 6px solid var(--orange);
}
.founder-card blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--orange);
    position: absolute;
    left: -10px;
    top: -20px;
}
.founder-card .founder-name {
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    color: var(--navy);
}
.founder-card .founder-name span {
    color: var(--orange);
    font-weight: 400;
}

/* ── FOOTER ── */
.footer {
    background: #081a2b;
    color: #cbd5e1;
    padding: 0;
    position: relative;
}
.footer-top-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--golden), var(--orange), var(--golden));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
.footer-main {
    padding: 60px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-brand .logo {
    margin-bottom: 16px;
}
.footer-brand .logo-img {
    height: 48px;
}
.footer-brand .logo-text h1 {
    font-size: 1.4rem;
}
.footer-brand .logo-text small {
    font-size: 0.65rem;
}
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #a0b4c9;
    max-width: 340px;
    margin-top: 4px;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-social a:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}
.footer h4 {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--orange);
    border-radius: 4px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #a0b4c9;
    text-decoration: none;
    font-size: 0.92rem;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a i {
    font-size: 0.65rem;
    color: var(--golden);
    transition: transform 0.25s;
}
.footer-links a:hover {
    color: white;
}
.footer-links a:hover i {
    transform: translateX(4px);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: #a0b4c9;
    line-height: 1.5;
}
.footer-contact li i {
    color: var(--golden);
    font-size: 1rem;
    width: 20px;
    margin-top: 3px;
}
.footer-contact li a {
    color: #a0b4c9;
    text-decoration: none;
    transition: 0.2s;
}
.footer-contact li a:hover {
    color: white;
}
.footer-newsletter p {
    font-size: 0.92rem;
    color: #a0b4c9;
    margin-bottom: 14px;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-form input {
    padding: 12px 18px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    font-size: 0.92rem;
    transition: 0.3s;
    outline: none;
}
.newsletter-form input::placeholder {
    color: #6a7f96;
}
.newsletter-form input:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
.newsletter-form button {
    background: var(--orange);
    border: none;
    padding: 12px 24px;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.newsletter-form button:hover {
    background: #e65c0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: #6a7f96;
}
.footer-bottom a {
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: #6a7f96;
    text-decoration: none;
    font-size: 0.82rem;
    transition: 0.2s;
}
.footer-bottom-links a:hover {
    color: white;
    text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .history-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .history-story.reverse {
        direction: ltr;
    }
    .history-story .image-content img {
        height: 280px;
    }
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-card img {
        max-width: 240px;
        height: 240px;
    }
    .founder-card blockquote {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    .founder-card blockquote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        order: 2;
    }
    .contact-form-wrapper {
        order: 1;
    }
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        background: white;
        width: 85%;
        max-width: 360px;
        height: calc(100vh - 85px);
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 20px 24px 40px;
        transition: left 0.35s ease;
        z-index: 999;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        overflow-x: hidden;
        align-items: stretch;
        gap: 2px;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu>li {
        width: 100%;
        flex-shrink: 0;
    }
    .nav-menu>li>a {
        padding: 14px 16px;
        border-radius: 14px;
        justify-content: space-between;
        width: 100%;
    }
    .nav-menu>li>a .fa-chevron-down {
        font-size: 0.8rem;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        border-radius: 0;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        width: 100%;
        min-width: 0;
        transition: max-height 0.35s ease, padding 0.3s ease;
        padding-top: 0;
        padding-bottom: 0;
    }
    .dropdown-menu.open {
        max-height: 600px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .dropdown-menu li a {
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 0.95rem;
        background: rgba(249, 115, 22, 0.04);
        margin-bottom: 2px;
    }
    .dropdown-menu li a:hover {
        background: rgba(249, 115, 22, 0.12);
    }
    .dropdown-menu li a i {
        width: 24px;
    }
    .btn-portal {
        justify-content: center;
        margin-top: 12px;
    }
    .hero {
        height: 500px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .teacher-photo-area {
        flex-direction: column;
        text-align: center;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .page-hero .btn-apply {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .history-story .text-content h2 {
        font-size: 1.8rem;
    }
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .cta-box .btn-apply {
        padding: 14px 32px;
        font-size: 1rem;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    .vm-card {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
    .history-story .image-content img {
        height: 200px;
    }
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .cta-box h3 {
        font-size: 1.4rem;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .team-card {
        max-width: 100%;
    }
    .team-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 0.75rem;
    }
    .logo-img {
        height: 36px;
    }
    .logo-text h1 {
        font-size: 1rem;
    }
    .logo-text small {
        font-size: 0.55rem;
    }
    .page-hero .btn-apply {
        padding: 10px 24px;
        font-size: 0.9rem;
        gap: 8px;
    }
}