/* Modern Design System for Force GW Website */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Vibrant Civic Emerald & Warm Amber */
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #ccfbf1;
  --secondary: #2563eb;
  --accent: #f59e0b;
  --accent-hover: #d97706;

  /* Neutral Dark/Light Tokens */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* Glassmorphism & Shadow Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

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

[data-theme="dark"] {
  --bg-body: #0b1324;
  --bg-surface: #131f37;
  --bg-surface-elevated: #1e2d4a;
  --border-color: #273859;
  --border-hover: #3b5078;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --primary-light: #134e4a;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem auto;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(13, 148, 136, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Buttons & Controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
}

.btn-accent {
  background-color: var(--accent);
  color: #0f172a !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

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

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 2px;
  white-space: nowrap;
}

.brand-tagline-line1 {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.brand-tagline-line2 {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin-left: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 0.5rem 0.5rem;
  position: relative;
  white-space: nowrap;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.5rem;
  right: 0.5rem;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle-btn {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Dynamic Hero Slideshow */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0b1324;
}

.slider-container {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
}

/* --- Color Blended Backdrop Mode for Whole Banner Image --- */
.slide-item.fit-contain-ambient {
  background-color: #080d19;
  justify-content: center;
}

.slide-blended-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(42px) brightness(0.55) saturate(1.4);
  transform: scale(1.15);
  opacity: 0.95;
}

.slide-blended-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 19, 36, 0.15) 0%, rgba(11, 19, 36, 0.75) 100%),
              linear-gradient(to right, rgba(11, 19, 36, 0.8) 0%, transparent 40%, transparent 60%, rgba(11, 19, 36, 0.8) 100%);
}

.slide-full-banner-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide-full-banner-img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-full-banner-img:hover {
  transform: scale(1.015);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.slide-banner-caption {
  margin-top: 1rem;
  text-align: center;
  max-width: 800px;
  background: rgba(11, 19, 36, 0.75);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

/* --- Split Poster Layout Mode --- */
.slide-item.fit-contain-split {
  background-color: #080d19;
}

.slide-ambient-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.35);
  opacity: 0.85;
  transform: scale(1.08);
}

.slide-grid-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  padding: 3rem 0;
}

.slide-poster-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 3;
}

.slide-poster-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-poster-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 19, 36, 0.92) 0%, rgba(11, 19, 36, 0.65) 60%, rgba(11, 19, 36, 0.3) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 680px;
  padding: 3.5rem 1.5rem;
}

.slide-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.slide-title {
  font-size: 2.75rem;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.slide-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slider-arrow.prev {
  left: 1.5rem;
}

.slider-arrow.next {
  right: 1.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  gap: 0.6rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 32px;
  background: var(--primary);
}

/* Impact Statistics Section */
.impact-section {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  margin-top: -30px;
  position: relative;
  z-index: 20;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.impact-card {
  padding: 1rem;
}

.impact-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.impact-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Focus Areas Section */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.focus-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.focus-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.focus-icon-header {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.focus-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.focus-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.focus-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Cards & Grid Systems (Events, News, Communities, Vendors) */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

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

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.card-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
}

/* News Bulletins & Knowledge Blogs Layout */
.news-bulletin-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-bulletin-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition);
}

.news-bulletin-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.news-title-link {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
}

.news-title-link:hover {
  color: var(--primary);
}

.news-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-news {
  background: rgba(13, 148, 136, 0.12);
  color: var(--primary);
}

.badge-blog {
  background: rgba(30, 64, 175, 0.12);
  color: #1e40af;
}

/* Trusted Vendors Specific */
.vendor-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.vendor-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.vendor-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.vendor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.vendor-rating {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Search Bar */
.search-box-wrapper {
  max-width: 550px;
  margin: 0 auto 2rem auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 3rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Admin Dashboard Specific */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 80px);
}

.admin-sidebar {
  background: var(--bg-surface);
  border-right: 1px solid var(--border-color);
  padding: 2rem 1rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.admin-nav-item {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.admin-main {
  padding: 2.5rem;
  background: var(--bg-body);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-card.modal-card-lg {
  max-width: 820px;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Footer */
.site-footer {
  background-color: #0b1324;
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.social-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-facebook {
  background-color: #1877F2;
}

.social-instagram {
  background-color: #E4405F;
}

.social-x {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.social-youtube {
  background-color: #FF0000;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.7rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }
}

@media (max-width: 1080px) {
  .header-container {
    height: 74px;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 1.5rem 2rem;
    margin-left: 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide-title {
    font-size: 2.2rem;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

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

  .admin-nav {
    flex-direction: row;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
  }

  .header-container {
    height: 74px;
    padding: 0 0.6rem;
  }

  .brand-wrapper {
    gap: 0.5rem;
  }

  .brand-logo-img {
    height: 54px;
  }

  .brand-name {
    font-size: 1.15rem;
    line-height: 1.1;
    margin-bottom: 1px;
  }

  .brand-tagline-line1 {
    font-size: 0.62rem;
    line-height: 1.15;
    display: block;
  }

  .brand-tagline-line2 {
    font-size: 0.62rem;
    line-height: 1.15;
    display: block;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .theme-toggle-btn {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .header-actions .btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.78rem;
  }

  .mobile-nav-toggle {
    font-size: 1.25rem;
    width: 34px;
    height: 34px;
  }

  .nav-menu {
    top: 74px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slider-arrow {
    display: none;
  }

  .section {
    padding: 2.5rem 0;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }
}

@media (max-width: 420px) {
  .header-container {
    height: 72px;
    padding: 0 0.4rem;
  }

  .brand-wrapper {
    gap: 0.4rem;
  }

  .brand-logo-img {
    height: 48px;
  }

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

  .brand-tagline-line1 {
    font-size: 0.58rem;
    display: block;
  }

  .brand-tagline-line2 {
    font-size: 0.58rem;
    display: block;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .header-actions .btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.72rem;
  }

  .mobile-nav-toggle {
    width: 32px;
    height: 32px;
    font-size: 1.15rem;
  }

  .theme-toggle-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .nav-menu {
    top: 72px;
  }
}

@media (max-width: 360px) {
  .header-container {
    padding: 0 0.25rem;
  }

  .brand-wrapper {
    gap: 0.3rem;
  }

  .brand-logo-img {
    height: 44px;
  }

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

  .brand-tagline-line1,
  .brand-tagline-line2 {
    font-size: 0.54rem;
  }

  .header-actions .btn {
    padding: 0.25rem 0.4rem;
    font-size: 0.7rem;
  }
}

/* Our Partners Section */
.partners-section {
  background-color: var(--bg-surface);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
}

.partners-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 56px;
  min-width: 130px;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.partner-logo {
  max-height: 38px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(10%) contrast(105%);
  transition: filter 0.25s ease;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0%);
}

/* ==========================================================================
   UTSAVA 2027 DEDICATED STYLES (Royal Dark Blue & Gold Theme)
   ========================================================================== */

:root {
  --utsava-bg-dark: #0b071e;
  --utsava-bg-card: rgba(20, 12, 50, 0.85);
  --utsava-bg-card-hover: rgba(32, 19, 78, 0.95);
  --utsava-gold-primary: #f5b92d;
  --utsava-gold-glow: #ffd700;
  --utsava-gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --utsava-border-gold: rgba(212, 175, 55, 0.4);
}

.utsava-page-wrapper {
  background-color: var(--utsava-bg-dark);
  color: #f8fafc;
  min-height: 100vh;
}

/* Hero Section */
.utsava-hero {
  position: relative;
  background: radial-gradient(circle at top center, #241454 0%, #100b2b 60%, #080417 100%);
  padding: 4.5rem 0 5rem 0;
  overflow: hidden;
  border-bottom: 2px solid var(--utsava-border-gold);
}

.utsava-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/utsava/utsava_hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.utsava-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.utsava-presenter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1.25rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--utsava-border-gold);
  border-radius: var(--radius-full);
  color: var(--utsava-gold-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(245, 185, 45, 0.2);
}

.utsava-logo-container {
  margin: 1rem auto 1.5rem auto;
  max-width: 480px;
  position: relative;
}

.utsava-logo-container img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(245, 185, 45, 0.45));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.utsava-logo-container img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.7));
}

.utsava-hero-subtitle {
  font-size: 1.35rem;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.utsava-meta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.utsava-meta-card {
  background: rgba(22, 14, 54, 0.75);
  border: 1px solid var(--utsava-border-gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.utsava-meta-card i {
  color: var(--utsava-gold-primary);
  font-size: 1.5rem;
}

/* Ornate Border Card Frame */
.utsava-gold-frame {
  position: relative;
  background: var(--utsava-bg-card);
  border: 2px solid var(--utsava-border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.utsava-gold-frame:hover {
  border-color: var(--utsava-gold-primary);
  box-shadow: 0 15px 40px rgba(245, 185, 45, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.15);
}

.utsava-section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--utsava-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.utsava-section-subhead {
  text-align: center;
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
}

/* Hubba Banner */
.utsava-hubba-banner {
  background: linear-gradient(135deg, rgba(35, 18, 85, 0.9) 0%, rgba(16, 9, 45, 0.95) 100%);
  border: 2px solid var(--utsava-border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.utsava-hubba-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 185, 45, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Act Cards & Artists */
.utsava-act-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--utsava-gold-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--utsava-border-gold);
  margin-bottom: 1.5rem;
}

.utsava-artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.utsava-artist-card {
  background: rgba(18, 11, 46, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.utsava-artist-card:hover {
  transform: translateY(-4px);
  border-color: var(--utsava-gold-primary);
  box-shadow: 0 8px 25px rgba(245, 185, 45, 0.25);
  background: rgba(30, 18, 75, 0.9);
}

.utsava-artist-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--utsava-gold-primary);
  box-shadow: 0 0 12px rgba(245, 185, 45, 0.3);
  flex-shrink: 0;
}

.utsava-artist-info {
  flex: 1;
}

.utsava-artist-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.utsava-artist-instrument {
  font-size: 0.95rem;
  color: var(--utsava-gold-primary);
  font-weight: 600;
}

.utsava-artist-honor {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.6rem;
  background: rgba(245, 185, 45, 0.15);
  color: #ffe699;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(245, 185, 45, 0.3);
}

/* Impact Pillar Pills */
.utsava-pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 185, 45, 0.12);
  border: 1px solid rgba(245, 185, 45, 0.3);
  border-radius: var(--radius-full);
  color: var(--utsava-gold-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.25rem;
}

.utsava-partner-logo {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.utsava-partner-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(245, 185, 45, 0.5));
}

.unboxing-logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.unboxing-logo-img:hover {
  transform: scale(1.05);
}