/* ==========================================================================
   JOSTUM UNIVERSITY PORTAL - MODERN LANDING PAGE DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --jostum-primary: #059669;
  --jostum-primary-dark: #064e3b;
  --jostum-primary-darker: #022c22;
  --jostum-primary-light: #10b981;
  --jostum-primary-subtle: #ecfdf5;
  
  --jostum-navy: #0f172a;
  --jostum-navy-light: #1e293b;
  --jostum-navy-subtle: #334155;
  
  --jostum-gold: #d97706;
  --jostum-gold-light: #f59e0b;
  --jostum-gold-subtle: #fffbeb;
  
  --jostum-bg-light: #f8fafc;
  --jostum-card-bg: #ffffff;
  --jostum-text-dark: #0f172a;
  --jostum-text-muted: #64748b;

  /* Glassmorphism & Shadows */
  --jostum-glass-header: rgba(6, 78, 59, 0.95);
  --jostum-glass-card: rgba(255, 255, 255, 0.92);
  --jostum-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --jostum-shadow-md: 0 10px 25px -5px rgba(6, 78, 59, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --jostum-shadow-lg: 0 20px 35px -10px rgba(6, 78, 59, 0.18), 0 10px 15px -7px rgba(0, 0, 0, 0.08);
  --jostum-shadow-glow: 0 0 25px rgba(16, 185, 129, 0.35);

  --jostum-radius-sm: 8px;
  --jostum-radius-md: 16px;
  --jostum-radius-lg: 24px;

  --jostum-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Styling */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--jostum-bg-light);
  color: var(--jostum-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   Top Notice Ticker Bar
   -------------------------------------------------------------------------- */
.top-notice-bar {
  background: linear-gradient(90deg, #022c22 0%, #064e3b 50%, #059669 100%);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 1040;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-badge {
  background: rgba(217, 119, 6, 0.25);
  color: #fef3c7;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* --------------------------------------------------------------------------
   Navigation Bar (Header)
   -------------------------------------------------------------------------- */
.jostum-navbar {
  background: var(--jostum-glass-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 0;
  transition: var(--jostum-transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.jostum-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff !important;
  letter-spacing: -0.3px;
  margin-right: 1.5rem;
}

.jostum-brand-logo {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  transition: var(--jostum-transition);
}

.jostum-brand-logo:hover {
  transform: scale(1.05);
}

.jostum-navbar .navbar-collapse {
  align-items: center;
}

.jostum-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0 !important;
}

.jostum-navbar .nav-item {
  display: flex;
  align-items: center;
}

.jostum-navbar .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600;
  font-size: 0.825rem;
  padding: 6px 14px !important;
  border-radius: var(--jostum-radius-sm);
  transition: var(--jostum-transition);
  display: flex;
  flex-direction: column; /* 2-line layout: Line 1 = Icon, Line 2 = Text */
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  gap: 4px;
  line-height: 1.1;
  min-height: 52px;
}

.jostum-navbar .nav-link i {
  font-size: 1.15rem;
  margin-bottom: 0;
  display: block;
  line-height: 1;
}

.jostum-navbar .nav-link:hover,
.jostum-navbar .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.18);
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--jostum-gold) 0%, var(--jostum-gold-light) 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
  transition: var(--jostum-transition);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45);
  color: #ffffff !important;
}

/* /* --------------------------------------------------------------------------
   Hero Carousel (Ultra-Modern 2-Column Advertisements & Announcements)
   -------------------------------------------------------------------------- */
.jostum-hero-carousel {
  position: relative;
  background: var(--jostum-navy);
  border-bottom: 4px solid var(--jostum-gold);
  margin-top: -12px; /* Shift carousel up slightly */
}

.jostum-hero-carousel .carousel-item {
  height: 480px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

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

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 7s ease-out;
}

.carousel-item.active .hero-img-wrapper img {
  transform: scale(1.08);
}

/* Subtle background gradient overlay - keeps campus photos crisp & visible */
.hero-overlay-subtle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg, 
    rgba(15, 23, 42, 0.5) 0%, 
    rgba(6, 78, 59, 0.55) 50%, 
    rgba(2, 44, 34, 0.8) 100%
  );
}

.jostum-hero-carousel .carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0;
  display: flex;
  align-items: center;
  text-align: left;
}

/* Floating Glassmorphic 2-Column Wrapper Card for PC View */
.hero-2col-glass-wrapper {
  background: rgba(6, 78, 59, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--jostum-radius-lg);
  padding: 26px 36px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-2col-glass-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-ad-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 119, 6, 0.25);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.25);
}

.pulse-dot-active {
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulseBeacon 1.8s infinite;
}

.hero-ad-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}

.hero-ad-title span {
  color: var(--jostum-gold-light);
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-ad-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-ad-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-hero-ad-gold {
  background: linear-gradient(135deg, var(--jostum-gold) 0%, var(--jostum-gold-light) 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--jostum-transition);
  text-decoration: none !important;
}

.btn-hero-ad-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.6);
  color: #ffffff !important;
}

.btn-hero-ad-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--jostum-transition);
  text-decoration: none !important;
}

.btn-hero-ad-outline:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hero-trust-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item i {
  color: #34d399;
}

.hero-spotlight-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--jostum-radius-md);
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  position: relative;
}

.spotlight-media-wrapper {
  position: relative;
  border-radius: var(--jostum-radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
}

.spotlight-media-wrapper img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.spotlight-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--jostum-gold) 0%, var(--jostum-gold-light) 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.spotlight-degree-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 8px;
}

.degree-tag-pill {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.725rem;
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  margin: 0 6px;
  transition: var(--jostum-transition);
}

.carousel-indicators .active {
  width: 34px;
  border-radius: 12px;
  background-color: var(--jostum-gold-light);
}

.carousel-control-prev, .carousel-control-next {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--jostum-transition);
  z-index: 10;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--jostum-primary);
  border-color: var(--jostum-primary);
}

/* --------------------------------------------------------------------------
   Quick Links & Portal Search Section
   -------------------------------------------------------------------------- */
.hd-quick-search-section {
  position: relative;
  z-index: 20;
  margin-top: -25px;
  margin-bottom: 25px;
}

.hd-search-bar-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--jostum-radius-md);
  padding: 22px 30px;
  box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.12), 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  overflow: hidden;
}

.hd-search-bar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--jostum-primary) 0%, var(--jostum-gold) 100%);
}

.hd-search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.hd-search-input-group i.search-icon {
  position: absolute;
  left: 18px;
  color: var(--jostum-primary);
  font-size: 1.15rem;
  z-index: 5;
  pointer-events: none;
}

.hd-search-input {
  width: 100%;
  padding: 12px 20px 12px 48px;
  border-radius: 30px;
  border: 2px solid #e2e8f0;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--jostum-navy);
  outline: none;
  transition: var(--jostum-transition);
  background: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.hd-search-input:focus {
  border-color: var(--jostum-primary);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.18), inset 0 2px 4px rgba(0,0,0,0.01);
}

.hd-quick-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hd-quick-chip-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--jostum-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-right: 4px;
}

.hd-quick-chip {
  background: #ffffff;
  color: var(--jostum-navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--jostum-transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hd-quick-chip:hover {
  background: var(--jostum-primary);
  color: #ffffff !important;
  border-color: var(--jostum-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}

.hd-quick-chip:hover i {
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   Quick Access Hub (Gateway Cards)
   -------------------------------------------------------------------------- */
.quick-hub-section {
  position: relative;
  margin-top: 0;
  padding: 80px 0 60px;
  background: var(--jostum-bg-light);
  z-index: 10;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  color: var(--jostum-primary);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  color: var(--jostum-navy);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.5px;
}

.section-title-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--jostum-primary) 0%, var(--jostum-gold) 100%);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Gateway Card styling */
.gateway-card {
  background: var(--jostum-card-bg);
  border-radius: var(--jostum-radius-md);
  padding: 30px 24px;
  box-shadow: var(--jostum-shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--jostum-transition);
  position: relative;
  overflow: hidden;
}

.gateway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--jostum-primary) 0%, var(--jostum-primary-light) 100%);
  opacity: 0;
  transition: var(--jostum-transition);
}

.gateway-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--jostum-shadow-lg);
  border-color: rgba(5, 150, 105, 0.3);
}

.gateway-card:hover::before {
  opacity: 1;
}

.gateway-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--jostum-primary-subtle);
  color: var(--jostum-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  transition: var(--jostum-transition);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.gateway-card:hover .gateway-icon-box {
  background: var(--jostum-primary);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: var(--jostum-shadow-glow);
}

.gateway-card-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--jostum-navy);
  margin-bottom: 10px;
}

.gateway-card-desc {
  color: var(--jostum-text-muted);
  font-size: 0.925rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-gateway-action {
  background: var(--jostum-bg-light);
  color: var(--jostum-primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: var(--jostum-radius-sm);
  border: 1px solid rgba(203, 213, 225, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--jostum-transition);
  text-decoration: none !important;
}

.gateway-card:hover .btn-gateway-action {
  background: var(--jostum-primary);
  color: #ffffff;
  border-color: var(--jostum-primary);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

/* --------------------------------------------------------------------------
   University Services & Portal Features Grid
   -------------------------------------------------------------------------- */
.services-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.service-item-card {
  background: var(--jostum-bg-light);
  border-radius: var(--jostum-radius-md);
  padding: 32px 28px;
  border: 1px solid #f1f5f9;
  transition: var(--jostum-transition);
  height: 100%;
}

.service-item-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--jostum-shadow-md);
  border-color: rgba(5, 150, 105, 0.2);
}

.service-icon-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--jostum-navy);
  color: var(--jostum-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--jostum-navy);
  margin-bottom: 8px;
}

.service-text {
  color: var(--jostum-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Stats Counter Banner
   -------------------------------------------------------------------------- */
.stats-banner {
  background: linear-gradient(135deg, var(--jostum-navy) 0%, var(--jostum-primary-darker) 100%);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--jostum-gold-light);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Modal Notice Styling (jQuery Bootstrap Modal Override)
   -------------------------------------------------------------------------- */
.modal-content {
  border-radius: var(--jostum-radius-md);
  border: none;
  box-shadow: var(--jostum-shadow-lg);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--jostum-primary-dark) 0%, var(--jostum-primary) 100%);
  color: #ffffff;
  padding: 20px 24px;
  border-bottom: none;
}

.modal-title {
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header .close, .modal-header .btn-close {
  color: #ffffff;
  opacity: 0.8;
  text-shadow: none;
  font-size: 1.5rem;
}

.modal-body {
  padding: 28px 24px;
  color: var(--jostum-navy);
  font-size: 1rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.jostum-footer {
  background: var(--jostum-navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 60px;
  padding-bottom: 30px;
  font-size: 0.925rem;
  border-top: 3px solid var(--jostum-primary);
  margin-bottom: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--jostum-gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--jostum-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--jostum-primary-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}

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

/* --------------------------------------------------------------------------
   Advertisement Banner & Featured Promo Section
   -------------------------------------------------------------------------- */
.jostum-ad-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.jostum-ad-banner {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #0f172a 100%);
  border-radius: var(--jostum-radius-lg);
  padding: 44px;
  color: #ffffff;
  position: relative;
  box-shadow: 0 20px 40px -15px rgba(6, 78, 59, 0.35);
  border: 1px solid rgba(245, 158, 11, 0.3);
  overflow: hidden;
}

.jostum-ad-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ad-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 119, 6, 0.22);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ad-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.ad-highlight-text {
  color: var(--jostum-gold-light);
}

.ad-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 600px;
}

.ad-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn-ad-gold {
  background: linear-gradient(135deg, var(--jostum-gold) 0%, var(--jostum-gold-light) 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--jostum-transition);
  text-decoration: none !important;
}

.btn-ad-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.55);
  color: #ffffff !important;
}

.btn-ad-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--jostum-transition);
  text-decoration: none !important;
}

.btn-ad-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.ad-media-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--jostum-radius-md);
  padding: 24px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.ad-media-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--jostum-radius-sm);
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.ad-floating-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--jostum-gold-light);
  color: var(--jostum-navy);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .jostum-hero .carousel-item {
    height: 480px;
  }
  .jostum-hero .carousel-caption {
    left: 5%;
    right: 5%;
    bottom: 40px;
  }
  .hero-glass-card {
    padding: 24px;
  }
  .hero-glass-card h1, .hero-glass-card h2 {
    font-size: 1.6rem;
  }
  .quick-hub-section {
    margin-top: -30px;
  }
  .ad-title {
    font-size: 1.75rem;
  }
  .jostum-ad-banner {
    padding: 28px;
  }
}

@media (max-width: 575.98px) {
  .jostum-navbar .navbar-brand {
    font-size: 1rem;
  }
  .jostum-brand-logo {
    height: 36px;
  }
  .jostum-hero .carousel-item {
    height: 440px;
  }
  .hero-glass-card h1, .hero-glass-card h2 {
    font-size: 1.35rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .ad-title {
    font-size: 1.4rem;
  }
}

