/**
 * Apply4U Design System Architecture Core
 * Location: public/css/theme.css
 */

/* 1. Design Token Layer Matrix */
:root {
    --primary: #04488F;
    --primary-rgb: 4, 72, 143;
    --secondary: #FC5C0E;
    --accent: #2563EB;
    --accent-rgb: 37, 99, 235;
    --success: #22C55E;
    --background: #ffffff;
    --dark: #0F172A;
    --slate-600: #475569;
    --slate-100: #F1F5F9;
    --border-color: #E2E8F0;
    --font-stack: 'Plus Jakarta Sans', sans-serif;
}

/* 2. Global Canvas System Settings */
body {
    font-family: var(--font-stack);
    background-color: var(--background);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none !important;
}
/* 3. High-Fidelity Typography Scale Framework */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--dark);
}

img.header-logo {
    width: 200px;
}

.display-large {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
}

/* 4. Premium Responsive Spacing Mechanics */
.section-gap {
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.card-padding {
    padding: 1.75rem;
}

/* 5. Custom Button Systems (Stripe & Apple Inspired) */
.btn-premium-primary {
    background: linear-gradient(180deg, #0a5ebd 0%, var(--primary) 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(4, 72, 143, 0.4);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(4, 72, 143, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-primary:hover {
    background: linear-gradient(180deg, #3b82f6 0%, var(--accent) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 12px 24px rgba(37, 99, 235, 0.25);
}

.btn-premium-secondary {
    background: #ffffff;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium-secondary:hover {
    background: var(--slate-100);
    border-color: #CBD5E1;
    color: var(--dark);
    transform: translateY(-1px);
}

/* 6. Premium Glassmorphic Layer Engine */
.premium-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* 7. Institutional Content Card Redesign */
.premium-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03), 0 8px 24px rgba(15, 23, 42, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.premium-card:hover .card-img-target {
    transform: scale(1.06);
}

.premium-card:hover .card-title-transition {
    color: var(--accent) !important;
}

.card-img-target {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-title-transition {
    transition: color 0.3s ease;
}

/* 8. Taxonomy Stream Navigation Cards */
.stream-pill-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.stream-pill-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(4, 72, 143, 0.2);
    box-shadow: 0 12px 32px rgba(4, 72, 143, 0.05);
}

.stream-icon-wrapper {
    width: 52px;
    height: 52px;
    background: rgba(4, 72, 143, 0.06);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.stream-pill-card:hover .stream-icon-wrapper {
    background: var(--primary);
    color: #ffffff;
}

/* 9. Core Interface Utilities */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.shimmer-bg {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.6s infinite linear;
}

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

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/**
 * Apply4U Design Architecture Extensions: Regional Sections 3.5 A & 3.5 B
 * Location: public/css/theme.css (Append to bottom)
 */

/* ==========================================================================
   1. Section Structural Overrides & Controls
   ========================================================================== */
   .section-gap.bg-light {
    background-color: #F8FAFC !important; /* Premium off-white clean tone canvas */
}

.border-light-subtle {
    border-color: #F1F5F9 !important;
}

/* Flexbox tag cloud spacing normalization for Section 3.5 B */
.d-flex.flex-wrap.gap-2\.5 {
    gap: 0.75rem !important;
}

/* ==========================================================================
   2. Section 3.5 A: Browse by North Indian States UI Elements
   ========================================================================== */
/* Interactive state selection wrapper grid link overrides */
section a.premium-card.p-3.d-block.text-decoration-none.h-100.bg-white {
    background-color: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
    padding: 1.25rem !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02), 0 4px 12px rgba(15, 23, 42, 0.01) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* State card premium hover transform curves */
section a.premium-card.p-3.d-block.text-decoration-none.h-100.bg-white:hover {
    background-color: #FFFFFF !important;
    border-color: rgba(4, 72, 143, 0.25) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 32px rgba(4, 72, 143, 0.05), 0 2px 4px rgba(4, 72, 143, 0.02) !important;
}

/* Inner Text Elements & State Labels */
section a.premium-card h6 {
    color: #0F172A !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.25rem !important;
    transition: color 0.2s ease;
}

section a.premium-card:hover h6 {
    color: #04488F !important; /* Deep Trust Blue Title Highlight */
}

section a.premium-card span.text-muted {
    color: #64748B !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
}

/* Micro-vector arrow icon transition engine */
section a.premium-card i.bi-arrow-right-short {
    color: #94A3B8 !important;
    font-size: 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

section a.premium-card:hover i.bi-arrow-right-short {
    color: #FC5C0E !important; /* Accent Pop: Arrow highlights orange */
    transform: translateX(4px);
}

/* ==========================================================================
   3. Section 3.5 B: Explore Premium Academic Cities (Notion/SaaS Style)
   ========================================================================== */
.style-city-pill {
    background-color: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 0.65rem 1.25rem !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Interactive Pill Float Transformation */
.style-city-pill:hover {
    background-color: #FFFFFF !important;
    border-color: rgba(37, 99, 235, 0.25) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.06), 0 1px 2px rgba(37, 99, 235, 0.02) !important;
}

/* City Label Configuration */
.style-city-pill span:not(.badge) {
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    color: #1E293B !important;
    transition: color 0.2s ease;
}

.style-city-pill:hover span:not(.badge) {
    color: #2563EB !important; /* Secondary Interactive Blue Highlight */
}

/* Vector Context Building Icons */
.style-city-pill i.bi-building {
    color: #94A3B8 !important;
    font-size: 1rem !important;
    transition: color 0.2s ease;
}

.style-city-pill:hover i.bi-building {
    color: #FC5C0E !important; /* Active Orange Highlight on Hover */
}

/* Subdued Inner State Identification Badges */
.style-city-pill .badge.bg-slate-100 {
    background-color: #F1F5F9 !important;
    color: #64748B !important;
    border: 1px solid #E2E8F0 !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 6px !important;
}

/**
 * Apply4U High-Density Component Token Matrix Extensions
 * Location: public/css/theme.css (Append to bottom)
 */

/* 1. Flexbox Tag Gap Reset Utility */
.d-flex.flex-wrap.gap-2\.5 {
    gap: 0.75rem !important;
}

/* 2. Premium Degrees & Structural Cards Overrides */
section .premium-card.p-4.h-100.d-flex.align-items-start.gap-3.bg-white {
    background-color: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

section .premium-card.p-4.h-100.d-flex.align-items-start.gap-3.bg-white:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(4, 72, 143, 0.2) !important;
    box-shadow: 0 16px 32px rgba(4, 72, 143, 0.05) !important;
}

/* 3. High-Contrast Global Elements & Background Resets */
.bg-light {
    background-color: #F8FAFC !important;
}

.badge.bg-slate-100 {
    background-color: #F1F5F9 !important;
    color: #475569 !important;
    border: 1px solid #E2E8F0 !important;
    font-weight: 600 !important;
}

/* 4. Link & Micro Button Text Transformations */
.btn-link.text-primary {
    font-size: 0.85rem !important;
    transition: color 0.2s ease;
}

.btn-link.text-primary:hover {
    color: #2563EB !important;
}


/**
 * High-Priority Layout Fix: Centralized Admissions Journey Component Matrix
 * Location: public/css/theme.css (Append to absolute bottom)
 */

/* Force high-contrast legible slate gray for section header subtext */
.journey-sub-title {
    color: #94A3B8 !important;
    font-size: 0.95rem !important;
    max-width: 550px;
    margin: 0 auto;
}

/* Force absolute text color readability contrast across headings */
.journey-step-heading {
    color: #F8FAFC !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
}

/* Force absolute text color readability contrast across descriptions */
.journey-step-desc {
    color: #CBD5E1 !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
}

/* Structural Circle Badge Element Framework Layout Fixes */
.journey-circle-badge {
    width: 64px !important;
    height: 64px !important;
    font-weight: 800 !important;
    font-size: 1.35rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.25rem auto !important;
    border-radius: 50% !important;
    position: relative !important;
    z-index: 5 !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4) !important;
}

/* Circle Badge Color Variances Glow Matrix Hooks */
.journey-circle-badge.blue-node {
    background: linear-gradient(135deg, #2563EB 0%, #04488F 100%) !important;
    border: 3px solid rgba(37, 99, 235, 0.35) !important;
    color: #FFFFFF !important;
}

.journey-circle-badge.accent-node {
    background: linear-gradient(135deg, #FC5C0E 0%, #C2410C 100%) !important;
    border: 3px solid rgba(252, 92, 14, 0.35) !important;
    color: #FFFFFF !important;
}

.journey-circle-badge.green-node {
    background: linear-gradient(135deg, #22C55E 0%, #15803D 100%) !important;
    border: 3px solid rgba(34, 197, 94, 0.35) !important;
    color: #FFFFFF !important;
}

/* Site topbar */
.site-topbar {
    background: linear-gradient(90deg, #0B2545 0%, #12355C 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-badge {
    background: #f97316;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.topbar-tagline {
    line-height: 1.35;
}
.topbar-icon-orange { color: #f97316 !important; }
.topbar-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.topbar-link:hover { color: #fff !important; }
.topbar-pill-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.45);
    background: rgba(249, 115, 22, 0.12);
    color: #fbbf24 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    transition: background 0.2s, border-color 0.2s;
}
.topbar-pill-link:hover {
    background: rgba(249, 115, 22, 0.22);
    border-color: #f97316;
    color: #fff !important;
}
.topbar-pill-link i { color: #f97316; }
.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}

/* Navbar */
.site-navbar {
    min-height: 72px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
}
.site-navbar .header-logo {
    width: clamp(140px, 18vw, 175px);
    height: auto;
}
.site-nav-links {
    align-items: center;
    gap: 0.15rem;
}
@media (min-width: 992px) {
    .site-nav-links {
        flex-wrap: nowrap;
    }
}
.site-nav-links .nav-link {
    color: #334155 !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.45rem 0.55rem !important;
    white-space: nowrap;
    line-height: 1.2;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.site-nav-links .nav-link:hover,
.site-nav-links .nav-link.active {
    color: #f97316 !important;
    background: rgba(249, 115, 22, 0.08);
}
.navbar-cta-group {
    flex-shrink: 0;
}
.btn-nav-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #0f172a !important;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.btn-nav-outline:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
    color: #2563eb !important;
}
.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    border: none;
    border-radius: 10px;
    background: #25d366;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-nav-whatsapp:hover {
    background: #1ebe57;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
}
.btn-nav-whatsapp i {
    font-size: 1.1rem;
}
.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
    color: #fff !important;
}

/* Page hero (inner pages) */
.page-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B2545 0%, #12355C 55%, #1a3d66 100%);
}
.page-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}
.page-hero-glow-orange {
    width: 220px; height: 220px;
    background: rgba(249, 115, 22, 0.18);
    top: -60px; right: 10%;
}
.page-hero-glow-blue {
    width: 280px; height: 280px;
    background: rgba(37, 99, 235, 0.12);
    bottom: -80px; left: -40px;
}
.page-hero-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}
.page-hero-breadcrumb .breadcrumb-item a:hover { color: #f97316; }
.page-hero-breadcrumb .breadcrumb-item,
.page-hero-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
}
.page-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.35);
}
.page-hero-eyebrow {
    display: inline-block;
    color: #f97316;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.page-hero-title {
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.page-hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    max-width: 42rem;
    line-height: 1.6;
}

/* Hero content extras */
.hero-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 32rem;
}
.hero-feature-list li {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.hero-feature-list li i {
    color: #f97316;
    flex-shrink: 0;
    margin-top: 2px;
}
.hero-mini-stats .hero-stat-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    text-align: center;
    min-width: 90px;
}
.hero-stat-pill strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.2;
}
.hero-stat-pill span {
    color: rgba(255,255,255,0.55);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.hub-enquiry-card-compact {
    border-top: 4px solid #f97316 !important;
}
.hub-enquiry-card-compact .hub-form-control {
    padding: 0.6rem 0.85rem !important;
    font-size: 0.86rem;
}
.hub-enquiry-card-compact .hub-form-label {
    font-size: 0.68rem;
    margin-bottom: 0.25rem;
}

/* Contact page */
.contact-info-panel {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.contact-info-card:not(.static):hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(249,115,22,0.1));
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.contact-info-icon.whatsapp { color: #22c55e; }


/* Dark hero */
.hero-dark-section {
    background: linear-gradient(135deg, #0B2545 0%, #12355C 45%, #1e3a5f 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    min-height: auto;
    display: flex;
    align-items: center;
}
.hero-dark-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-dark-glow-orange {
    width: 320px; height: 320px;
    background: rgba(249, 115, 22, 0.22);
    top: -80px; right: -60px;
}
.hero-dark-glow-blue {
    width: 400px; height: 400px;
    background: rgba(37, 99, 235, 0.15);
    bottom: -100px; left: -120px;
}
.hero-dark-grid {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}
.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-dark-title {
    color: #fff;
    font-size: clamp(1.85rem, 4.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.hero-dark-sub {
    color: rgba(255,255,255,0.75);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    max-width: 36rem;
}
.hero-trust-row span {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 600;
}
.hero-btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
    color: #fff;
}
.hero-btn-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 12px;
    padding: 0.8rem 1.75rem;
    font-weight: 700;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Hub enquiry form */
.hub-enquiry-card { border-top: 4px solid #f97316 !important; }
.hub-form-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 999px;
}
.hub-form-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.35rem;
}
.hub-form-control {
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
    border-color: #e2e8f0 !important;
    font-size: 0.92rem;
}
.hub-form-control:focus {
    border-color: #f97316 !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15) !important;
}
.hub-form-submit {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border: none;
    border-radius: 10px;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.25);
}

/* Premium city pill */
.style-city-pill-premium {
    border-color: rgba(249, 115, 22, 0.35) !important;
    background: linear-gradient(135deg, #fff 0%, #fff7ed 100%) !important;
}
.premium-city-badge {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    color: #fff !important;
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none !important;
}

/* Facility cards */
.facility-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}
.facility-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(249,115,22,0.08));
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Journey enhancements */
.journey-track { padding-top: 0.5rem; }
.journey-icons-row { position: relative; z-index: 2; }
.journey-step-node { position: relative; z-index: 3; }
.journey-connector {
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #f97316, #22c55e);
    opacity: 0.45;
    z-index: 1;
    border-radius: 999px;
}
.journey-circle-badge { margin-bottom: 0 !important; }
.journey-step-num {
    display: block;
    color: #f97316;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    margin-top: 1rem;
}
.journey-circle-badge i { font-size: 1.35rem; }

/* Footer — unified with online / studymbbs satellites */
.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    background: #071A30;
    color: rgba(148, 163, 184, 0.95);
    border-top: 4px solid #FF6B00;
    font-size: 0.875rem;
}
.site-footer-grid { padding-bottom: 0.5rem; }
.site-footer-brand { max-width: 22rem; }
.footer-logo-box {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: #fff;
}
.footer-wordmark {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}
.footer-wordmark .text-brand-orange { color: #FF6B00; }
.footer-heading {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}
.footer-text {
    color: rgba(148, 163, 184, 0.95);
    font-size: 0.75rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.footer-links a,
.footer-contact a,
.footer-bottom a {
    color: rgba(148, 163, 184, 0.95);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover { color: #FF6B00; }
.footer-contact-strong {
    font-weight: 600;
    color: #fff !important;
}
.footer-contact-strong:hover { color: #FF6B00 !important; }
.footer-meta { color: rgba(148, 163, 184, 0.85); font-size: 0.75rem; }
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
}
.footer-social {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: color 0.2s, background 0.2s;
}
.footer-social:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FF6B00;
}
.footer-brand-logo {
    max-height: 2.25rem;
    width: auto;
    max-width: 11rem;
    object-fit: contain;
}

/* FAQ accordion */
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(37, 99, 235, 0.06);
    color: #2563eb;
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.facility-card-desc { line-height: 1.55; min-height: 4.5rem; }
.blog-home-card {
    transition: transform 0.25s, box-shadow 0.25s;
}
.blog-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08) !important;
}

/* Secondary navigation bar */
.site-subnav {
    background: #ffffff;
    border-color: #e2e8f0 !important;
}
.site-subnav-scroll {
    scrollbar-width: thin;
}
.site-subnav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.site-subnav-link:hover,
.site-subnav-link.active {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}
.site-subnav-divider {
    width: 1px;
    height: 20px;
    background: #cbd5e1;
    flex-shrink: 0;
}

/* University filter sidebar */
.uni-filter-scroll {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
}
.uni-filter-panel .form-check-label {
    cursor: pointer;
}

/* Floating WhatsApp button — left side */
.whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 24px;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    font-size: 1.65rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.whatsapp-float:hover {
    background: #1ebe57;
    color: #fff !important;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* Chatbot widget — right side */
.chatbot-widget {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1050;
}
.chatbot-launcher {
    position: relative;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.2s, background 0.2s;
}
.chatbot-launcher:hover { background: #1d4ed8; transform: scale(1.04); }
.chatbot-launcher-ping {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f97316;
    border: 2px solid #fff;
}
.chatbot-panel {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: min(22rem, calc(100vw - 2rem));
    height: min(32rem, calc(100vh - 8rem));
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}
.chatbot-panel-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
}
.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.chatbot-panel-title { font-size: 0.9rem; font-weight: 700; }
.chatbot-panel-sub { font-size: 0.7rem; opacity: 0.8; }
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0.85rem;
    background: #f8fafc;
}
.chatbot-msg { margin-bottom: 0.65rem; display: flex; }
.chatbot-msg-user { justify-content: flex-end; }
.chatbot-msg-bot { justify-content: flex-start; }
.chatbot-bubble {
    max-width: 90%;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.45;
    white-space: pre-line;
}
.chatbot-msg-user .chatbot-bubble { background: #f97316; color: #fff; border-bottom-right-radius: 4px; }
.chatbot-msg-bot .chatbot-bubble { background: #fff; color: #334155; border: 1px solid #e2e8f0; border-bottom-left-radius: 4px; }
.chatbot-suggestions-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: #94a3b8; margin-bottom: 0.35rem; }
.chatbot-chip {
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: #fff;
    color: #2563eb;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
}
.chatbot-chip:hover { border-color: #f97316; color: #f97316; }
.chatbot-input-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.65rem;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}
.chatbot-input { border-radius: 10px !important; }
.chatbot-send-btn {
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 38px;
    flex-shrink: 0;
}
.chatbot-send-btn:hover { background: #ea580c; color: #fff; }

@media (max-width: 767.98px) {
    .whatsapp-float { left: 16px; bottom: 18px; width: 52px; height: 52px; }
    .chatbot-widget { right: 16px; bottom: 18px; }
    .chatbot-launcher { width: 52px; height: 52px; }
}

