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

/* ==========================================================================
   DESIGN SYSTEM VARIABLES (LIGHT THEME)
   ========================================================================== */
:root {
    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --bg-glass-hover: rgba(255, 255, 255, 0.95);
    
    /* Logo inspired color scheme */
    --accent-gold: #a88b58; /* Deeper gold for better contrast on light backgrounds */
    --accent-gold-glow: rgba(168, 139, 88, 0.15);
    --accent-gold-dark: #7c643b;
    
    --accent-indigo: #1e3a8a; /* Royal Blue */
    --accent-indigo-glow: rgba(30, 58, 138, 0.08);
    --accent-violet: #4f46e5;
    
    --text-primary: #0f172a; /* Slate 900 */
    --text-secondary: #475569; /* Slate 600 */
    --text-muted: #64748b; /* Slate 500 */
    --text-gold: #7c643b;
    
    --border-color: rgba(168, 139, 88, 0.2);
    --border-color-glow: rgba(168, 139, 88, 0.35);
    
    /* Typography Scale */
    --font-size-hero: clamp(2rem, 5vw, 3.5rem);
    --font-size-h2: clamp(1.6rem, 3.5vw, 2.5rem);
    --font-size-h3: clamp(1.2rem, 2.5vw, 1.75rem);

    /* Spacing & Layout */
    --max-width: 1280px;
    --header-height: 80px;
    --header-height-shrink: 70px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.02) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(168, 139, 88, 0.02) 0%, transparent 45%);
    background-attachment: fixed;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
    border: 2px solid var(--bg-secondary);
    transition: background var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography Selection */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-wrap: balance;
    color: var(--text-primary);
}

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

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

/* Common Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Section Common */
section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
}

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

/* Primary Button: Royal Navy & Blue theme */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-indigo) 0%, #0f172a 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.35);
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-indigo) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(30, 58, 138, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold-dark);
    background: rgba(168, 139, 88, 0.05);
    transform: translateY(-2px);
}

/* Floating Light Effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}
.btn:hover::after {
    opacity: 1;
}

/* ==========================================================================
   HEADER / NAVIGATION (DARK NAVY BRAND BLOCK)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 139, 88, 0.25);
    background: rgba(11, 19, 43, 0.9); /* Deep Royal Navy */
    backdrop-filter: blur(12px);
    transition: height var(--transition-medium), background var(--transition-medium), border-color var(--transition-medium);
}

.header.shrink {
    height: var(--header-height-shrink);
    background: rgba(8, 14, 32, 0.95);
    border-bottom-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-right: 2rem;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(168, 139, 88, 0.2);
    transition: transform var(--transition-medium);
}

.logo-link:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.9rem 0.5rem;
    color: #e2e8f0;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-fast);
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition: all var(--transition-fast);
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 9px; }
.mobile-nav-toggle span:nth-child(3) { top: 18px; }

.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--accent-gold);
}
.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--accent-gold);
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-indigo), var(--accent-violet));
    width: 0%;
    z-index: 1002;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.05);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, var(--bg-primary) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    margin-top: var(--header-height);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(30, 58, 138, 0.08);
    border: 1px solid rgba(168, 139, 88, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-indigo);
    margin-bottom: 2rem;
    font-weight: 700;
    animation: fadeInDown var(--transition-slow) both;
}

.hero-title {
    font-size: var(--font-size-hero);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--accent-indigo);
    animation: fadeInUp var(--transition-slow) 0.2s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-weight: 500;
    animation: fadeInUp var(--transition-slow) 0.4s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp var(--transition-slow) 0.6s both;
}

/* ==========================================================================
   STATISTICS BAR (LIGHT CARD)
   ========================================================================== */
.stats-bar {
    position: relative;
    z-index: 5;
    margin-top: -80px;
    padding: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.stat-item {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
    position: relative;
    transition: background var(--transition-fast);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--bg-glass-hover);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-indigo);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-title {
    font-size: var(--font-size-h2);
    position: relative;
    padding-bottom: 1.5rem;
    color: var(--accent-indigo);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

/* ==========================================================================
   ABOUT BRIEF SECTION
   ========================================================================== */
.about-brief-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-brief-text h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 1.5rem;
    color: var(--accent-gold-dark);
}

.about-brief-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.about-features li::before {
    content: '✦';
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.about-brief-img-wrapper {
    position: relative;
}

.about-brief-img {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-slow);
}

.about-brief-img-wrapper:hover .about-brief-img {
    transform: translateY(-10px) scale(1.02);
}

.about-brief-img-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed var(--accent-gold);
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
    transition: transform var(--transition-slow);
}
.about-brief-img-wrapper:hover::before {
    transform: translate(5px, 5px);
}

/* ==========================================================================
   ACADEMICS SUMMARY (LIGHT THEME SWITCH)
   ========================================================================== */
.academics-summary {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(168, 139, 88, 0.1);
    border-bottom: 1px solid rgba(168, 139, 88, 0.1);
}

.academics-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: all var(--transition-medium);
}

.tab-btn:hover, .tab-btn.active {
    border-color: var(--accent-indigo);
    color: #ffffff;
    background: var(--accent-indigo);
    box-shadow: 0 4px 15px var(--accent-indigo-glow);
}

.academics-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
}

.academics-panel.active {
    display: grid;
    animation: fadeIn var(--transition-slow) both;
}

.panel-content h3 {
    font-size: var(--font-size-h3);
    color: var(--accent-indigo);
    margin-bottom: 1.5rem;
}

.panel-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.panel-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-box {
    border-left: 2px solid var(--accent-gold);
    padding-left: 1rem;
}

.meta-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-indigo);
    font-weight: 700;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.panel-image img {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

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

.facility-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all var(--transition-medium);
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-indigo);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 20px rgba(30, 58, 138, 0.05);
}

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

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

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

.facility-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-secondary) 100%);
}

.facility-info {
    padding: 2rem;
}

.facility-icon {
    font-size: 1.5rem;
    color: var(--accent-gold-dark);
    margin-bottom: 1rem;
    display: inline-block;
}

.facility-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-indigo);
}

.facility-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   TESTIMONIALS (SLIDER IN LIGHT THEME)
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(168, 139, 88, 0.1);
    border-bottom: 1px solid rgba(168, 139, 88, 0.1);
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 3rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0.3;
    scale: 0.95;
    transition: opacity var(--transition-medium), scale var(--transition-medium);
}

.testimonial-slide.active {
    opacity: 1;
    scale: 1;
}

.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-quote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 40px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-indigo);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    z-index: 10;
}

.slider-btn:hover {
    border-color: var(--accent-indigo);
    color: var(--accent-indigo);
    background: rgba(30, 58, 138, 0.05);
}

.slider-btn-prev { left: -10px; }
.slider-btn-next { right: -10px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background: var(--accent-indigo);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   CALL TO ACTION (CTA) (CONTRAST DARK BLUE BOX FOR PREMIUM GRAPHIC DESIGN)
   ========================================================================== */
.cta {
    position: relative;
    padding: clamp(5rem, 10vw, 10rem) 0;
    overflow: hidden;
}

.cta-glass-card {
    background: radial-gradient(circle at top left, rgba(168, 139, 88, 0.15) 0%, transparent 60%), #0b132b; /* Deep Navy */
    border: 1px solid var(--accent-gold);
    border-radius: 24px;
    padding: clamp(3rem, 6vw, 6rem) 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(11, 19, 43, 0.25);
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-desc {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

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

/* Special white buttons for dark CTA box */
.cta-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #0b132b;
    font-weight: 700;
}
.cta-actions .btn-primary:hover {
    background: linear-gradient(135deg, #dfcbb5 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 139, 88, 0.5);
}

.cta-actions .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
}
.cta-actions .btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.05);
}

/* ==========================================================================
   FOOTER (ELITE DARK NAVY BAR BLOCK)
   ========================================================================== */
.footer {
    background: #080c16;
    border-top: 1px solid var(--accent-gold);
    padding: 5rem 0 2rem;
}

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

.footer-info-logo {
    margin-bottom: 1.5rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #94a3b8;
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(168, 139, 88, 0.08);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.05rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

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

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

.footer-contact-item span:first-child {
    color: var(--accent-gold);
}

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

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

.footer-bottom-links a {
    color: #64748b;
}
.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   ABOUT PAGE EXTRAS
   ========================================================================== */
.inner-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.inner-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--accent-indigo);
}

.inner-hero-breadcrumbs {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.inner-hero-breadcrumbs a:hover {
    color: var(--accent-gold-dark);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-right: 0;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    top: 5px;
    right: -6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 10px rgba(168, 139, 88, 0.4);
}

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

.timeline-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.timeline-date {
    font-family: var(--font-heading);
    color: var(--accent-indigo);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-indigo);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.team-img-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #0b132b; /* Match logo theme for school crest placeholder frame */
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 5rem;
    font-family: var(--font-heading);
    opacity: 0.35;
}

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

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--accent-indigo);
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   ACADEMICS PAGE EXTRAS
   ========================================================================== */
.academics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.academic-detail-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.academic-detail-card h3 {
    color: var(--accent-indigo);
    margin-bottom: 1.5rem;
}

.academic-detail-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.handbook-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.sidebar-widget {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.sidebar-widget h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-indigo);
}

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

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(15,23,42,0.05);
}

.download-item:last-child {
    border-bottom: none;
}

.download-info span {
    display: block;
}

.download-name {
    font-weight: 700;
    color: var(--text-primary);
}

.download-size {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.download-btn {
    color: var(--accent-gold-dark);
    font-size: 1.2rem;
}

.download-btn:hover {
    color: var(--accent-indigo);
}

/* ==========================================================================
   ADMISSIONS PAGE EXTRAS
   ========================================================================== */
.admission-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.step-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.step-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.25;
    font-weight: 700;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-indigo);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Table Style */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--bg-glass);
}

.premium-table th, .premium-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(15,23,42,0.05);
}

.premium-table th {
    background: rgba(168, 139, 88, 0.04);
    font-family: var(--font-heading);
    color: var(--accent-indigo);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

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

.premium-table tbody tr:hover {
    background: rgba(15, 23, 42, 0.01);
}

/* Premium Form Styles */
.premium-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

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

.form-full-width {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.form-control {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.15);
    padding: 0.9rem 1.2rem;
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-indigo);
    box-shadow: 0 0 10px rgba(30, 58, 138, 0.1);
    background: #ffffff;
}

.form-control:user-invalid:not(:placeholder-shown) {
    border-color: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.1);
}

.form-error {
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 0.25rem;
    display: none;
    font-weight: 500;
}

/* ==========================================================================
   CONTACT PAGE EXTRAS
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-indigo);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-indigo);
}

.contact-details p {
    color: var(--text-secondary);
}

.map-container {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #0b132b; /* Keep map dark navy for high visual aesthetic impact */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.map-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite alternate;
}

/* ==========================================================================
   ENTRY REVEAL & SCROLL KEYFRAMES
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.reveal-fade.active {
    opacity: 1;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse {
    from { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    to { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE LAYOUTS (BREAKPOINTS)
   ========================================================================== */
/* Nav hamburger fires at 1400px — 8 items incl "Mandatory Disclosure" can't fit below this */
@media (max-width: 1400px) {
    .header {
        height: var(--header-height-shrink);
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height-shrink);
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - var(--header-height-shrink));
        background: rgba(11, 19, 43, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        border-left: 1px solid rgba(168, 139, 88, 0.25);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        transition: right var(--transition-medium);
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }
}

/* Large desktop: full nav visible — tighten to fit all 8 items */
@media (min-width: 1401px) {
    .nav-menu {
        gap: clamp(0.5rem, 0.7vw, 1rem);
    }

    .nav-link {
        font-size: 0.78rem;
        letter-spacing: 0.04em;
    }

    .brand-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1), .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }

    .about-brief-grid, .academics-panel, .team-grid, .facilities-grid, .academics-grid, .admission-steps, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .brand-name {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.85rem;
        letter-spacing: 0.08em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

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

    .about-brief-img-wrapper::before {
        display: none;
    }

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

    .form-full-width {
        grid-column: span 1;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 3.5rem;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 3.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .logo-img {
        height: 36px;
    }

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

    .hero-badge {
        font-size: 0.62rem;
        letter-spacing: 0.05em;
        padding: 0.35rem 0.65rem;
        text-align: center;
    }

    .stats-bar {
        margin-top: 2rem;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .panel-meta {
        grid-template-columns: 1fr;
    }

    .testimonial-slider-container {
        padding: 0 2.25rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

    .academics-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   GRID MODIFIER CLASSES
   ========================================================================== */
.facilities-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.academics-grid--equal {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
    .facilities-grid--2col,
    .academics-grid--equal {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   GALLERY PAGE SPECIFIC STYLES
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 3/2;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    transition: all var(--transition-medium);
}

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

.gallery-item img.portrait-img {
    object-position: top;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-indigo);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.08);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, transparent 100%);
    padding: 1.5rem 1.25rem 1rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.gallery-caption {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* Lightbox Dialog Styling */
#lightbox-dialog {
    padding: 0.75rem;
    border-radius: 16px;
    border: 1px solid var(--accent-gold);
    background: var(--bg-secondary);
    max-width: 900px;
    width: 90%;
    margin: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

#lightbox-dialog img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

#lightbox-dialog .close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(11, 19, 43, 0.85);
    border: 1px solid var(--accent-gold);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    z-index: 10;
}

#lightbox-dialog .close-btn:hover {
    background: var(--accent-gold);
    color: #0b132b;
}

#lightbox-dialog::backdrop {
    background: rgba(8, 14, 32, 0.85);
    backdrop-filter: blur(8px);
}

/* ==========================================================================
   MANDATORY DISCLOSURE PAGE STYLES
   ========================================================================== */
.disclosure-section {
    padding: clamp(2rem, 4vw, 4rem) 0;
}

.disclosure-category-wrapper {
    margin-bottom: 4.5rem;
}

.disclosure-category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-indigo);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.disclosure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.disclosure-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.disclosure-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-indigo);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 20px rgba(30, 58, 138, 0.05);
}

.disclosure-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-indigo));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.disclosure-card:hover::after {
    opacity: 1;
}

.disclosure-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    width: 100%;
}

.disclosure-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--accent-indigo-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-indigo);
    border: 1px solid rgba(30, 58, 138, 0.15);
    transition: all var(--transition-medium);
}

.disclosure-card:hover .disclosure-icon-wrapper {
    background: var(--accent-indigo);
    color: #ffffff;
    border-color: var(--accent-indigo);
    transform: scale(1.05);
}

.disclosure-info {
    flex-grow: 1;
}

.disclosure-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.disclosure-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.disclosure-status.available {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.disclosure-status.placeholder {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.disclosure-action {
    width: 100%;
    margin-top: auto;
}

.disclosure-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.disclosure-card:hover .disclosure-link-btn {
    background: linear-gradient(135deg, var(--accent-indigo) 0%, #0f172a 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.disclosure-link-btn span.icon {
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.disclosure-card:hover .disclosure-link-btn span.icon {
    transform: translateX(3px);
}

