@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0b5fa5;
    --primary-blue-hover: #084c85;
    --accent-orange: #e07a22;
    --accent-orange-hover: #c96515;
    --accent-green: #10b981;
    --accent-green-hover: #059669;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --footer-bg: #0b5fa5;
    --footer-bottom-bg: #094e88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
}

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
}


/* Header Logo */
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 40px;
    overflow: hidden;
}

.logo img{
    width: 35px;
    height: 25px;
    object-fit: contain;
    display: block;
}

.school-logo{
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.menu-trigger, .search-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all var(--transition-speed);
}

.menu-trigger:hover, .search-trigger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}


/* --- HERO BANNER --- */
.hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--bg-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 52px;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* --- BLUE STRIP VALUES (HOME PAGE) --- */
.values-strip {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 40px 0;
}

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

.value-card {
    text-align: center;
    padding: 10px;
}

.value-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-card h3 {
    color: var(--bg-white);
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

/* --- SECTION GENERAL STYLE --- */
.section {
    padding: 70px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
}

/* --- LATEST NEWS GRID (HOME PAGE & NEWS DETAIL) --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.news-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.news-img {
    height: 180px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.news-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-body h4 {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--primary-blue);
    line-height: 1.4;
    font-weight: 600;
    min-height: 42px;
}

.news-btn {
    margin-top: auto;
    align-self: center;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}

.news-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.center-btn-container {
    text-align: center;
    margin-top: 20px;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

/* --- DISCOVER PATHS (HOME PAGE) --- */
.discover-paths {
    background-color: var(--bg-light);
}

.discover-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.discover-header h2 {
    flex: 1;
    font-size: 38px;
    line-height: 1.2;
}

.discover-header p {
    flex: 1;
    color: var(--text-muted);
    font-size: 15px;
}

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

.path-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.path-img {
    height: 220px;
    overflow: hidden;
}

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

.path-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.path-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.path-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.path-btn {
    align-self: stretch;
    text-align: center;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

.path-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

/* --- ADMISSIONS TAB SECTION (HOME PAGE) --- */
.admissions-tabs {
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.tab-btn {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #888;
    background: none;
    border: none;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: var(--primary-blue);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
}

.tab-pane {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tab-pane.active {
    display: block;
}

.tab-pane p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- EVENTS SECTION (HOME PAGE) --- */
.events-section {
    background-color: var(--bg-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.event-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.event-date {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #111;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.event-card h4 {
    font-size: 14px;
    color: var(--primary-blue);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-time {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}

/* --- READY TO APPLY (HOME PAGE) --- */
.apply-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    text-align: center;
}

.apply-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.apply-banner .container {
    position: relative;
    z-index: 2;
}

.apply-banner h2 {
    font-size: 40px;
    color: var(--bg-white);
    margin-bottom: 12px;
    font-weight: 800;
}

.apply-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.apply-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-apply {
    padding: 12px 35px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    min-width: 160px;
    cursor: pointer;
    border: none;
}

.btn-apply.orange {
    background-color: var(--accent-orange);
    color: var(--bg-white);
}

.btn-apply.orange:hover {
    background-color: var(--accent-orange-hover);
}

.btn-apply.green {
    background-color: var(--accent-green);
    color: var(--bg-white);
}

.btn-apply.green:hover {
    background-color: var(--accent-green-hover);
}

.btn-apply.blue {
    background-color: #0d62a1;
    color: var(--bg-white);
}

.btn-apply.blue:hover {
    background-color: var(--primary-blue-hover);
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-columns {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.about-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.founder-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: var(--bg-white);
}

.founder-img {
    height: 380px;
    overflow: hidden;
}

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

.founder-info {
    padding: 15px;
    background-color: var(--bg-white);
}

.founder-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.legacy-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.stat-item h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- DIVISIONS PAGE SPECIFICS --- */
.division-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.division-row:last-child {
    border-bottom: none;
}

.division-row.reverse .division-image {
    order: 2;
}

.division-image {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

.division-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.division-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.division-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 24px;
}

.div-stat h4 {
    font-size: 22px;
    color: #111;
}

.div-stat p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.btn-div {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.btn-div.orange {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-div.orange:hover {
    background-color: var(--accent-orange);
    color: var(--bg-white);
}

.btn-div.green {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.btn-div.green:hover {
    background-color: var(--accent-green);
    color: var(--bg-white);
}

.btn-div.blue {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-div.blue:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.join-banner {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/classroom-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.join-banner h2 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 15px;
}

.join-banner p {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- ADMISSIONS PAGE SPECIFICS --- */
.admissions-columns {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item h3 {
    font-size: 16px;
    color: #111;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.admissions-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    background: var(--bg-white);
}

.sidebar-card h4 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-card h4 a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.sidebar-card h4 a:hover {
    color: var(--primary-blue-hover);
}

.sidebar-btn {
    display: block;
    text-align: center;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.sidebar-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

/* --- TERMS & CONDITIONS PAGE --- */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.terms-item h3 {
    font-size: 16px;
    color: #111;
    margin-bottom: 8px;
}

.terms-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.terms-update {
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* --- NEWS LISTING PAGE SPECIFICS --- */
.news-intro {
    display: flex;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.news-intro h2 {
    font-size: 38px;
    flex: 1;
}

.news-intro p {
    font-size: 15px;
    color: var(--text-muted);
    flex: 1.2;
    line-height: 1.7;
}

.news-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.featured-news-card {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
}

.feat-img {
    width: 40%;
    min-height: 160px;
}

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

.feat-body {
    width: 60%;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.feat-body h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.feat-body h3 a {
    color: var(--primary-blue);
}

.feat-body h3 a:hover {
    color: var(--primary-blue-hover);
}

.feat-body p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.feat-btn {
    align-self: flex-start;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.feat-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

.news-filter-section {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 40px;
}

.filter-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-btn {
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-speed);
}

.filter-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.filter-btn:not(.active) {
    color: #444;
}

.filter-btn:hover {
    color: var(--primary-blue);
}

.news-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.news-list-item {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
}

.list-img {
    width: 30%;
    min-height: 180px;
}

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

.list-body {
    width: 70%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.list-body h3 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.list-body h3 a {
    color: var(--primary-blue);
}

.list-body h3 a:hover {
    color: var(--primary-blue-hover);
}

.list-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.list-btn {
    align-self: flex-start;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.list-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    background-color: #1a1a1a;
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.newsletter-section h2 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 12px;
}

.newsletter-section p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"],
.newsletter-form select {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: var(--bg-white);
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
    min-width: 240px;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 40px;
}

.newsletter-form button {
    background-color: transparent;
    border: 1px solid var(--bg-white);
    color: var(--bg-white);
    padding: 12px 35px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.newsletter-form button:hover {
    background-color: var(--bg-white);
    color: #1a1a1a;
}

/* --- NEWS DETAIL PAGE SPECIFICS --- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
}

.back-link:hover {
    color: var(--primary-blue);
}

.article-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.publish-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.article-hero-img {
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

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

.article-content {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.article-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.related-news-title {
    font-size: 24px;
    margin-bottom: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--footer-bg);
    color: var(--bg-white);
    padding: 60px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.85;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 4px;
}

.footer-bottom {
    background-color: var(--footer-bottom-bg);
    padding: 20px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 16px;
    opacity: 0.85;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- DRAWER MENU & SEARCH OVERLAYS --- */
.drawer, .search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.drawer.open, .search-modal.open {
    display: block;
    opacity: 1;
}

.drawer-overlay, .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.drawer-content {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    padding: 40px 30px;
    transition: left var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.drawer.open .drawer-content {
    left: 0;
}

.close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    margin-bottom: 40px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-nav a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

.drawer-nav a:hover, .drawer-nav a.active {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

.search-modal-content {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    max-width: 600px;
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex-grow: 1;
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.search-form button {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border: none;
    padding: 0 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.search-form button:hover {
    background-color: var(--primary-blue-hover);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .news-grid, .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .values-grid, .paths-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .admissions-tabs {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .tab-btn {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .apply-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-columns, .admissions-columns, .news-featured-grid, .news-filter-section, .division-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .division-row.reverse .division-image {
        order: 0;
    }
    
    .featured-news-card, .news-list-item {
        flex-direction: column;
    }
    
    .feat-img, .feat-body, .list-img, .list-body {
        width: 100%;
    }
    
    .article-hero-img {
        height: 300px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .news-grid, .events-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 15px;
    }
}
