/* public/css/frontend.css */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --we-primary: #1e3a5f;
    --we-primary-dark: #152d4a;
    --we-primary-light: #2c5282;
    --we-secondary: #c9a84c;
    --we-secondary-dark: #b8922e;
    --we-secondary-light: #dfc06e;
    --we-accent: #2563eb;
    --we-accent-dark: #1d4ed8;
    --we-success: #10b981;
    --we-warning: #f59e0b;
    --we-danger: #ef4444;
    --we-dark: #0f1923;
    --we-darker: #080e14;
    --we-light: #f8fafc;
    --we-gray: #64748b;
    --we-gray-light: #f1f5f9;
    --we-border: rgba(0,0,0,0.08);
    --we-border-light: rgba(255,255,255,0.1);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-ui: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-py: 100px;
    --section-py-sm: 60px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 48px rgba(0,0,0,0.15);
    --shadow-xl: 0 32px 64px rgba(0,0,0,0.20);
    --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
    --shadow-primary: 0 8px 32px rgba(30,58,95,0.25);
    --shadow-blue: 0 8px 32px rgba(37,99,235,0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Glass Effect */
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(255,255,255,0.3);
    --glass-blur: blur(20px);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--we-primary) 0%, var(--we-primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--we-secondary) 0%, var(--we-secondary-dark) 100%);
    --gradient-hero: linear-gradient(160deg, rgba(15,25,35,0.95) 0%, rgba(30,58,95,0.75) 50%, rgba(201,168,76,0.15) 100%);
    --gradient-card: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
    --gradient-text: linear-gradient(135deg, var(--we-primary) 0%, var(--we-accent) 100%);
}

[data-theme="dark"] {
    --we-light: #0f1923;
    --we-gray-light: #1a2535;
    --we-border: rgba(255,255,255,0.08);
    --glass-bg: rgba(15,25,35,0.85);
    --glass-border: rgba(255,255,255,0.1);
    --we-dark: #f8fafc;
    color-scheme: dark;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--we-primary);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

[data-theme="dark"] body {
    background: var(--we-dark);
    color: #e2e8f0;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }

::selection { background: var(--we-secondary); color: #fff; }

/* ============================================
   LOADING SCREEN
   ============================================ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--we-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Super aggressive loader hiding */
@keyframes forceHideLoader {
    0% { display: flex; opacity: 1; visibility: visible; }
    90% { display: flex; opacity: 1; visibility: visible; }
    100% { display: none !important; opacity: 0 !important; visibility: hidden !important; }
}
html body.woodrow-body div#page-loader {
    animation: forceHideLoader 2s ease-in-out forwards !important;
}

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

.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid var(--we-secondary);
    animation: loaderPulse 1.5s ease infinite;
}

.loader-we {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--we-secondary);
    letter-spacing: 2px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 16px;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    animation: loaderBar 2s ease-out forwards;
}

.loader-text {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(201,168,76,0); }
}

@keyframes loaderBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

.display-1 { font-size: clamp(3rem, 6vw, 5.5rem); }
.display-2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.heading-xl { font-size: clamp(2rem, 4vw, 3.5rem); }
.heading-lg { font-size: clamp(1.75rem, 3vw, 2.75rem); }
.heading-md { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.heading-sm { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.text-gold { color: var(--we-secondary) !important; }
.text-primary-we { color: var(--we-primary) !important; }
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-display { font-family: var(--font-display); }
.font-ui { font-family: var(--font-ui); }

/* Section Headings */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--we-secondary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-ui);
    margin-bottom: 16px;
}

.section-badge i { font-size: 14px; }

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-family: var(--font-display);
    color: var(--we-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

[data-theme="dark"] .section-title { color: #f8fafc; }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--we-gray);
    max-width: 580px;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    margin: 16px 0;
}

.section-divider.centered { margin: 16px auto; }

[data-theme="dark"] #main-navbar.scrolled {
    background: rgba(15,25,35,0.95);
}

.navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    transition: var(--transition-base);
}

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

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-size: 10px;
    color: var(--we-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-ui);
    font-weight: 500;
}

#main-navbar.scrolled .brand-name { color: var(--we-primary); }
#main-navbar.scrolled .brand-tagline { color: var(--we-secondary); }
[data-theme="dark"] #main-navbar.scrolled .brand-name { color: #f8fafc; }

.nav-link-we {
    color: rgba(255,255,255,0.85) !important;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-ui);
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-link-we::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--we-secondary);
    transition: width var(--transition-fast);
    border-radius: var(--radius-full);
}

.nav-link-we:hover::after,
.nav-link-we.active::after { width: 20px; }

.nav-link-we:hover,
.nav-link-we.active {
    color: var(--we-secondary) !important;
}

#main-navbar.scrolled .nav-link-we {
    color: var(--we-primary) !important;
}

[data-theme="dark"] #main-navbar.scrolled .nav-link-we {
    color: rgba(255,255,255,0.8) !important;
}

.nav-dropdown .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 12px;
    background: white;
    min-width: 220px;
    animation: dropdownFade 0.25s ease;
}

[data-theme="dark"] .nav-dropdown .dropdown-menu {
    background: #1a2535;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.nav-dropdown .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 13.5px;
    font-family: var(--font-ui);
    color: var(--we-primary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

[data-theme="dark"] .nav-dropdown .dropdown-item { color: #e2e8f0; }

.nav-dropdown .dropdown-item i {
    width: 18px;
    color: var(--we-secondary);
    font-size: 14px;
}

.nav-dropdown .dropdown-item:hover {
    background: rgba(201,168,76,0.08);
    color: var(--we-secondary);
}

.nav-cta {
    background: var(--gradient-gold) !important;
    color: white !important;
    border-radius: var(--radius-full) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-gold);
    font-family: var(--font-ui) !important;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.4);
    color: white !important;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 15px;
}

.theme-toggle:hover { background: rgba(255,255,255,0.2); }

#main-navbar.scrolled .theme-toggle {
    border-color: var(--we-border);
    background: var(--we-gray-light);
    color: var(--we-primary);
}

[data-theme="dark"] #main-navbar.scrolled .theme-toggle {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.08);
    color: white;
}

.hamburger {
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px;
}

.hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: white;
    transition: var(--transition-base);
}

.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

#main-navbar.scrolled .hamburger span { background: var(--we-primary); }
[data-theme="dark"] #main-navbar.scrolled .hamburger span { background: white; }

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(201,168,76,0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--we-secondary);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-badge span {
    color: var(--we-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: var(--font-display);
    color: white;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--we-secondary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    animation: highlightExpand 1s ease 1s both;
    transform-origin: left;
}

@keyframes highlightExpand {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: var(--gradient-gold);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-ui);
    box-shadow: var(--shadow-gold);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.btn-hero-primary:hover::before { transform: translateX(0); }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(201,168,76,0.5); color: white; }

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-ui);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.4);
}

.btn-hero-ghost {
    color: var(--we-secondary);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-ui);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: none;
    transition: var(--transition-fast);
    padding: 16px 0;
}

.btn-hero-ghost:hover { color: var(--we-secondary-light); gap: 14px; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    height: 40px;
    align-self: center;
}

.hero-image-wrap {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
}

.hero-floating-card-1 {
    bottom: -20px;
    left: -20px;
    animation: floatUp 3s ease infinite;
}

.hero-floating-card-2 {
    top: 30px;
    right: -30px;
    animation: floatDown 3s ease infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--we-secondary);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.scroll-text {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-ui);
}


/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-card:last-child::after { display: none; }

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--we-secondary);
    transition: var(--transition-base);
}

.stat-card:hover .stat-icon-wrap { background: rgba(201,168,76,0.2); transform: scale(1.1); }

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-py) 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .about-section { background: var(--we-dark); }

.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition-base);
}

.about-img-main:hover .about-img-overlay { opacity: 1; }

.about-exp-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 130px;
    height: 130px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    border: 4px solid white;
}

.about-exp-badge .exp-years {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.about-exp-badge .exp-text {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-ui);
    text-align: center;
    line-height: 1.3;
}

.about-small-img {
    position: absolute;
    top: 40px;
    left: -40px;
    width: 160px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

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

.about-content { padding-left: 40px; }

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.value-card {
    background: var(--we-gray-light);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

[data-theme="dark"] .value-card { background: rgba(255,255,255,0.05); }

.value-card:hover {
    background: white;
    border-color: rgba(201,168,76,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

[data-theme="dark"] .value-card:hover { background: rgba(255,255,255,0.1); }

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--we-secondary);
    margin-bottom: 12px;
}

.value-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--we-primary);
    margin-bottom: 4px;
    font-family: var(--font-ui);
}

[data-theme="dark"] .value-title { color: #f8fafc; }

.value-desc {
    font-size: 12.5px;
    color: var(--we-gray);
    line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    padding: var(--section-py) 0;
    background: var(--we-gray-light);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .why-section { background: #0d1824; }

.why-section::before {
    content: 'WHY';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 200px;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    letter-spacing: -10px;
    pointer-events: none;
    user-select: none;
}

.why-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition-slow);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

[data-theme="dark"] .why-card { background: #1a2535; }

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201,168,76,0.2);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--we-secondary);
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.why-card:hover .why-card-icon {
    background: var(--gradient-gold);
    color: white;
    transform: scale(1.1);
}

.why-card-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    line-height: 1;
}

[data-theme="dark"] .why-card-number { color: rgba(255,255,255,0.05); }

.why-card-title {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--we-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

[data-theme="dark"] .why-card-title { color: #f8fafc; }

.why-card-desc {
    color: var(--we-gray);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-card-link {
    color: var(--we-secondary);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-ui);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.why-card:hover .why-card-link { gap: 12px; }

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
    padding: var(--section-py) 0;
    background: white;
}

[data-theme="dark"] .programs-section { background: var(--we-dark); }

.programs-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--we-border);
    background: transparent;
    color: var(--we-gray);
    font-size: 13.5px;
    font-weight: 500;
    font-family: var(--font-ui);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--we-primary);
    color: white;
    border-color: var(--we-primary);
}

.program-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    transition: all var(--transition-slow);
    border: 1px solid var(--we-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .program-card { background: #1a2535; border-color: rgba(255,255,255,0.08); }

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.program-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.program-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
}

.program-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--we-secondary);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

.program-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card-title {
    font-size: 1.15rem;
    font-family: var(--font-display);
    color: var(--we-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

[data-theme="dark"] .program-card-title { color: #f8fafc; }

.program-card-desc {
    color: var(--we-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.program-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.program-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--we-gray);
    font-family: var(--font-ui);
}

.program-meta-item i { color: var(--we-secondary); }

.program-card-footer {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--we-border);
}

[data-theme="dark"] .program-card-footer { border-color: rgba(255,255,255,0.08); }

/* ============================================
   FACULTY SECTION
   ============================================ */
.faculty-section {
    padding: var(--section-py) 0;
    background: var(--we-gray-light);
}

[data-theme="dark"] .faculty-section { background: #0d1824; }

.faculty-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
    position: relative;
    group: true;
}

[data-theme="dark"] .faculty-card { background: #1a2535; }

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.faculty-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.faculty-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

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

.faculty-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.faculty-card:hover .faculty-card-overlay { opacity: 0.9; }

.faculty-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition-fast);
    transform: translateY(20px);
    opacity: 0;
}

.faculty-card:hover .faculty-social-link {
    transform: translateY(0);
    opacity: 1;
}

.faculty-card:hover .faculty-social-link:nth-child(2) {
    transition-delay: 0.05s;
}

.faculty-card:hover .faculty-social-link:nth-child(3) {
    transition-delay: 0.1s;
}

.faculty-social-link:hover { background: var(--we-secondary); border-color: var(--we-secondary); }

.faculty-card-dept {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--we-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

.faculty-card-body {
    padding: 24px;
    text-align: center;
}

.faculty-card-name {
    font-size: 1.1rem;
    font-family: var(--font-display);
    color: var(--we-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

[data-theme="dark"] .faculty-card-name { color: #f8fafc; }

.faculty-card-position {
    font-size: 13px;
    color: var(--we-secondary);
    font-family: var(--font-ui);
    font-weight: 600;
    margin-bottom: 8px;
}

.faculty-card-exp {
    font-size: 12px;
    color: var(--we-gray);
    font-family: var(--font-ui);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--section-py) 0;
    background: white;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .testimonials-section { background: var(--we-dark); }

.testimonial-card {
    background: var(--we-gray-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all var(--transition-slow);
    border: 1px solid transparent;
    height: 100%;
}

[data-theme="dark"] .testimonial-card { background: #1a2535; }

.testimonial-card:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-6px);
}

[data-theme="dark"] .testimonial-card:hover { background: #223044; }

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--we-secondary);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 16px;
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--we-gray);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i { color: var(--we-secondary); font-size: 14px; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--we-secondary);
    flex-shrink: 0;
}

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

.testimonial-author-name {
    font-weight: 700;
    color: var(--we-primary);
    font-family: var(--font-display);
    font-size: 15px;
}

[data-theme="dark"] .testimonial-author-name { color: #f8fafc; }

.testimonial-author-role {
    font-size: 12.5px;
    color: var(--we-gray);
    font-family: var(--font-ui);
}

.testimonial-university {
    font-size: 12px;
    color: var(--we-secondary);
    font-weight: 600;
    font-family: var(--font-ui);
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    padding: var(--section-py) 0;
    background: var(--we-gray-light);
}

[data-theme="dark"] .events-section { background: #0d1824; }

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: all var(--transition-slow);
    border: 1px solid var(--we-border);
    margin-bottom: 16px;
}

[data-theme="dark"] .event-card { background: #1a2535; border-color: rgba(255,255,255,0.08); }

.event-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    transform: translateX(4px);
}

.event-card-date {
    min-width: 90px;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
    gap: 2px;
}

.event-date-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.event-date-month {
    font-size: 12px;
    color: var(--we-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-ui);
    font-weight: 600;
}

.event-date-year {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-ui);
}

.event-card-img {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.event-card-body {
    padding: 24px;
    flex: 1;
}

.event-card-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--we-secondary);
    font-family: var(--font-ui);
    margin-bottom: 8px;
}

.event-card-title {
    font-size: 1.15rem;
    font-family: var(--font-display);
    color: var(--we-primary);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

[data-theme="dark"] .event-card-title { color: #f8fafc; }

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--we-gray);
    font-family: var(--font-ui);
}

.event-meta-item i { color: var(--we-secondary); }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: var(--section-py) 0;
    background: white;
}

[data-theme="dark"] .blog-section { background: var(--we-dark); }

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid var(--we-border);
    transition: all var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .blog-card { background: #1a2535; border-color: rgba(255,255,255,0.08); }

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--we-primary);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-ui);
    letter-spacing: 1px;
}

.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--we-gray);
    font-family: var(--font-ui);
}

.blog-meta-item i { color: var(--we-secondary); }

.blog-card-title {
    font-size: 1.1rem;
    font-family: var(--font-display);
    color: var(--we-primary);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color var(--transition-fast);
    flex: 1;
}

[data-theme="dark"] .blog-card-title { color: #f8fafc; }

.blog-card:hover .blog-card-title { color: var(--we-secondary); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--we-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--we-border);
}

[data-theme="dark"] .blog-card-footer { border-color: rgba(255,255,255,0.08); }

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.blog-author-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--we-primary);
    font-family: var(--font-ui);
}

[data-theme="dark"] .blog-author-name { color: #e2e8f0; }

.blog-read-more {
    color: var(--we-secondary);
    font-size: 12.5px;
    font-weight: 600;
    font-family: var(--font-ui);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.blog-card:hover .blog-read-more { gap: 10px; }

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--section-py) 0;
    background: var(--we-gray-light);
}

[data-theme="dark"] .gallery-section { background: #0d1824; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--we-gray-light);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,0.7);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.gallery-overlay-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transform: scale(0.7);
    transition: transform var(--transition-base);
}

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

/* ============================================
   ADMISSION PROCESS
   ============================================ */
.admission-section {
    padding: var(--section-py) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.admission-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.admission-step {
    text-align: center;
    position: relative;
    padding: 32px 20px;
}

.admission-step::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -30%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201,168,76,0.5) 0%, rgba(201,168,76,0.1) 100%);
    border-top: 2px dashed rgba(201,168,76,0.4);
}

.admission-step:last-child::after { display: none; }

.admission-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--we-secondary);
    position: relative;
    transition: var(--transition-base);
}

.admission-step:hover .admission-step-number {
    background: var(--we-secondary);
    color: white;
    border-color: var(--we-secondary);
    transform: scale(1.1);
}

.admission-step-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--we-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.admission-step-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.admission-step-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-ui);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cta-section { background: var(--we-dark); }

.cta-inner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201,168,76,0.08);
    top: -100px;
    right: -100px;
}

.cta-inner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    bottom: -100px;
    left: -100px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-we-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-ui);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-we-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: white;
}

.btn-we-gold {
    background: var(--gradient-gold);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-ui);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-we-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: white;
}

.btn-we-outline {
    background: transparent;
    color: var(--we-primary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-ui);
    border: 1.5px solid var(--we-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.btn-we-outline-white {
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-ui);
    border: 1.5px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-we-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    color: white;
    transform: translateY(-2px);
}

.btn-sm-we {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg-we {
    padding: 16px 40px;
    font-size: 16px;
}

/* ============================================
   FORMS
   ============================================ */
.we-form-group {
    margin-bottom: 20px;
}

.we-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--we-primary);
    margin-bottom: 8px;
    font-family: var(--font-ui);
}

[data-theme="dark"] .we-label { color: #e2e8f0; }

.we-input {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--we-border);
    border-radius: var(--radius-md);
    font-size: 14.5px;
    color: var(--we-primary);
    background: white;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    outline: none;
}

[data-theme="dark"] .we-input {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: #e2e8f0;
}

.we-input:focus {
    border-color: var(--we-secondary);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.we-input::placeholder { color: #94a3b8; }
.we-input.is-invalid { border-color: var(--we-danger); }
.we-input.is-valid { border-color: var(--we-success); }

.we-select { appearance: none; cursor: pointer; }
.we-textarea { resize: vertical; min-height: 120px; }

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--we-gray);
    font-size: 16px;
}

.input-icon-wrap .we-input { padding-left: 44px; }

.we-form-error {
    font-size: 12px;
    color: var(--we-danger);
    margin-top: 5px;
    font-family: var(--font-ui);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.page-hero {
    background: var(--gradient-primary);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item-we {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-ui);
}

.breadcrumb-item-we a { color: var(--we-secondary); }
.breadcrumb-item-we.active { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
    background: var(--we-dark);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-brand-wrap { margin-bottom: 24px; }

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.footer-logo-sub {
    font-size: 11px;
    color: var(--we-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background: var(--we-secondary);
    border-color: var(--we-secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--we-secondary);
    border-radius: var(--radius-full);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    font-family: var(--font-ui);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-link i { color: var(--we-secondary); font-size: 12px; }

.footer-link:hover { color: var(--we-secondary); padding-left: 4px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    font-family: var(--font-ui);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--we-secondary);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-newsletter { margin-top: 8px; }

.footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06);
    color: white;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition-fast);
}

.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-input:focus { border-color: var(--we-secondary); }

.footer-newsletter-btn {
    padding: 12px 20px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.footer-newsletter-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    margin-top: 60px;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-ui);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-ui);
    transition: color var(--transition-fast);
}

.footer-bottom-link:hover { color: var(--we-secondary); }

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-trigger {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(30,58,95,0.4);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chatbot-trigger .chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--we-secondary);
    border-radius: 50%;
    border: 2px solid white;
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.chatbot-window {
    position: fixed;
    bottom: 104px;
    right: 32px;
    width: 360px;
    height: 520px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(40px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-slow);
    transform-origin: bottom right;
}

[data-theme="dark"] .chatbot-window { background: #1a2535; }

.chatbot-window.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chatbot-header {
    background: var(--gradient-primary);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--we-secondary);
    flex-shrink: 0;
}

.chatbot-header-info { flex: 1; }

.chatbot-name {
    color: white;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-display);
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-ui);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--we-success);
    border-radius: 50%;
    animation: dotPulse 2s ease infinite;
}

.chatbot-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.chatbot-close:hover { background: rgba(255,255,255,0.2); }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }

.chat-msg {
    max-width: 85%;
    display: flex;
    gap: 8px;
}

.chat-msg-bot { align-self: flex-start; }
.chat-msg-user { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
    align-self: flex-end;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 13.5px;
    line-height: 1.6;
    font-family: var(--font-ui);
}

.chat-msg-bot .chat-bubble {
    background: var(--we-gray-light);
    color: var(--we-primary);
    border-bottom-left-radius: 4px;
}

[data-theme="dark"] .chat-msg-bot .chat-bubble {
    background: rgba(255,255,255,0.08);
    color: #e2e8f0;
}

.chat-msg-user .chat-bubble {
    background: var(--gradient-primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.chat-quick-btn {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--we-secondary);
    background: transparent;
    color: var(--we-secondary);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-ui);
}

.chat-quick-btn:hover { background: var(--we-secondary); color: white; }

.chatbot-input {
    padding: 16px;
    border-top: 1px solid var(--we-border);
    display: flex;
    gap: 8px;
    align-items: center;
}

[data-theme="dark"] .chatbot-input { border-color: rgba(255,255,255,0.08); }

.chatbot-input-field {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--we-border);
    border-radius: var(--radius-full);
    font-size: 13.5px;
    outline: none;
    background: var(--we-gray-light);
    color: var(--we-primary);
    font-family: var(--font-ui);
    transition: var(--transition-fast);
}

[data-theme="dark"] .chatbot-input-field {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: #e2e8f0;
}

.chatbot-input-field:focus { border-color: var(--we-secondary); }

.chatbot-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 104px;
    z-index: 997;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--we-border);
    color: var(--we-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition-base);
    pointer-events: none;
}

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

.back-to-top:hover { background: var(--we-secondary); color: white; border-color: var(--we-secondary); transform: translateY(-3px); }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--we-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.show { transform: translateY(0); }

/* ============================================
   PAGINATION
   ============================================ */
.we-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.we-pagination .page-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--we-border);
    color: var(--we-primary);
    font-family: var(--font-ui);
    font-size: 14px;
    transition: var(--transition-fast);
}

.we-pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.we-pagination .page-link:hover {
    background: var(--we-primary);
    color: white;
    border-color: var(--we-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.animate-fade-in { animation: fadeIn 0.6s ease both; }
.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-scale-in { animation: scaleIn 0.5s ease both; }

/* ============================================
   UTILITIES
   ============================================ */
.sticky-top-offset { top: 80px; }
.z-top { z-index: 100; }

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.divider-line {
    height: 1px;
    background: var(--we-border);
    margin: 40px 0;
}

.badge-we {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 600;
    font-family: var(--font-ui);
}

.badge-we-gold { background: rgba(201,168,76,0.1); color: var(--we-secondary); }
.badge-we-primary { background: rgba(30,58,95,0.1); color: var(--we-primary); }
.badge-we-success { background: rgba(16,185,129,0.1); color: var(--we-success); }
.badge-we-danger { background: rgba(239,68,68,0.1); color: var(--we-danger); }

.hover-lift { transition: transform var(--transition-base); }
.hover-lift:hover { transform: translateY(-6px); }

.text-balance { text-wrap: balance; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .about-content { padding-left: 24px; }
}

@media (max-width: 992px) {
    :root { --section-py: 70px; }
    .about-content { padding-left: 0; margin-top: 60px; }
    .about-small-img { left: -16px; top: 24px; width: 120px; height: 110px; }
    .about-exp-badge { width: 100px; height: 100px; right: -12px; bottom: -12px; }
    .about-exp-badge .exp-years { font-size: 2rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .cta-inner { padding: 60px 40px; }
    .hero-title { font-size: clamp(2rem, 5vw, 3.5rem); }
}

@media (max-width: 768px) {
    :root { --section-py: 60px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-stats { gap: 20px; }
    .hero-stat-divider { display: none; }
    .stat-card::after { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 2; }
    .event-card { flex-direction: column; }
    .event-card-img { width: 100%; height: 180px; }
    .chatbot-window { width: 100vw; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; height: 70vh; bottom: 80px; }
    .values-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 50px 24px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .admission-step::after { display: none; }
    .hero-floating-card { display: none; }
}

@media (max-width: 576px) {
    .programs-filter { justify-content: center; }
    .section-title { text-align: center; }
    .section-badge { display: flex; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================
   TOP STACK (Announcement + Navbar)
   ============================================ */
.top-stack {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ============================================
   ANNOUNCEMENT BAR (FIXED)
   ============================================ */
.announcement-bar {
    position: relative;
    background: linear-gradient(135deg, var(--we-primary-dark) 0%, var(--we-primary) 100%);
    padding: 8px 0;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.4s ease;
}

.announcement-bar.hidden {
    height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
}

.announcement-bar-track {
    display: flex;
    animation: announceTicker 40s linear infinite;
    white-space: nowrap;
    gap: 50px;
    padding-right: 50px;
    will-change: transform;
}

.announcement-bar:hover .announcement-bar-track {
    animation-play-state: paused;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12.5px;
    font-family: var(--font-ui);
    font-weight: 500;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

.announcement-item i {
    color: var(--we-secondary);
    font-size: 10px;
    animation: starTwinkle 2s ease infinite;
}

.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    transition: var(--transition-fast);
    z-index: 5;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-50%) rotate(90deg);
}

@keyframes announceTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* ============================================
   NAVBAR (UPDATED - now relative to top-stack)
   ============================================ */
#main-navbar {
    position: relative;          /* Changed from fixed */
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

#main-navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] #main-navbar.scrolled {
    background: rgba(15, 25, 35, 0.95);
}

/* When announcement bar is hidden, ensure navbar stays */
.top-stack.no-announcement #main-navbar {
    padding-top: 16px;
}

/* ============================================
   HERO SECTION - Adjust top padding
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 36px; /* Account for announcement bar */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;  /* Reduced from 120px since announcement bar is now in stack */
    padding-bottom: 80px;
}

/* ============================================
   PAGE HERO - Adjust top padding for inner pages
   ============================================ */
.page-hero {
    background: var(--gradient-primary);
    padding: 130px 0 60px;  /* Reduced from 140px */
    position: relative;
    overflow: hidden;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .announcement-bar {
        height: 32px;
        padding: 6px 0;
    }

    .announcement-bar-track {
        animation-duration: 30s;
        gap: 30px;
    }

    .announcement-item {
        font-size: 11.5px;
    }

    .announcement-close {
        right: 8px;
        width: 20px;
        height: 20px;
        font-size: 9px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .page-hero {
        padding: 120px 0 50px;
    }
}

@media (max-width: 576px) {
    .announcement-item {
        font-size: 11px;
        gap: 6px;
    }
}

/* ============================================
   BODY OFFSET FOR FIXED HEADER
   ============================================ */
body.woodrow-body {
    /* No padding needed - top-stack is fixed and content flows under it */
}

/* For pages WITHOUT hero section, add top padding */
.has-fixed-header {
    padding-top: 116px; /* 36px announcement + 80px navbar */
}

.top-stack.no-announcement ~ #main-content .has-fixed-header {
    padding-top: 80px;
}

/* Anchor scroll padding */
html {
    scroll-padding-top: 120px;
}
