/* ============================================================
   PIONEER LEARNING CENTRE — Main Design System Stylesheet
   Theme: Dark / Black + Gold Accents
   Author: Pioneer Learning Centre
   ============================================================ */

/* ------------------------------------------------------------
   1. GOOGLE FONTS
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ------------------------------------------------------------
   2. CSS RESET & BASE STYLES
   ------------------------------------------------------------ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e8c95a;
}

ul, ol {
    list-style: none;
}

input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

::selection {
    background-color: #c9a84c;
    color: #0a0a0a;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a84c;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #f5f5f5;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

.text-gold {
    color: #c9a84c;
}

.text-muted {
    color: #9ca3af;
}

.text-white {
    color: #f5f5f5;
}

.section-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

/* ------------------------------------------------------------
   4. UTILITY CLASSES
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-narrow {
    max-width: 900px;
}

.section-padding {
    padding: 5rem 0;
}

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

.bg-surface {
    background-color: #1a1a1a;
}

.bg-card {
    background-color: #141414;
}

.gold-accent-border {
    border-bottom: 3px solid #c9a84c;
    padding-bottom: 0.75rem;
    display: inline-block;
}

/* ------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f5f5f5;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #f5f5f5;
}

.navbar-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c9a84c, #e8c95a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #0a0a0a;
    font-size: 1.2rem;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background-color: #c9a84c;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c9a84c;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #f5f5f5;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1.5rem 0;
        gap: 0.25rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
        border-bottom: 1px solid #2a2a2a;
    }

    .navbar-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: 0.85rem 1.5rem;
        width: 100%;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }
}

/* ------------------------------------------------------------
   6. HERO SLIDER
   ------------------------------------------------------------ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 700px;
    padding: 0 1.25rem;
    margin: 0 auto 0 10%;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #f5f5f5;
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    color: #c9a84c;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #d1d5db;
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(245, 245, 245, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background-color: #c9a84c;
    transform: scale(1.3);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(42, 42, 42, 0.5);
    color: #f5f5f5;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-arrow:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
}

.hero-arrow.prev {
    left: 1rem;
}

.hero-arrow.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .hero-content {
        margin: 0 1.25rem;
        align-items: center;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ------------------------------------------------------------
   7. SECTION STYLES
   ------------------------------------------------------------ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c95a);
    margin: 0 auto 1.25rem;
    border-radius: 2px;
}

.section-header.left-aligned {
    text-align: left;
}

.section-header.left-aligned .gold-line {
    margin: 0 0 1.25rem;
}

/* Gold accent top border sections */
.section-accent-top {
    border-top: 1px solid #2a2a2a;
    position: relative;
}

.section-accent-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c95a);
    border-radius: 2px;
}

/* ------------------------------------------------------------
   8. BUTTONS
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, #c9a84c, #e8c95a);
    color: #0a0a0a;
    border-color: #c9a84c;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e8c95a, #c9a84c);
    color: #0a0a0a;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.15);
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: #f5f5f5;
    border-color: #2a2a2a;
}

.btn-outline:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.btn-outline-gold {
    background: transparent;
    color: #c9a84c;
    border-color: #c9a84c;
}

.btn-outline-gold:hover {
    background: #c9a84c;
    color: #0a0a0a;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-gold-shimmer {
    background: linear-gradient(135deg, #c9a84c, #e8c95a, #c9a84c);
    background-size: 200% 200%;
    animation: shimmer 2.5s ease-in-out infinite;
    color: #0a0a0a;
    border-color: #c9a84c;
}

.btn-gold-shimmer:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ------------------------------------------------------------
   9. CARD STYLES (Glass-morphism)
   ------------------------------------------------------------ */
.card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    border-color: #c9a84c;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.08);
}

.card-glass {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(42, 42, 42, 0.5);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card-glass:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(232, 201, 90, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: #c9a84c;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #f5f5f5;
}

.card-text {
    font-size: 0.925rem;
    color: #9ca3af;
    line-height: 1.7;
}

/* ------------------------------------------------------------
   10. STATS COUNTER
   ------------------------------------------------------------ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover {
    border-color: #c9a84c;
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #c9a84c;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-number .suffix {
    font-size: 0.6em;
    vertical-align: super;
}

.stat-label {
    font-size: 0.925rem;
    color: #9ca3af;
    font-weight: 500;
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #c9a84c;
    opacity: 0.7;
}

/* Animated counter underline */
.stat-item .stat-underline {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c9a84c, transparent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* ------------------------------------------------------------
   11. VIDEO GRID
   ------------------------------------------------------------ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #141414;
    border: 1px solid #2a2a2a;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-item:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.video-item .video-caption {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
}

/* ------------------------------------------------------------
   12. GALLERY GRID
   ------------------------------------------------------------ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay .gallery-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
}

.gallery-overlay .gallery-subtitle {
    font-size: 0.8rem;
    color: #c9a84c;
}

.gallery-expand-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    font-size: 0.875rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-expand-icon {
    opacity: 1;
    transform: scale(1);
}

/* ------------------------------------------------------------
   13. FORMS
   ------------------------------------------------------------ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.85rem 1.125rem;
    background-color: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #f5f5f5;
    font-size: 0.925rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    background-color: #1a1a1a;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d1d5db' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c9a84c;
    border-radius: 4px;
    cursor: pointer;
}

.form-check label {
    font-size: 0.875rem;
    color: #d1d5db;
    cursor: pointer;
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 0.375rem;
}

.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------ */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #c9a84c;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-contact li .icon {
    color: #c9a84c;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.2);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-inner p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #c9a84c;
}

/* ------------------------------------------------------------
   15. ANIMATIONS (AOS-Compatible)
   ------------------------------------------------------------ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-up"] {
    transform: perspective(400px) rotateX(10deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(400px) rotateX(0);
}

/* AOS delay classes */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* Fade In Keyframe */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.3); }
    50%      { box-shadow: 0 0 25px rgba(201, 168, 76, 0.5); }
}

/* ------------------------------------------------------------
   16. CHATBOT FLOATING BUTTON
   ------------------------------------------------------------ */
.chatbot-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #e8c95a);
    border: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: chatbotPulse 2.5s ease-in-out infinite;
}

.chatbot-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}

@keyframes chatbotPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35); }
    50%      { box-shadow: 0 4px 35px rgba(201, 168, 76, 0.55); }
}

.chatbot-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.chatbot-btn:hover .chatbot-tooltip {
    opacity: 1;
}

.chatbot-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #0a0a0a;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    font-weight: 700;
}

/* ------------------------------------------------------------
   17. TIMELINE (About Page)
   ------------------------------------------------------------ */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #c9a84c, #2a2a2a, #c9a84c);
    top: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 3rem;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    align-self: flex-start;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    padding-left: 3rem;
    margin-left: 50%;
    text-align: left;
}

@media (max-width: 768px) {
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        margin-left: 0;
        text-align: left;
    }
}

.timeline-dot {
    position: absolute;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 3px solid #c9a84c;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

@media (max-width: 768px) {
    .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
}

.timeline-date {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.timeline-content {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.timeline-content:hover {
    border-color: #c9a84c;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* ------------------------------------------------------------
   18. TESTIMONIALS CAROUSEL
   ------------------------------------------------------------ */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
}

.testimonial-card {
    min-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: 100%;
    }
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: #c9a84c;
    font-size: 0.925rem;
}

.testimonial-text {
    font-size: 0.925rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 76, 0.3);
}

.testimonial-name {
    font-size: 0.925rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 0.125rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #d1d5db;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a2a2a;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #c9a84c;
    width: 24px;
    border-radius: 4px;
}

/* ------------------------------------------------------------
   19. COUNTDOWN TIMER
   ------------------------------------------------------------ */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 100px;
}

.countdown-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #c9a84c;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ca3af;
    margin-top: 0.5rem;
    display: block;
}

.countdown-separator {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2a2a2a;
    align-self: center;
    display: none;
}

@media (min-width: 576px) {
    .countdown-separator {
        display: block;
    }
}

/* ------------------------------------------------------------
   20. STAFF DIRECTORY GRID
   ------------------------------------------------------------ */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
}

.staff-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.staff-card:hover {
    border-color: #c9a84c;
    transform: translateY(-6px);
}

.staff-card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-bottom: 1px solid #2a2a2a;
}

.staff-card-body {
    padding: 1.25rem;
}

.staff-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
}

.staff-card-role {
    font-size: 0.825rem;
    color: #c9a84c;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.staff-card-bio {
    font-size: 0.825rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.staff-card-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.staff-card-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.staff-card-social a:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
}

/* ------------------------------------------------------------
   21. SEARCH PAGE
   ------------------------------------------------------------ */
.search-page {
    padding-top: 100px;
}

.search-header {
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    padding: 2.5rem 0;
}

.search-input-wrapper {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
}

.search-input-wrapper input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #f5f5f5;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input-wrapper input:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.search-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.search-filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-filter-btn:hover,
.search-filter-btn.active {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
}

.search-results-count {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.search-result-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.search-result-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.search-result-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
}

.search-result-content h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.search-result-content h4 a {
    color: #f5f5f5;
    text-decoration: none;
}

.search-result-content h4 a:hover {
    color: #c9a84c;
}

.search-result-meta {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.search-result-excerpt {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.search-result-excerpt mark {
    background: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
    padding: 0 2px;
    border-radius: 2px;
}

.search-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.search-pagination a,
.search-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #141414;
    border: 1px solid #2a2a2a;
    color: #d1d5db;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-pagination a:hover,
.search-pagination .current {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
}

/* ------------------------------------------------------------
   22. ACCESSIBILITY
   ------------------------------------------------------------ */

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: #c9a84c;
    color: #0a0a0a;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Outlines */
:focus-visible {
    outline: 2px solid #c9a84c;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Remove focus outline for mouse clicks */
:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Adjustments */
@media (prefers-contrast: high) {
    .card-glass {
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: none;
    }

    .navbar {
        background-color: #0a0a0a;
        backdrop-filter: none;
    }

    .btn-outline {
        border-width: 2px;
    }
}

/* ------------------------------------------------------------
   23. MODAL / LIGHTBOX
   ------------------------------------------------------------ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1rem;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.open .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #c9a84c;
    color: #0a0a0a;
}

.modal-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #0a0a0a;
}

.modal-caption {
    padding: 1.25rem 1.5rem;
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
}

.modal-caption h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.modal-caption p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-nav:hover {
    background: #c9a84c;
    color: #0a0a0a;
}

.modal-nav.prev {
    left: 1rem;
}

.modal-nav.next {
    right: 1rem;
}

/* ------------------------------------------------------------
   24. ADMIN LOGIN PAGE
   ------------------------------------------------------------ */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.admin-login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(201, 168, 76, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.admin-login-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-login-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c9a84c, #e8c95a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: #0a0a0a;
}

.admin-login-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
}

.admin-login-header p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.admin-login-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 2.5rem;
}

.admin-login-card .form-group {
    margin-bottom: 1.25rem;
}

.admin-login-card .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.admin-login-card .form-input {
    padding: 0.925rem 1.125rem;
    background: #1a1a1a;
    border-color: #2a2a2a;
    border-radius: 10px;
    font-size: 0.925rem;
}

.admin-login-card .form-input:focus {
    border-color: #c9a84c;
    background: #1a1a1a;
}

.admin-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.admin-login-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    cursor: pointer;
}

.admin-login-options input[type="checkbox"] {
    accent-color: #c9a84c;
    width: 16px;
    height: 16px;
}

.admin-login-options a {
    color: #c9a84c;
    text-decoration: none;
}

.admin-login-options a:hover {
    text-decoration: underline;
}

.admin-login-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.925rem;
}

.admin-login-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.admin-login-footer a {
    color: #c9a84c;
}

/* Admin login error state */
.admin-login-error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    color: #ef4444;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

/* ------------------------------------------------------------
   25. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

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

/* Mobile (576px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.125rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .hero-slider {
        min-height: 500px;
        max-height: 700px;
    }

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

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

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

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

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

    .testimonial-card {
        min-width: calc(100% - 0.5rem);
    }

    .admin-login-card {
        padding: 1.75rem;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 576px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-slider {
        min-height: 450px;
        max-height: 600px;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

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

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem 1.25rem;
    }

    .admin-login-card {
        padding: 1.5rem;
    }

    .admin-login-logo {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
    }
}

/* ------------------------------------------------------------
   26. MISC COMPONENTS
   ------------------------------------------------------------ */

/* Page header (inner pages) */
.page-header {
    padding: 8rem 0 3rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.page-header .breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
}

.page-header .breadcrumb a:hover {
    color: #c9a84c;
}

.page-header .breadcrumb .separator {
    color: #2a2a2a;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 990;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #d1d5db;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Image placeholder / skeleton loading */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeletonLoad 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeletonLoad {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Gold divider */
.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c95a);
    border-radius: 2px;
    margin: 1.5rem 0;
}

.gold-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* Notification / Alert banners */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.alert-warning {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Tag / Badge component */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #9ca3af;
}

.tag-gold {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
}

.tag-green {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Pricing / Program cards */
.program-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    border-color: #c9a84c;
    transform: translateY(-6px);
}

.program-card.featured {
    border-color: #c9a84c;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, #141414 100%);
}

.program-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #c9a84c;
    color: #0a0a0a;
    padding: 0.25rem 2.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.program-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #c9a84c;
    margin-bottom: 0.25rem;
}

.program-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #9ca3af;
}

.program-features {
    margin: 1.5rem 0;
    text-align: left;
}

.program-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.program-features li::before {
    content: '✓';
    color: #c9a84c;
    font-weight: 700;
}

/* Partners / Logo cloud */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 2rem 0;
}

.partner-logo {
    height: 40px;
    opacity: 0.4;
    filter: grayscale(1);
    transition: all 0.4s ease;
}

.partner-logo:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Accordion / FAQ */
.accordion-item {
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #141414;
    transition: border-color 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.accordion-header {
    padding: 1.125rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #c9a84c;
}

.accordion-header .icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #9ca3af;
    flex-shrink: 0;
}

.accordion-item.open .accordion-header .icon {
    transform: rotate(45deg);
    color: #c9a84c;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.25rem;
}

.accordion-item.open .accordion-body {
    max-height: 500px;
    padding: 0 1.25rem 1.125rem;
}

.accordion-body p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Notification / Announcement bar */
.announcement-bar {
    background: linear-gradient(90deg, #c9a84c, #e8c95a);
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a0a0a;
    position: relative;
}

.announcement-bar a {
    color: #0a0a0a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.announcement-bar .close-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #0a0a0a;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.announcement-bar .close-btn:hover {
    opacity: 1;
}

/* ------------------------------------------------------------
   MISSING COMPATIBILITY CLASSES (View-to-CSS alignment)
   ------------------------------------------------------------ */

/* Section base (views use <section class="section">) */
.section {
    padding: 5rem 0;
}

.section-dark {
    background-color: #1a1a1a;
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section,
    .section-dark {
        padding: 3rem 0;
    }
}

/* Text utilities */
.text-gold {
    color: #c9a84c !important;
}

.text-center {
    text-align: center !important;
}

/* Navbar compatibility - match header.php classes */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f5f5f5;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo:hover {
    color: #f5f5f5;
}

.nav-logo-icon {
    font-size: 1.5rem;
    color: #c9a84c;
}

/* Nav toggle (hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #f5f5f5;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav menu (replaces navbar-nav) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Nav search button */
.nav-search-btn {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 6px;
}

.nav-search-btn:hover {
    color: #c9a84c;
}

/* Nav CTA button */
.nav-cta {
    margin-left: 0.5rem;
}

/* Skip link (accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: #c9a84c;
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* Flash message variants for announcement-bar */
.announcement-bar.flash-success {
    background: linear-gradient(90deg, #10b981, #059669);
}

.announcement-bar.flash-error {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.announcement-bar.flash-info {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.announcement-bar.flash-warning {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.announcement-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    padding: 0 0.25rem;
    transition: opacity 0.3s ease;
}

.flash-close:hover {
    opacity: 1;
}

/* Page hero banner */
.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(26,26,26,0.7) 100%),
                radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 0.75rem;
}

.page-hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Section title */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c95a);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c95a);
    margin: 1rem 0;
    border-radius: 2px;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* About page */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-intro-text h2 {
    text-align: left;
}

.about-intro-text h2::after {
    margin: 0.75rem 0 0;
}

.about-intro-text p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-intro-text strong {
    color: #c9a84c;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-stat-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.about-stat-card:hover {
    border-color: #c9a84c;
}

.about-stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #c9a84c;
    margin-bottom: 0.25rem;
}

.about-stat-card span:last-child {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Mission & Vision on about page */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mission-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #c9a84c, #e8c95a);
    border-radius: 0 2px 2px 0;
}

.mission-card:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
}

.mission-icon {
    font-size: 1.75rem;
    color: #c9a84c;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}

.mission-card > p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 500;
}

.mission-desc {
    font-size: 0.9rem !important;
    color: #9ca3af !important;
    font-weight: 400 !important;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2a;
}

/* Founder story */
.founder-story {
    max-width: 800px;
    margin: 0 auto;
}

.founder-content blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d1d5db;
    font-style: italic;
    padding: 2rem 2.5rem;
    margin: 0 0 2rem;
    border-left: 4px solid #c9a84c;
    background: rgba(201, 168, 76, 0.05);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.founder-content blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: #c9a84c;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    opacity: 0.3;
    line-height: 1;
}

.founder-content p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.founder-content strong {
    color: #c9a84c;
    font-weight: 600;
}

/* Community purpose */
.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .purpose-grid {
        grid-template-columns: 1fr;
    }
}

.purpose-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #d1d5db;
    transition: border-color 0.3s ease;
}

.purpose-item:hover {
    border-color: #c9a84c;
}

.purpose-item i {
    color: #c9a84c;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Core values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
}

.value-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
}

.value-icon {
    font-size: 1.5rem;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}

.value-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f5f5f5;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #c9a84c, #2a2a2a, #c9a84c);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 0;
}

.timeline-item.left {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    background: #c9a84c;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left::before {
    right: -7px;
}

.timeline-item.right::before {
    left: -7px;
}

.timeline-content {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s ease;
}

.timeline-content:hover {
    border-color: #c9a84c;
}

.timeline-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0a0a0a;
    background: #c9a84c;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 3rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item::before {
        left: 13px !important;
        right: auto !important;
    }
}

/* Location section */
.location-content {
    max-width: 700px;
    margin: 0 auto;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2.5rem;
}

.location-text p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.location-text strong {
    color: #c9a84c;
    font-weight: 600;
}

/* Footer social links (views use .social-link, CSS had .social-icon) */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #141414;
    border: 1px solid #2a2a2a;
    color: #9ca3af;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #c9a84c;
    border-color: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Newsletter in footer */
.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #c9a84c;
}

.newsletter-input {
    flex: 1;
    padding: 0.65rem 1rem;
    background: #0a0a0a;
    border: none;
    color: #f5f5f5;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-btn {
    padding: 0.65rem 1rem;
    background: #c9a84c;
    border: none;
    color: #0a0a0a;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #e8c95a;
}

/* Accreditation badges */
.badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gold {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

/* Back to top with .visible state */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: #c9a84c;
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #e8c95a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Search overlay */
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 0 1.25rem;
}

.search-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.search-close:hover {
    color: #f5f5f5;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    font-size: 1.1rem;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
}

.search-box input:focus {
    border-color: #c9a84c;
}

.search-box .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

.search-results {
    max-height: 60vh;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 3px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #d1d5db;
    transition: background 0.2s ease;
    margin-bottom: 0.25rem;
}

.search-result-item:hover {
    background: #1a1a1a;
    color: #c9a84c;
}

.search-result-item i {
    color: #c9a84c;
    width: 20px;
    text-align: center;
}

.search-result-all {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    color: #c9a84c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.search-result-all:hover {
    background: #1a1a1a;
}

.search-result-empty {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
}

/* Chatbot widget */
.chatbot-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9998;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #e8c95a);
    border: none;
    color: #0a0a0a;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chatbotPulse 2s ease-in-out infinite;
}

@keyframes chatbotPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(201, 168, 76, 0.5); }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-widget.active .chatbot-toggle {
    display: none;
}

.chatbot-window {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #c9a84c;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.95rem;
}

.chatbot-header button {
    background: none;
    border: none;
    color: #0a0a0a;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.chatbot-header button:hover {
    opacity: 1;
}

.chatbot-header i {
    margin-right: 0.5rem;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 2px;
}

.chat-message {
    display: flex;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.bot .chat-bubble {
    background: #141414;
    color: #d1d5db;
    border: 1px solid #2a2a2a;
    border-bottom-left-radius: 4px;
}

.chat-message.user .chat-bubble {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    border-bottom-right-radius: 4px;
}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid #2a2a2a;
}

.chatbot-options button {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.chatbot-options button:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.05);
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #2a2a2a;
    padding: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #f5f5f5;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #c9a84c;
}

.chatbot-input button {
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    color: #c9a84c;
    cursor: pointer;
    font-size: 1rem;
}

/* 404 Error page */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.25rem 4rem;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.error-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.75rem;
}

.error-text {
    color: #9ca3af;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Staff grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.staff-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.staff-card:hover {
    border-color: #c9a84c;
    transform: translateY(-4px);
}

.staff-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.staff-card-image-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #c9a84c;
}

.staff-card-body {
    padding: 1.25rem;
}

.staff-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
}

.staff-card-role {
    font-size: 0.85rem;
    color: #c9a84c;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.staff-card-subject {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Gallery filter tabs */
.gallery-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #9ca3af;
    background: #141414;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: rgba(201, 168, 76, 0.1);
    color: #c9a84c;
    border-color: #c9a84c;
}

/* Gallery modal/lightbox */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
}

.gallery-modal-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #d1d5db;
    font-size: 0.95rem;
}

.gallery-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #9ca3af;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.gallery-modal-close:hover {
    color: #f5f5f5;
}

/* News cards */
.news-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 1.5rem;
}

.news-card-date {
    font-size: 0.8rem;
    color: #c9a84c;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card-link {
    font-size: 0.85rem;
    color: #c9a84c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-card-link:hover {
    color: #e8c95a;
}

/* Event cards */
.event-card {
    display: flex;
    gap: 1rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
}

.event-card:hover {
    border-color: #c9a84c;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.5rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}

.event-date-day {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c9a84c;
    line-height: 1;
}

.event-date-month {
    font-size: 0.7rem;
    color: #c9a84c;
    text-transform: uppercase;
    font-weight: 600;
}

.event-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
}

.event-info p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
}

.event-location {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
    margin-top: 0.25rem;
}

.event-location i {
    color: #c9a84c;
    margin-right: 0.35rem;
}

/* Search results page */
.search-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-page-input {
    max-width: 600px;
    margin: 0 auto;
}

.search-results-list {
    max-width: 700px;
    margin: 0 auto;
}

.search-result-type {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    margin-right: 0.5rem;
}

.search-result-type.news {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.search-result-type.event {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Two column layout helper */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .two-col-grid {
        grid-template-columns: 1fr;
    }
}

/* Social feed section */
.social-feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .social-feed-grid {
        grid-template-columns: 1fr;
    }
}

/* Countdown section */
.countdown-section {
    text-align: center;
    padding: 3rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #c9a84c;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.25rem;
    display: block;
}

/* Responsive navbar (mobile) */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1.5rem 0;
        gap: 0.25rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
        border-bottom: 1px solid #2a2a2a;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu .nav-link {
        padding: 0.85rem 1.5rem;
        width: 100%;
        font-size: 1rem;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-search-btn {
        padding: 0.85rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    .nav-cta {
        margin: 0.5rem 1.5rem;
    }

    .chatbot-window {
        width: calc(100vw - 2rem);
        max-height: 80vh;
        bottom: 0;
        right: 0;
    }
}

/* Medium screens: reduce nav link padding */
@media (min-width: 993px) and (max-width: 1200px) {
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .nav-cta {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Main content padding to account for fixed navbar */
#main-content {
    padding-top: 70px;
}

/* ------------------------------------------------------------
   ADDITIONAL MISSING CLASSES (View compatibility)
   ------------------------------------------------------------ */

/* ===== Footer ===== */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-text {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ===== Tables (Fees, Admissions, Requirements) ===== */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 3px;
}

.fees-table,
.requirements-table {
    width: 100%;
    border-collapse: collapse;
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
}

.fees-table thead,
.requirements-table thead {
    background: #1a1a1a;
}

.fees-table th,
.requirements-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #2a2a2a;
    white-space: nowrap;
}

.fees-table td,
.requirements-table td {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    color: #d1d5db;
    border-bottom: 1px solid #2a2a2a;
}

.fees-table tbody tr:hover,
.requirements-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.03);
}

.fees-table tbody tr:last-child td,
.requirements-table tbody tr:last-child td {
    border-bottom: none;
}

.fees-table td:first-child,
.requirements-table td:first-child {
    font-weight: 600;
    color: #f5f5f5;
}

/* ===== Gallery filter buttons ===== */
.gallery-filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #9ca3af;
    background: #141414;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: rgba(201, 168, 76, 0.1);
    color: #c9a84c;
    border-color: #c9a84c;
}

.gallery-empty,
.news-empty {
    padding: 3rem 1.25rem;
    text-align: center;
    color: #9ca3af;
}

.gallery-empty i,
.news-empty i {
    font-size: 3rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
    display: block;
}

/* ===== Contact page ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-form-wrapper .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .section-title::after {
    margin: 0.75rem 0 0;
}

.contact-info-wrapper .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info-wrapper .section-title::after {
    margin: 0.75rem 0 0;
}

.contact-info-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.15rem;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Contact form styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1d5db;
}

.form-input,
.form-textarea {
    padding: 0.8rem 1rem;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #f5f5f5;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #c9a84c;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7280;
}

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

/* ===== Admissions Steps ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.step-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    border-color: #c9a84c;
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c9a84c, #e8c95a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.step-icon {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #f5f5f5;
}

.step-card p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
}

/* ===== Homepage grid responsive overrides ===== */
@media (max-width: 992px) {
    .home-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .home-grid-2 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .home-grid-3 {
        grid-template-columns: 1fr !important;
    }
    .home-grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Academics page: Levels ===== */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.level-card {
    padding: 2rem;
}

.level-features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.level-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #d1d5db;
}

.level-features li i {
    flex-shrink: 0;
}

/* Curriculum section */
.curriculum-content {
    margin-top: 2rem;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
}

.curriculum-item {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
    text-align: center;
}

.curriculum-item:hover {
    border-color: #c9a84c;
}

.curriculum-icon {
    font-size: 1.75rem;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}

.curriculum-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.curriculum-item p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Library section */
.library-content {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
}

.library-text p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.library-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.library-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #d1d5db;
}

/* ICT section */
.ict-content {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.ict-content > p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.ict-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .ict-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ict-grid {
        grid-template-columns: 1fr;
    }
}

.ict-item {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.ict-item:hover {
    border-color: #c9a84c;
}

.ict-item i {
    font-size: 1.75rem;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}

.ict-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 0.375rem;
}

.ict-item p {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* Sports section */
.sports-content {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
}

.sports-content > p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 576px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sport-item {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.sport-item:hover {
    border-color: #c9a84c;
}

.sport-item i {
    font-size: 1.5rem;
    color: #c9a84c;
    margin-bottom: 0.5rem;
}

.sport-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1d5db;
    margin: 0;
}

/* Facilities table */
.facilities-table {
    width: 100%;
    border-collapse: collapse;
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
}

.facilities-table thead {
    background: #1a1a1a;
}

.facilities-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #2a2a2a;
}

.facilities-table td {
    padding: 0.8rem 1.25rem;
    font-size: 0.875rem;
    color: #d1d5db;
    border-bottom: 1px solid #2a2a2a;
}

.facilities-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.03);
}

.facilities-table tbody tr:last-child td {
    border-bottom: none;
}

.facilities-table td:first-child {
    font-weight: 600;
    color: #f5f5f5;
    white-space: nowrap;
}

/* Pass rate badge */
.pass-rate-badge {
    text-align: center;
    margin-top: 2.5rem;
}

.badge-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
    padding: 2rem 3rem;
}

.badge-inner i {
    font-size: 2rem;
    color: #c9a84c;
}

.badge-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #c9a84c;
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1d5db;
}

/* Apply page */
.apply-intro {
    margin-bottom: 2rem;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2a2a;
}

.form-section-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c9a84c, #e8c95a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0a0a0a;
    flex-shrink: 0;
}

.form-section-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0;
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

/* Alert messages */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-error i {
    color: #ef4444;
}

.alert-error strong {
    color: #f5f5f5;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.alert-success i {
    color: #10b981;
}

/* ============================================================
   MOBILE RESPONSIVENESS — Comprehensive across all pages
   ============================================================ */

/* ---------- UP TO 480px (small phones) ---------- */
@media (max-width: 480px) {
    /* Navigation */
    .nav-logo-text {
        font-size: 1rem;
    }
    .nav-logo-icon {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero-slide {
        min-height: 70vh;
    }
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
    }
    .hero-description {
        font-size: 0.85rem !important;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        padding: 1rem;
    }

    /* Page hero */
    .page-hero {
        padding: 5rem 0 2.5rem !important;
    }
    .page-hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }
    .page-hero-content p {
        font-size: 0.9rem !important;
    }

    /* Section padding */
    .section,
    .section-dark,
    .section-padding {
        padding: 2.5rem 0;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    .section-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Stats grid (home welcome) */
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    .stat-item {
        padding: 1rem 0.75rem !important;
    }
    .stat-number {
        font-size: 1.5rem !important;
    }
    .stat-label {
        font-size: 0.7rem !important;
    }

    /* Cards */
    .card {
        padding: 1.25rem !important;
    }
    .card-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.25rem !important;
    }
    .card-title {
        font-size: 1rem !important;
    }
    .card-text {
        font-size: 0.85rem !important;
    }

    /* Video grid */
    .video-item iframe {
        height: 200px;
    }

    /* Mission & Vision cards */
    .mission-card {
        padding: 1.5rem !important;
    }
    .mission-card h3 {
        font-size: 1.1rem !important;
    }

    /* About page */
    .about-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }
    .about-stat-card {
        padding: 1rem !important;
    }
    .about-stat-number {
        font-size: 1.5rem !important;
    }
    .founder-content blockquote {
        font-size: 0.95rem !important;
        padding: 1.25rem !important;
    }

    /* Values grid */
    .values-grid {
        gap: 0.75rem !important;
    }
    .value-card {
        padding: 1rem 0.75rem !important;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 2.5rem !important;
    }
    .timeline-content {
        padding: 1rem !important;
    }
    .timeline-year {
        font-size: 0.7rem !important;
    }

    /* Tables */
    .fees-table th,
    .fees-table td,
    .requirements-table th,
    .requirements-table td,
    .facilities-table th,
    .facilities-table td {
        padding: 0.6rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* Gallery filter buttons */
    .gallery-filters {
        gap: 0.35rem;
    }
    .gallery-filter-btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    /* Staff grid */
    .staff-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* News cards */
    .news-card-body {
        padding: 1rem !important;
    }
    .news-card-title {
        font-size: 0.95rem !important;
    }
    .news-card-excerpt {
        font-size: 0.8rem !important;
    }

    /* Event cards */
    .event-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1rem !important;
    }
    .event-date-badge {
        margin-bottom: 0.5rem;
    }

    /* Countdown */
    .countdown {
        gap: 0.5rem !important;
    }
    .countdown-number {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    }
    .countdown-item {
        min-width: 60px !important;
        padding: 0.75rem 0.5rem !important;
    }
    .countdown-separator {
        font-size: 1.5rem !important;
    }

    /* Contact page */
    .contact-info-card {
        padding: 1.25rem !important;
    }
    .contact-info-item {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }
    .contact-info-icon {
        margin-bottom: 0.5rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 0 !important;
    }
    .footer-grid {
        gap: 1.5rem !important;
    }
    .footer-heading {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }
    .footer-text,
    .footer-description {
        font-size: 0.8rem !important;
    }
    .footer-links a {
        font-size: 0.8rem !important;
    }
    .footer-contact li {
        font-size: 0.8rem !important;
    }
    .footer-bottom {
        margin-top: 1.5rem !important;
        padding: 1rem 0 !important;
    }
    .footer-bottom-inner p {
        font-size: 0.7rem !important;
        text-align: center;
        width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-newsletter h5 {
        text-align: center;
    }
    .footer-badges {
        justify-content: center;
    }

    /* Back to top */
    .back-to-top {
        width: 38px !important;
        height: 38px !important;
        bottom: 5rem !important;
        right: 1rem !important;
    }

    /* Chatbot */
    .chatbot-window {
        width: calc(100vw - 1rem) !important;
        right: 0 !important;
        bottom: 0 !important;
    }
    .chatbot-toggle {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.25rem !important;
    }

    /* Apply form */
    .form-section {
        padding: 1.25rem !important;
    }
    .form-section-header h3 {
        font-size: 0.95rem !important;
    }
    .form-input,
    .form-textarea {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.85rem !important;
    }

    /* Error page */
    .error-code {
        font-size: clamp(4rem, 20vw, 6rem) !important;
    }
    .error-title {
        font-size: clamp(1.1rem, 5vw, 1.5rem) !important;
    }

    /* Steps (admissions) */
    .step-card {
        padding: 1.5rem 1rem !important;
    }
    .step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    /* Badge */
    .badge-inner {
        padding: 1.25rem 1.5rem !important;
    }
    .badge-value {
        font-size: 1.75rem !important;
    }
}

/* ---------- UP TO 768px (phones + small tablets) ---------- */
@media (max-width: 768px) {
    /* Hero slider */
    .hero-slide {
        min-height: 65vh;
    }
    .hero-content {
        padding: 1.25rem;
    }
    .hero-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.75rem !important;
    }
    .hero-actions {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .hero-actions .btn-lg {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.85rem !important;
    }

    /* Section padding */
    .section-padding,
    .section,
    .section-dark {
        padding: 3rem 0;
    }

    /* Stats on home */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Cards grids */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    /* Video grid */
    .video-grid {
        grid-template-columns: 1fr !important;
    }
    .video-item iframe {
        height: 240px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Staff */
    .staff-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* News */
    .news-card-image {
        height: 180px !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .footer-col {
        text-align: center;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-social {
        justify-content: center;
    }

    /* About */
    .about-intro {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .about-intro-text h2::after {
        margin: 0.75rem auto 0 !important;
    }

    /* Mission/Vision */
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
    }
    .mission-card {
        text-align: center;
    }
    .mission-card::before {
        width: 100% !important;
        height: 4px !important;
        top: 0 !important;
        left: 0 !important;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr !important;
    }

    /* Countdown */
    .countdown {
        gap: 0.75rem;
    }
    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.75rem;
    }

    /* Apply */
    .apply-form {
        gap: 1.25rem;
    }
    .form-row {
        grid-template-columns: 1fr !important;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    /* CTA section */
    .cta-section {
        padding: 2rem 1rem !important;
    }

    /* Search overlay */
    .search-overlay {
        padding-top: 5vh !important;
    }
    .search-box input {
        font-size: 1rem !important;
        padding: 0.85rem 1rem 0.85rem 2.5rem !important;
    }
}

/* ---------- UP TO 992px (small desktops + tablets) ---------- */
@media (max-width: 992px) {
    /* Hero */
    .hero-content {
        max-width: 90%;
    }

    /* About stats */
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Two column layouts */
    .two-col-grid {
        grid-template-columns: 1fr !important;
    }

    /* Social feed */
    .social-feed-grid {
        grid-template-columns: 1fr !important;
    }

    /* Update home news/events to stack */
    .home-news-events {
        grid-template-columns: 1fr !important;
    }

    /* Gallery on medium */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer already handles 992px */

    /* Facebook embed */
    .card iframe[src*="facebook"] {
        width: 100% !important;
        max-width: 100%;
    }
}

/* ---------- TOUCH TARGET IMPROVEMENTS (all mobile) ---------- */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .footer-links a,
    .social-link,
    .gallery-filter-btn,
    .chatbot-options button {
        padding: 0.6rem 0.9rem !important;
        min-height: 44px;
    }

    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .form-input,
    .form-textarea,
    .newsletter-input {
        font-size: 16px !important; /* Prevents iOS zoom */
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */