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

:root {
    --navy: #0f1b2d;
    --navy-light: #1a2d47;
    --blue: #1e3a5f;
    --blue-mid: #2c5282;
    --gold: #c8a951;
    --gold-light: #dfc373;
    --cream: #faf8f4;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red-accent: #8b2131;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

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

.section {
    padding: 100px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 400;
}

.section-header {
    margin-bottom: 60px;
    max-width: 720px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-desc {
    margin-top: 16px;
    color: var(--gray-600);
    font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--blue-mid);
    color: var(--white);
    border-color: var(--blue-mid);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--blue-mid);
    font-size: 0.95rem;
    gap: 6px;
    transition: gap var(--transition);
}

.link-arrow::after {
    content: '\2192';
    transition: transform var(--transition);
}

.link-arrow:hover {
    gap: 10px;
    color: var(--navy);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .separator {
    opacity: 0.3;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.top-bar-right a:hover {
    color: var(--gold-light);
}

.lang-switch {
    background: rgba(255,255,255,0.1);
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600 !important;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--blue-mid) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--navy-light) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,45,0.88) 0%, rgba(30,58,95,0.75) 50%, rgba(15,27,45,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 100px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 14px;
    position: relative;
}

.hero-scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-600);
    font-size: 1.02rem;
}

.about-text .lead {
    color: var(--gray-700);
    font-size: 1.1rem;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.signature-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.about-signature strong {
    display: block;
    font-family: var(--font-display);
    color: var(--navy);
}

.about-signature span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.about-accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    width: 160px;
}

.accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.accent-text {
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ===== VALUES ===== */
.values-section {
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--blue-mid);
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.value-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== ACADEMICS ===== */
.programmes-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.programme-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.programme-card.reverse {
    direction: rtl;
}

.programme-card.reverse > * {
    direction: ltr;
}

.programme-img {
    position: relative;
    height: 100%;
    min-height: 380px;
}

.programme-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.programme-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.programme-content {
    padding: 40px 40px 40px 0;
}

.programme-card.reverse .programme-content {
    padding: 40px 0 40px 40px;
}

.programme-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.programme-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.programme-highlights {
    margin-bottom: 24px;
}

.programme-highlights li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-600);
    font-size: 0.92rem;
}

.programme-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* ===== CAMPUS BANNER ===== */
.campus-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.campus-banner-bg {
    position: absolute;
    inset: 0;
}

.campus-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,27,45,0.9), rgba(30,58,95,0.8));
}

.campus-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.campus-banner-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.campus-banner-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== FACILITIES ===== */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.facility-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.facility-card.large {
    grid-column: span 2;
    height: 340px;
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover img {
    transform: scale(1.05);
}

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,27,45,0.9) 0%, rgba(15,27,45,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: all var(--transition);
}

.facility-card:hover .facility-overlay {
    background: linear-gradient(to top, rgba(15,27,45,0.95) 0%, rgba(15,27,45,0.5) 100%);
}

.facility-overlay h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.facility-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.facility-card:hover .facility-overlay p {
    max-height: 100px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--navy);
}

.testimonials .section-label { color: var(--gold-light); }
.testimonials h2 { color: var(--white); }

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

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: rgba(200,169,81,0.1);
    border-color: rgba(200,169,81,0.3);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-card blockquote {
    color: rgba(255,255,255,0.85);
    font-size: 0.98rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--gray-400);
    font-size: 0.82rem;
}

/* ===== ADMISSIONS ===== */
.admissions {
    background: var(--gray-50);
}

.admissions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.admissions-info .lead {
    margin-bottom: 32px;
}

.admissions-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--blue-mid);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.step h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

.step p {
    color: var(--gray-500);
    font-size: 0.92rem;
}

.admissions-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.detail span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.form-card h3 {
    margin-bottom: 8px;
}

.form-card > p {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(44,82,130,0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success h4 {
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-500);
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card.featured-news {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-img {
    position: relative;
    overflow: hidden;
}

.news-card:not(.featured-news) .news-img {
    height: 200px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-content {
    padding: 28px;
}

.news-content time {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-content h3 {
    margin: 8px 0 12px;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--gray-500);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--blue-mid), var(--navy));
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-text p {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-section .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.cta-section .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gray-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-mid);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-map {
    min-height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

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

.footer-logo .logo-mark {
    background: rgba(255,255,255,0.1);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-tagline {
    color: rgba(255,255,255,0.4);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

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

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-accreditations {
    display: flex;
    gap: 24px;
}

.footer-accreditations span {
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .facility-card.large {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .top-bar { display: none; }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--gray-100);
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat {
        flex: 1 1 40%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-secondary { display: none; }

    .about-accent-box {
        position: static;
        width: 100%;
        margin-top: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

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

    .programme-card,
    .programme-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .programme-img {
        min-height: 240px;
    }

    .programme-content,
    .programme-card.reverse .programme-content {
        padding: 28px;
    }

    .campus-banner { padding: 60px 0; }

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

    .facility-card,
    .facility-card.large {
        grid-column: span 1;
        height: 240px;
    }

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

    .admissions-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .news-card.featured-news {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .contact-map {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-accreditations {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
