/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1b2a4a;
    --navy-dark: #0f1b33;
    --maroon: #8b1a1a;
    --maroon-light: #a52a2a;
    --accent: #c0392b;
    --gold: #d4a843;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --light-gray: #eef1f5;
    --gray: #6b7b8d;
    --text: #333333;
    --text-light: #555555;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--accent);
    color: var(--white);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-item {
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.top-btn {
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.top-btn:hover {
    background: rgba(255,255,255,0.15);
}

.top-btn i {
    margin-right: 4px;
}

.top-btn.accent {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}

.top-btn.accent:hover {
    background: var(--navy);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 160px;
    width: auto;
    filter: brightness(1.1) contrast(1.05);
}

.header-contact {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--navy);
    font-weight: 600;
}

.contact-value {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 0;
}

.nav-links li a {
    display: block;
    padding: 16px 24px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255,255,255,0.1);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 60%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('images/kids.jpeg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,42,74,0.88) 0%, rgba(15,27,51,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 13px 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 12px;
}

.btn-primary:hover {
    background: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 13px 32px;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* ===== INFO STRIP ===== */
.info-strip {
    background: var(--white);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.info-strip-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== SECTION COMMON ===== */
.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-subtitle.center,
.section-title.center {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    line-height: 1.3;
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 0;
    background: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-mission {
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mission-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.mission-item > i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.mission-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.highlight {
    text-align: center;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    flex: 1;
}

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
}

.highlight-label {
    display: block;
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}

/* ===== LEADERSHIP ===== */
.leadership {
    padding: 80px 0;
    background: var(--white);
}

.leadership-intro {
    text-align: center;
    max-width: 600px;
    margin: -25px auto 50px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.leadership-item {
    text-align: center;
    max-width: 220px;
}

.leadership-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(27,42,74,0.25);
}

.leadership-circle.featured {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 8px 25px rgba(212,168,67,0.35);
}

.leadership-item:hover .leadership-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(27,42,74,0.35);
}

.leadership-item:hover .leadership-circle.featured {
    box-shadow: 0 12px 35px rgba(212,168,67,0.45);
}

.leadership-badge {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--accent);
    color: var(--white);
    margin-bottom: 10px;
}

.leadership-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.leadership-item p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== OFFERINGS ===== */
.offerings {
    padding: 80px 0;
    background: var(--white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.offering {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 35px 30px;
    border-bottom: 1px solid var(--light-gray);
    transition: background 0.3s;
    position: relative;
}

.offering:nth-child(odd) {
    border-right: 1px solid var(--light-gray);
}

.offering:nth-last-child(-n+2) {
    border-bottom: none;
}

.offering:hover {
    background: var(--off-white);
}

.offering-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-gray);
    line-height: 1;
    margin-right: 20px;
    flex-shrink: 0;
    min-width: 50px;
    transition: color 0.3s;
}

.offering:hover .offering-num {
    color: var(--accent);
}

.offering-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.offering-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.offering:hover .offering-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.offering-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.offering-text p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 80px 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(27,42,74,0.9));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ===== CTA ===== */
.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--accent) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

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

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

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(27, 42, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-description {
    text-align: center;
    max-width: 600px;
    margin: -20px auto 50px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    padding: 45px 30px 35px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--accent));
    border-radius: 0 0 3px 3px;
    transition: width 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.12);
}

.contact-info-card:hover::before {
    width: 60px;
}

.contact-info-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border: none;
    box-shadow: 0 10px 40px rgba(27, 42, 74, 0.25);
}

.contact-info-card.featured::before {
    background: linear-gradient(90deg, var(--gold), #e8c65a);
    width: 60px;
}

.contact-info-card.featured:hover {
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.35);
}

.contact-info-card.featured h3 {
    color: var(--white);
}

.contact-info-card.featured p,
.contact-info-card.featured a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-card.featured a:hover {
    color: var(--white);
}

.contact-info-icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    margin-bottom: 22px;
    font-size: 1.5rem;
    color: var(--navy);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon-wrap {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.contact-info-card.featured .contact-info-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.contact-info-card.featured:hover .contact-info-icon-wrap {
    background: rgba(255, 255, 255, 0.25);
    color: var(--gold);
}

.contact-info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 4px;
}

.contact-info-card a {
    color: var(--gray);
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--navy);
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy) !important;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.contact-card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-card-link:hover {
    color: var(--accent) !important;
}

.contact-card-link:hover i {
    transform: translateX(4px);
}

.contact-info-card.featured .contact-card-link {
    color: var(--gold) !important;
}

.contact-info-card.featured .contact-card-link:hover {
    color: #e8c65a !important;
}

.contact-card-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 5px 16px;
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--off-white);
    color: var(--text);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-about > p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.footer-contact-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.footer-contact-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.footer-contact-info h4 a {
    color: var(--navy);
}

.footer-contact-info a {
    color: var(--gray);
    transition: color 0.3s;
}

.footer-contact-info a:hover {
    color: var(--accent);
}

.footer-contact-info i {
    margin-right: 5px;
    width: 16px;
    text-align: center;
}

.footer-col h3 {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: all 0.3s;
}

.footer-col ul li a i {
    margin-right: 6px;
    font-size: 0.7rem;
    color: var(--accent);
}

.footer-col ul li a:hover {
    color: var(--navy);
    padding-left: 5px;
}

.footer-map iframe {
    width: 100%;
    border-radius: 8px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 18px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 500;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--navy);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-contact {
        display: none;
    }

    .info-strip-content {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-image img {
        height: 300px;
    }

    .leadership-grid {
        gap: 40px;
    }

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

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

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }

    .school-name h1 {
        font-size: 1.2rem;
    }

    .logo {
        height: 90px;
    }

    .header-content {
        flex-wrap: nowrap;
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }

    .navbar {
        position: relative;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .navbar.scrolled {
        box-shadow: none;
    }

    .nav-content {
        padding: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        min-height: 520px;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(27,42,74,0.7) 0%, rgba(15,27,51,0.55) 100%);
    }

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

    .hero-content {
        padding: 50px 0;
    }

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

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

    .offering:nth-child(odd) {
        border-right: none;
    }

    .offering {
        padding: 25px 15px;
    }

    .offering-num {
        font-size: 1.8rem;
        min-width: 36px;
        margin-right: 12px;
    }

    .leadership-grid {
        gap: 30px;
    }

    .about-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-highlights {
        justify-content: center;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .gallery-caption {
        transform: translateY(0);
    }

    .top-bar-left {
        gap: 10px;
        font-size: 0.72rem;
    }

    .top-bar-item:last-child {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .btn-primary,
    .hero-content .btn-secondary {
        padding: 12px 28px;
        font-size: 0.85rem;
        display: inline-block;
        width: auto;
        margin: 0 5px 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-description {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .leadership-item {
        max-width: 260px;
    }

    .footer-col h3 {
        margin-top: 10px;
    }

    .footer-map iframe {
        height: 180px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 480px;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(27,42,74,0.65) 0%, rgba(15,27,51,0.5) 100%);
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: 1.35rem;
        margin-bottom: 25px;
    }

    .info-card {
        padding: 20px 15px;
    }

    .info-card h3 {
        font-size: 0.9rem;
    }

    .offering {
        padding: 20px 12px;
    }

    .offering-num {
        font-size: 1.5rem;
        min-width: 30px;
        margin-right: 10px;
    }

    .offering-text h3 {
        font-size: 0.9rem;
    }

    .offering-text p {
        font-size: 0.8rem;
    }

    .leadership-circle {
        width: 100px;
        height: 100px;
        font-size: 1.6rem;
    }

    .cta {
        padding: 50px 0;
    }

    .cta h2 {
        font-size: 1.3rem;
    }

    .cta p {
        font-size: 0.85rem;
    }

    .contact-info-card {
        padding: 35px 20px 30px;
    }

    .contact-info-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .about-image img {
        height: 240px;
    }

    .highlight {
        padding: 12px 15px;
    }

    .highlight-number {
        font-size: 1.5rem;
    }
}

/* ===== TOUCH DEVICE IMPROVEMENTS ===== */
@media (hover: none) {
    .gallery-caption {
        transform: translateY(0);
    }

    .contact-info-card::before {
        width: 60px;
    }

    .nav-links li a:hover::after,
    .nav-links li a:hover {
        background: transparent;
    }

    .nav-links li a.active {
        background: rgba(255,255,255,0.1);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .top-bar, .navbar, .hamburger, .back-to-top, .hero-overlay, .footer-social, .footer-map {
        display: none !important;
    }

    .hero {
        min-height: auto;
        background: none;
        color: var(--text);
    }

    .hero-content h1, .hero-content p {
        color: var(--text);
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
