/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars while keeping scroll functionality */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

:root {
    --color-black: #000000;
    --color-red: #841818;
    --color-white: #FAFAFA;
    --color-gray: #888888;
    --font-title: 'Cardo', serif;
    --font-subtitle: 'Beau Rivage', cursive;
    --font-body: 'Karma', serif;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===================================
   Intro Video Overlay
   =================================== */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.intro-overlay.active {
    display: flex;
}

.intro-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    text-align: center;
    white-space: nowrap;
}

.intro-title {
    font-size: 100px;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
                 0 0 80px rgba(255, 255, 255, 0.6),
                 0 0 120px rgba(255, 255, 255, 0.4),
                 0 4px 30px rgba(0, 0, 0, 0.9);
    letter-spacing: 12px;
    animation: introBrightGlow 2s ease-in-out infinite alternate;
}

.intro-ex {
    color: #FFFFFF;
}

.intro-year {
    color: #FFFFFF;
    font-size: 100px;
    margin-left: -8px;
}

.skip-button {
    position: absolute;
    bottom: 100px;
    right: 50px;
    background: rgba(132, 24, 24, 0.9);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.skip-button:hover {
    background: var(--color-red);
    transform: scale(1.05);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10000;
}

.progress-fill {
    height: 100%;
    background: var(--color-red);
    width: 0%;
    animation: progress 10s linear forwards;
}

/* ===================================
   Particle Background
   =================================== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

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

.christ-logo {
    height: 56px;
    width: auto;
}

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

.logo-title {
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
}

.logo-subtitle,
.logo-location {
    color: var(--color-white);
    font-size: 10px;
    font-weight: 400;
}

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

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s ease;
}

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

.logo-right {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.ex-logo {
    height: 56px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    width: 48px;
    height: 48px;
    position: relative;
}

.mobile-menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(132, 24, 24, 0.4) 100%);
    z-index: 2;
}

.floating-suits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.suit {
    position: absolute;
    font-size: 128px;
    color: var(--color-red);
    opacity: 0.4;
    filter: blur(2px);
}

.suit-1 {
    top: 10%;
    left: 5%;
    animation: float1 20s infinite ease-in-out;
}

.suit-2 {
    top: 20%;
    right: 10%;
    animation: float2 25s infinite ease-in-out;
}

.suit-3 {
    bottom: 25%;
    left: 10%;
    animation: float3 30s infinite ease-in-out;
}

.suit-4 {
    bottom: 10%;
    right: 5%;
    animation: float4 22s infinite ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.hero-university {
    font-size: 24px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.christ-text {
    display: block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(250, 250, 250, 0.3);
}

.deemed-text {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(250, 250, 250, 0.9);
    margin-top: 4px;
}

.hero-department {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.85);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: 2px;
}

.stats-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.stats-logo {
    height: 80px;
    width: auto;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 120px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1;
    white-space: nowrap;
}

.glow-text {
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(132, 24, 24, 0.5),
                 0 0 40px rgba(132, 24, 24, 0.8),
                 0 0 20px rgba(132, 24, 24, 0.5);
    animation: glow-pulse 2s infinite;
}

.year-text {
    color: var(--color-white);
    margin-left: -8px;
}

.hero-tagline {
    font-family: var(--font-subtitle);
    font-size: 32px;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 32px;
}

/* Countdown Timer - Flipping Clock Style */
.countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    perspective: 1000px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
    border: 2px solid rgba(132, 24, 24, 0.5);
    border-radius: 0;
    padding: 8px 16px;
    min-width: 100px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    transform: translateY(-50%);
}

.time-box:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--color-red);
    box-shadow: 0 6px 20px rgba(132, 24, 24, 0.4),
                inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.time-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-white);
    font-family: 'Courier New', monospace;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(132, 24, 24, 0.3);
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
}

/* Animation class to be added via JavaScript only when value changes */
.time-value.flip {
    animation: flipNumber 0.6s ease-in-out;
}

.time-label {
    font-size: 11px;
    color: rgba(250, 250, 250, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    font-weight: 600;
}

.time-separator {
    font-size: 40px;
    color: rgba(250, 250, 250, 0.5);
    font-weight: 700;
    animation: blink 2s ease-in-out infinite;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 10px 30px rgba(132, 24, 24, 0.5);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(250, 250, 250, 0.1);
    transform: translateY(-2px);
}

.scroll-indicator {
    animation: bounce 1.5s infinite;
    color: var(--color-white);
}

.scroll-indicator svg {
    display: block;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-red);
    margin: 20px auto 0;
}

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

.about-intro {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.9);
    text-align: center;
    margin-bottom: 50px;
}

.about-theme {
    text-align: center;
    padding: 40px;
    border: 2px solid var(--color-red);
    background: rgba(132, 24, 24, 0.05);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.about-theme:hover {
    background: rgba(132, 24, 24, 0.1);
}

.theme-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 12px;
}

.theme-name {
    font-family: var(--font-subtitle);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin: 0;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.8);
    text-align: justify;
    margin-bottom: 60px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid rgba(132, 24, 24, 0.3);
    border-bottom: 1px solid rgba(132, 24, 24, 0.3);
}

.stat-item {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 250, 250, 0.6);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(132, 24, 24, 0.3);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 20px;
}

/* ===================================
   Events Section
   =================================== */
.events-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.events-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: -1;
}

.event-tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--color-red);
    border-color: var(--color-red);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.event-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(132, 24, 24, 0.3);
    border-radius: 0;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-red);
    box-shadow: 0 20px 40px rgba(132, 24, 24, 0.3);
}

.event-card.hidden {
    display: none;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
    margin-top: 0;
}

.event-description {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.event-category {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* View All Events Button */
.view-all-events-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-red), #a82020);
    color: var(--color-white);
    padding: 18px 50px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(132, 24, 24, 0.4);
    position: relative;
    overflow: hidden;
}

.view-all-events-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.view-all-events-btn:hover::before {
    left: 100%;
}

.view-all-events-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(132, 24, 24, 0.6);
}

/* ===================================
   Some Pointers Section
   =================================== */
.pointers-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
    z-index: 10;
}

.pointers-section .section-subtitle {
    text-align: center;
    color: #841818;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: -15px;
    margin-bottom: 60px;
}

.pointers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pointer-card {
    background: rgba(250, 250, 250, 0.03);
    border: 2px solid #841818;
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pointer-card:hover {
    transform: translateY(-5px);
    border-color: #FAFAFA;
    box-shadow: 0 15px 40px rgba(132, 24, 24, 0.4);
}

.pointer-header {
    background: rgba(132, 24, 24, 0.1);
    border-bottom: 2px solid #841818;
    padding: 25px 30px;
    text-align: center;
}

.pointer-title {
    color: #FAFAFA;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

.pointer-content {
    padding: 35px 30px;
}

.pointer-content p {
    color: #FAFAFA;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-align: justify;
}

.pointer-content p:last-child {
    margin-bottom: 0;
}

.pointer-highlight {
    color: #FAFAFA !important;
    font-weight: 600;
    background: rgba(132, 24, 24, 0.15);
    padding: 15px 20px;
    border-left: 4px solid #841818;
    border-radius: 0;
    margin: 25px 0 !important;
}

.pointer-note {
    color: #841818 !important;
    font-weight: 700;
    font-size: 1rem !important;
    letter-spacing: 1px;
    text-align: center !important;
    margin-top: 25px !important;
    text-transform: uppercase;
}

/* Responsive Design for Pointers */
@media (max-width: 992px) {
    .pointers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .pointer-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .pointer-content {
        padding: 25px 20px;
    }

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

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

/* Map Wrapper - Full Width at Top */
.contact-map-wrapper {
    margin-bottom: 60px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(132, 24, 24, 0.1);
    border-left: 4px solid var(--color-red);
}

.location-info svg {
    width: 32px;
    height: 32px;
    color: var(--color-red);
    flex-shrink: 0;
}

.location-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-red);
    margin: 0 0 4px 0;
}

.location-info p {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.8);
    margin: 0;
}

.contact-map {
    position: relative;
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.contact-map iframe {
    border-radius: 0;
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
}

.map-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-overlay-link:hover {
    opacity: 1;
}

.map-overlay {
    width: 100%;
    height: 100%;
    background: rgba(132, 24, 24, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.map-overlay-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px;
    text-align: center;
}

.map-overlay-text svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Coordinators Wrapper */
.coordinators-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.coordinators-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border: 1px solid rgba(132, 24, 24, 0.2);
}

.contact-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-red);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coordinators-grid {
    display: grid;
    gap: 16px;
}

.coordinator-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(132, 24, 24, 0.3);
    border-radius: 0;
    padding: 20px;
    transition: all 0.3s ease;
}

.coordinator-card:hover {
    border-color: var(--color-red);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(132, 24, 24, 0.3);
}

.coordinator-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.coordinator-role,
.coordinator-phone {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.7);
    margin: 4px 0;
}

.coordinator-phone a {
    color: rgba(250, 250, 250, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.coordinator-phone a:hover {
    color: var(--color-red);
    text-decoration: underline;
}

/* Old grid removed */
.contact-grid {
    display: none;
}

.mt-4 {
    margin-top: 40px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(132, 24, 24, 0.3);
}

.footer .container {
    max-width: 800px;
}

/* Website Query Contact Section */
.footer-contact {
    margin-bottom: 40px;
}

.footer-query-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-contact-card {
    background: rgba(132, 24, 24, 0.1);
    border: 1px solid rgba(132, 24, 24, 0.3);
    border-radius: 0;
    padding: 20px 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-contact-card:hover {
    background: rgba(132, 24, 24, 0.15);
    border-color: rgba(132, 24, 24, 0.5);
    transform: translateY(-2px);
}

.footer-contact-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 8px;
}

.footer-contact-email {
    font-size: 0.95rem;
    color: #4A9EFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-email:hover {
    color: #6BB6FF;
    text-decoration: underline;
}

/* Footer Branding */
.footer-branding {
    margin-bottom: 35px;
    padding: 30px 0;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-ex-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.footer-dept-logo {
    height: 55px;
    width: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    font-family: var(--font-subtitle);
    font-size: 1.2rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-motto {
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Social Media */
.footer-social {
    margin-bottom: 30px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(132, 24, 24, 0.1);
    border: 1px solid rgba(132, 24, 24, 0.3);
    border-radius: 0;
    color: #FAFAFA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(132, 24, 24, 0.3);
    border-color: #841818;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(132, 24, 24, 0.4);
}

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

/* Footer Credits */
.footer-credits {
    padding-top: 20px;
}

.footer-made-by {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-made-by a {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-made-by a:hover {
    color: var(--color-red);
    transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logos {
        gap: 25px;
    }

    .footer-ex-logo {
        height: 45px;
    }

    .footer-dept-logo {
        height: 40px;
    }

    .footer-query-title {
        font-size: 1.1rem;
    }

    .footer-contact-card {
        padding: 15px 20px;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-motto {
        font-size: 0.85rem;
    }
}

/* ===================================
   Coming Soon Page
   =================================== */
.coming-soon-body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coming-soon-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(132, 24, 24, 0.4) 100%);
    z-index: 2;
}

.coming-soon-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.clock-icon {
    margin-bottom: 32px;
    animation: spin 2s linear infinite;
}

.clock-icon svg {
    display: block;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--color-white);
}

.coming-soon-description {
    font-size: 24px;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 16px;
}

.coming-soon-info {
    font-size: 18px;
    color: rgba(250, 250, 250, 0.7);
    margin-bottom: 40px;
}
