/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --navy-blue: #0A1E3F;
    --navy-dark: #051226;
    --gold: #C59B27;
    --gold-hover: #DDA835;
    --cream-bg: #FDFBF7;
    --card-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Poppins', sans-serif;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--card-bg);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.text-center { text-align: center; }
.margin-top { margin-top: 30px; }
.gold-text { color: var(--gold); }

/* Reusable Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--navy-blue);
    letter-spacing: 1px;
    margin: 0;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Reusable Buttons */
.btn-navy {
    background: var(--navy-blue);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-navy:hover {
    background: var(--navy-dark);
}

.btn-gold {
    background: var(--gold);
    color: #ffffff !important;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-hover);
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background-color: var(--navy-blue);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(197, 155, 39, 0.3);
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info span,
.top-info a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-info i {
    color: var(--gold);
}

.top-socials {
    display: flex;
    gap: 12px;
}

.top-socials a {
    color: #ffffff;
    font-size: 14px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrapper {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.12));
}

.brand-title h1 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--navy-blue);
    line-height: 1;
}

.brand-title .sub-intl {
    font-size: 8px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
}

.brand-title h2 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--navy-blue);
    line-height: 1;
}

.brand-title small {
    font-size: 8px;
    color: #666;
    font-style: italic;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--gold);
}

.btn-apply {
    background: var(--gold);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700 !important;
}

.mobile-hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--navy-blue);
    cursor: pointer;
    padding: 5px 10px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(rgba(10, 30, 63, 0.65), rgba(10, 30, 63, 0.65)), 
                url('https://images.unsplash.com/photo-1587654780291-39c9404d746b?auto=format&fit=crop&w=1600&q=80') center/cover;
    padding: 80px 0 60px 0;
    color: #ffffff;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.1;
    margin: 10px 0;
}

.hero-content h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--gold);
}

/* ==========================================
   WELCOME SECTION
   ========================================== */
.welcome-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.welcome-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.welcome-img-wrapper {
    position: relative;
}

.welcome-img-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.badge-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy-blue);
    color: #ffffff;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 110px;
    height: 110px;
    border: 4px solid var(--gold);
}

.badge-experience span {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.badge-experience small {
    font-size: 8px;
    letter-spacing: 1px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.welcome-text h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--navy-blue);
    margin: 10px 0 15px 0;
}

.welcome-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-bottom: 25px;
}

.check-list li {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--navy-blue);
}

.check-list i {
    color: var(--gold);
    margin-right: 8px;
}

/* ==========================================
   MISSION & VISION SECTION
   ========================================== */
.mission-vision-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    color: #ffffff;
}

.mv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 155, 39, 0.3);
    border-radius: 14px;
    padding: 30px;
    backdrop-filter: blur(8px);
}

.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.mv-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(197, 155, 39, 0.12);
    border: 1px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-icon {
    font-size: 20px;
    color: var(--gold);
}

.mv-text { flex: 1; }

.mv-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
}

.mv-text h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
}

.mv-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.mv-divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(197, 155, 39, 0.5), transparent);
    flex-shrink: 0;
}

/* ==========================================
   OUR PROGRAMS SECTION
   ========================================== */
.programs-section {
    padding: 60px 0;
    background-color: #FAFAFA;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.program-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid #ECECEC;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px;
}

.prog-icon-bg {
    width: 46px;
    height: 46px;
    background: rgba(10, 30, 63, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prog-icon {
    font-size: 20px;
    color: var(--navy-blue);
}

.badge-featured {
    background: var(--gold);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.program-card.program-featured {
    grid-column: span 2;
    background: linear-gradient(145deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    color: #ffffff;
    border: 1px solid var(--gold);
}

.program-featured h4 { color: #ffffff !important; }
.program-featured p { color: rgba(255, 255, 255, 0.85) !important; }

.program-card h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--navy-blue);
    margin-bottom: 8px;
    line-height: 1.35;
}

.program-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.link-more {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-featured-link {
    background: var(--gold);
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
}

/* ==========================================
   LEVELS WE OFFER
   ========================================== */
.levels-section {
    padding: 90px 0;
    background-color: #FAFAFA;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.level-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
    border: 1px solid #EFEFEF;
    position: relative;
}

.level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(10, 30, 63, 0.12);
}

.level-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.level-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.level-card:hover .level-img {
    transform: scale(1.08);
}

.level-body {
    padding: 25px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.level-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 6px;
}

.level-pills {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 18px;
    width: fit-content;
}

/* Level Color Variations */
.level-green { border-top: 4px solid #2E7D32; }
.level-green .level-pills { background: #E8F5E9; color: #2E7D32; }
.level-green .level-features i { color: #2E7D32; }

.level-orange { border-top: 4px solid #E65100; }
.level-orange .level-pills { background: #FFF3E0; color: #E65100; }
.level-orange .level-features i { color: #E65100; }

.level-blue { border-top: 4px solid #0A1E3F; }
.level-blue .level-pills { background: #E8EAF6; color: #0A1E3F; }
.level-blue .level-features i { color: #0A1E3F; }

.level-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.level-features li {
    font-size: 12.5px;
    color: #555555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.level-features i {
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-level {
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--navy-blue);
    color: var(--navy-blue);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.level-card:hover .btn-level {
    background: var(--navy-blue);
    color: #ffffff;
}

/* ==========================================
   WHY CHOOSE VIA LUX
   ========================================== */
.why-us-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF7 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.side-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.heading-line-left {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 30px;
    border-radius: 2px;
}

.features-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feat-card {
    background: #ffffff;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(197, 155, 39, 0.12);
}

.feat-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(10, 30, 63, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feat-card:hover .feat-icon-box {
    background: var(--navy-blue);
    color: var(--gold);
}

.feat-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 2px;
}

.feat-content p {
    font-size: 11px;
    color: #666666;
    line-height: 1.3;
}

.why-right-navy {
    background: linear-gradient(145deg, var(--navy-blue) 0%, var(--navy-dark) 100%);
    border-radius: 16px;
    padding: 40px 30px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(10, 30, 63, 0.25);
    border: 1px solid rgba(197, 155, 39, 0.3);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.stats-header h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.stats-header p {
    font-size: 11px;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    text-align: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 18px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.07);
}

.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-family: var(--font-serif);
}

.stat-number-wrapper h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.stat-number-wrapper .plus {
    font-size: 24px;
    margin-left: 2px;
    font-weight: 700;
}

.stat-box p {
    font-size: 11px;
    opacity: 0.85;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.motto-badge {
    margin-top: 35px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 12px;
    letter-spacing: 2.5px;
    color: var(--gold);
    background: rgba(197, 155, 39, 0.1);
    padding: 10px;
    border-radius: 20px;
    border: 1px dashed rgba(197, 155, 39, 0.4);
}

.motto-badge span {
    font-weight: 700;
    color: #ffffff;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--cream-bg);
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 45px;
}

.testimonial-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testi-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 10px 10px;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    font-size: 42px;
    color: var(--gold);
    font-family: serif;
    line-height: 1;
    margin-bottom: -10px;
}

.testi-card p {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
    margin: 15px 0 20px 0;
}

.testi-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.testi-author strong {
    color: var(--navy-blue);
    font-size: 13px;
}

.stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--navy-blue);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider-arrow:hover {
    background: var(--gold);
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #cccccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 12px;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    background: linear-gradient(rgba(10, 30, 63, 0.88), rgba(10, 30, 63, 0.88)), 
                url('https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-text p {
    font-size: clamp(13px, 2vw, 16px);
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-white {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--navy-blue);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-col h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--navy-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.contact-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--gold);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-list p {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.contact-info-list i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-list a:hover {
    color: var(--navy-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    background-color: #ffffff;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   CONSOLIDATED RESPONSIVE MEDIA QUERIES
   ========================================== */

/* TABLET RESPONSIVENESS (Below 992px) */
@media screen and (max-width: 992px) {
    .mobile-hamburger { display: block; }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        padding: 20px;
        gap: 15px;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease-in-out;
    }

    .nav-menu.is-active {
        max-height: 450px;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }

    .btn-apply {
        text-align: center;
        margin-top: 10px;
        border-bottom: none !important;
    }

    .hero-container,
    .welcome-container {
        grid-template-columns: 1fr;
    }

    .mv-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
        background: rgba(197, 155, 39, 0.3);
    }

    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .program-card.program-featured { grid-column: span 2; }

    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testi-card { flex: 0 0 calc(50% - 20px); }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-wrapper { height: 280px; }
}

/* SMALL TABLETS (Below 768px) */
@media screen and (max-width: 768px) {
    .top-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-info {
        justify-content: center;
        font-size: 12px;
    }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* MOBILE PHONES (Below 600px) */
@media screen and (max-width: 600px) {
    .mission-vision-section { padding: 35px 0; }
    .mv-container { padding: 20px 16px; }

    .mv-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .mv-icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .mv-icon { font-size: 16px; }
    .mv-text h3 { font-size: 16px; }
    .mv-text p { font-size: 12px; }

    .programs-section { padding: 40px 0; }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-card.program-featured { grid-column: span 1; }
    .program-card { padding: 20px 16px; }
    .card-top-row { flex-wrap: wrap; }

    .btn-featured-link {
        width: 100%;
        box-sizing: border-box;
    }

    .levels-grid { grid-template-columns: 1fr; }
    .level-img-wrapper { height: 180px; }

    .features-subgrid { grid-template-columns: 1fr; }
    .why-right-navy { padding: 30px 20px; }

    .motto-badge {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonial-slider-wrapper { padding: 0; }
    .slider-arrow { display: none; }
    .testi-card { flex: 0 0 calc(100% - 20px); }

    .cta-banner { padding: 45px 15px; }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold, 
    .btn-outline-white, 
    .btn-navy {
        width: 100%;
        text-align: center;
    }

    .form-row { grid-template-columns: 1fr; }
}
/* FOOTER */


/* ==========================================
   MAIN FOOTER STYLES
   ========================================== */
.main-footer {
    background-color: var(--navy-dark, #051226);
    color: #ffffff;
    padding-top: 60px;
    font-size: 14px;
}

/* 5-Column Grid Layout for Desktop */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr) 0.8fr;
    gap: 30px;
    padding-bottom: 50px;
}

/* Brand Column Adjustments */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-col img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Footer Column Typography */
.footer-col h4 {
    color: var(--gold, #C59B27);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--gold, #C59B27);
    margin-top: 6px;
    border-radius: 2px;
}

/* Footer Link Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold, #C59B27);
    padding-left: 5px;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--gold, #C59B27);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.bottom-flex p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.bottom-flex a {
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.bottom-flex a:hover {
    opacity: 0.8;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* TABLETS (Below 992px): 3 Columns */
@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    .brand-col {
        grid-column: span 3;
        margin-bottom: 10px;
    }
}

/* SMALL TABLETS & LARGE PHONES (Below 768px): 2 Columns */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-col {
        grid-column: span 2;
    }
}

/* MOBILE PHONES (Below 576px): 1 Column Full Width */
@media screen and (max-width: 576px) {
    .main-footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .brand-col {
        grid-column: span 1;
    }

    .brand-col img {
        max-width: 150px;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .bottom-flex p {
        font-size: 11.5px;
    }
}
