/* ==========================================================================
   Mahabodhi Inter College - Custom Premium Stylesheet
   Design System: Navy Blue (Authority & Education) + Saffron Gold (Knowledge & Tradition)
   ========================================================================== */

@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: #121e42;       /* Deep Navy Blue */
    --primary-light: #1e326f; /* Medium Blue */
    --primary-dark: #090f23;  /* Dark Navy */
    --secondary: #d97706;     /* Saffron Gold / Warm Amber */
    --secondary-hover: #b45309;
    --accent: #f59e0b;        /* Bright Gold */
    --bg-light: #f8fafc;      /* Soft Light Gray/Blue */
    --bg-white: #ffffff;
    --text-dark: #0f172a;     /* Near Black */
    --text-muted: #475569;    /* Slate Gray */
    --border-color: #e2e8f0;  /* Cool Gray Border */
    --shadow-sm: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

a:hover {
    color: var(--secondary);
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Utility Bar */
.utility-bar {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--secondary);
}

.utility-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.utility-info span {
    margin-right: 1.5rem;
    font-weight: 500;
}

.utility-info i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.utility-links a {
    color: var(--bg-light);
    margin-left: 1rem;
    font-weight: 500;
}

.utility-links a:hover {
    color: var(--accent);
}

/* Sticky Navigation Header */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-item a {
    font-family: var(--font-heading);
    color: var(--primary-light);
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--bg-white);
    background-color: var(--primary);
}

.nav-item.active a {
    background-color: var(--secondary);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* Ticker Section for News */
.ticker-section {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 0;
}

.ticker-container {
    display: flex;
    align-items: center;
}

.ticker-label {
    background-color: var(--secondary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
    border-radius: var(--radius);
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 8px;
    border-style: solid;
    border-color: transparent transparent transparent var(--secondary);
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 25s linear infinite;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.ticker-content span {
    margin-right: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-content i {
    color: var(--secondary);
}

@keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    min-height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 15, 35, 0.95) 30%, rgba(9, 15, 35, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-info {
    animation: fadeInUp 1s ease;
}

.hero-tag {
    background-color: rgba(217, 119, 6, 0.2);
    border: 1px solid var(--secondary);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h2 {
    color: var(--bg-white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h2 span {
    color: var(--accent);
    display: block;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero p {
    color: var(--border-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Glassmorphism Card on Hero */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    animation: fadeInRight 1s ease;
}

.hero-stats-card h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    background-color: rgba(217, 119, 6, 0.3);
    color: var(--accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-text h4 {
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 600;
}

.stat-text p {
    color: var(--border-color);
    font-size: 0.85rem;
    margin: 0;
}

/* Section Title and Base Page Structure */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    position: relative;
}

.section-title h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Stream Showcase Section */
.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.stream-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 4px solid var(--primary-light);
    transition: var(--transition);
}

.stream-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary);
}

.stream-card.highlight {
    border-top-color: var(--secondary);
}

.stream-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(30, 50, 111, 0.1);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.stream-card:hover .stream-icon {
    background-color: var(--secondary);
    color: var(--bg-white);
    transform: rotate(360deg);
}

.stream-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.stream-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.stream-badge {
    background-color: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
}

/* Info Banner Details (DISE details, values, etc.) */
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.info-text-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-text-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.info-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.info-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* Welcome Messages from Leaders */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.welcome-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.welcome-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 8rem;
    line-height: 1;
    font-family: serif;
    color: rgba(18, 30, 66, 0.05);
}

.welcome-quote {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.welcome-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.welcome-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
}

/* Notice & Alerts Panel */
.notice-panel {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}

.notice-list {
    list-style: none;
}

.notice-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.notice-item:first-child {
    padding-top: 0;
}

.notice-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.notice-item:hover {
    transform: translateX(5px);
}

.notice-date {
    background-color: rgba(18, 30, 66, 0.05);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.notice-date span.day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.notice-date span.month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.notice-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.notice-text h4 a {
    color: var(--primary);
}

.notice-text h4 a:hover {
    color: var(--secondary);
}

.notice-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* Facilities Section styling */
.facility-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.facility-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.facility-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.facility-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.facility-body p {
    font-size: 0.9rem;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Roster / Staff Cards styling */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.staff-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.staff-avatar-wrap {
    height: 240px;
    background-color: #f1f5f9;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--primary);
}

.staff-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.staff-card:hover .staff-avatar-wrap img {
    transform: scale(1.05);
}

.staff-details-body {
    padding: 1.5rem;
}

.staff-details-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.staff-details-body p.role {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.staff-details-body p.dept {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Gallery Section styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 240px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 30, 66, 0.85), rgba(18, 30, 66, 0));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

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

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.gallery-info p {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

/* Contact Grid & Map Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
}

.contact-card-sidebar {
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-card-sidebar h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.8rem;
}

.contact-sidebar-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-sidebar-icon {
    font-size: 1.3rem;
    color: var(--accent);
}

.contact-sidebar-text h4 {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.contact-sidebar-text p {
    color: var(--border-color);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 50, 111, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* Page Header for Inner Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--secondary);
}

.page-header h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--border-color);
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--border-color);
}

/* Footer Section */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    padding: 4.5rem 0 1.5rem 0;
    border-top: 4px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: var(--bg-white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

.footer-logo-text h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-logo-text span {
    font-size: 0.7rem;
    color: var(--accent);
    display: block;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    color: var(--secondary);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom a {
    color: #64748b;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
    .btn-group {
        justify-content: center;
    }
    .info-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .utility-content {
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }
    .utility-links {
        display: none; /* Hide top secondary links on small screen */
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--bg-white);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-md);
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-item a {
        display: block;
        padding: 0.8rem;
    }
    .section {
        padding: 3.5rem 0;
    }
    .section-title {
        margin-bottom: 2.5rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
