/* ========== CSS VARIABLES (DEFAULTS) ========== */
:root {
  /* Primary colors - Dark blue */
  --color-primary: #1e3a5f;
  --color-primary-light: #4b6a8f;
  --color-primary-lighter: #7899bf;
  --color-primary-dark: #182e4c;
  --color-primary-text: #ffffff;

  /* Secondary colors - Blue */
  --color-secondary: #3b82f6;
  --color-secondary-light: #629ef8;
  --color-secondary-lighter: #8ab9f9;
  --color-secondary-dark: #2f68c5;
  --color-secondary-text: #ffffff;

  /* Accent colors - Purple */
  --color-accent: #8b5cf6;
  --color-accent-light: #a27df8;
  --color-accent-lighter: #b99df9;
  --color-accent-dark: #6f4ac5;
  --color-accent-text: #ffffff;

  /* Status colors */
  --color-success: #22c55e;
  --color-success-light: #6cd98f;
  --color-success-text: #ffffff;

  --color-warning: #f59e0b;
  --color-warning-light: #f8b84c;
  --color-warning-text: #1e293b;

  --color-danger: #ef4444;
  --color-danger-light: #f38080;
  --color-danger-text: #ffffff;

  /* Background colors */
  --bg-body: #ffffff;
  --bg-section: #f8fafc;
  --bg-card: #ffffff;
  --bg-footer: #0f172a;
  --bg-header: #ffffff;
  --bg-body-text: #1e293b;
  --bg-section-text: #1e293b;
  --bg-card-text: #1e293b;
  --bg-footer-text: #ffffff;
  --bg-header-text: #1e293b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bg-body-text);
  background: var(--bg-body);
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

/* ========== UTILITIES ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-secondary-light) 100%);
  background-size: 200% 200%;
  color: var(--color-primary-text);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 3px 6px rgba(0,0,0,0.1);
  background-position: right center;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, var(--color-danger-dark, #dc2626) 0%, var(--color-danger) 50%, var(--color-danger-light) 100%);
  background-size: 200% 200%;
  color: var(--color-danger-text);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5), 0 3px 6px rgba(0,0,0,0.1);
  background-position: right center;
}

.btn-danger:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-primary-text);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-white {
  background: var(--bg-card);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  background: var(--bg-section);
}

.btn-white:active {
  transform: translateY(-1px);
}

.w-full {
  width: 100%;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a73 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-header p {
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #0f172a;
  color: white;
  padding: 10px 0;
  font-size: 13px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  transition: color 0.2s;
}

.top-bar-left a:hover {
  color: white;
}

.top-bar-right {
  display: flex;
  gap: 16px;
}

.top-bar-right a {
  color: #cbd5e1;
  transition: color 0.2s;
}

.top-bar-right a:hover {
  color: white;
}

/* ========== HEADER ========== */
.header {
  background: var(--bg-header);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header > .container {
  position: relative;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 40px;
}

.header-right {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-text);
  font-size: 20px;
}

.logo-image {
  height: 65px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-image.footer-logo {
  height: 75px;
}

.logo-text h1 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: -2px;
}

.logo-text span {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.main-nav a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown toggle cursor and visual feedback */
.nav-dropdown > a {
  cursor: pointer;
}

.nav-dropdown.active > a,
.nav-dropdown > a:focus {
  color: var(--color-primary);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-section);
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.header-actions .btn {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 8px;
}

.header-actions .btn-secondary {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #475569;
  box-shadow: none;
}

.header-actions .btn-secondary:hover {
  background: var(--bg-section);
  border-color: #cbd5e1;
  color: var(--color-primary);
  transform: none;
  box-shadow: none;
}

.header-actions .btn-primary {
  padding: 10px 20px;
  background: var(--color-primary);
  box-shadow: none;
}

.header-actions .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: none;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-primary);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  background: var(--bg-section);
}

.mobile-toggle.active {
  background: var(--color-primary);
  color: var(--color-primary-text);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border-top: 1px solid #e2e8f0;
  padding: 20px;
  z-index: 1000;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav > a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s ease;
}

.mobile-nav > a:hover,
.mobile-dropdown-toggle:hover {
  color: var(--color-primary);
}

.mobile-nav > a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.mobile-nav > a i,
.mobile-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-dropdown-toggle {
  border-bottom: none;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 16px;
  padding-bottom: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #64748b;
  transition: color 0.2s ease;
}

.mobile-dropdown-menu a:hover {
  color: var(--color-primary);
}

.mobile-menu-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.mobile-menu-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 14px 20px;
}

/* ========== FOOTER ========== */
/* Footer Spacer - adds space between content and footer */
.footer-spacer {
  height: 80px;
  background: var(--bg-section);
}

.footer {
  background: var(--bg-footer);
  color: var(--bg-footer-text);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: #3b82f6;
  color: white;
}

.footer-column h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  color: #64748b;
  font-size: 13px;
}

.footer-bottom a {
  color: #64748b;
  font-size: 13px;
  margin-left: 24px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: white;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920') center/cover;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 58, 95, 0.6) 50%, rgba(59, 130, 246, 0.5) 100%);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 42px;
  color: white;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #94a3b8;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: #60a5fa;
}

/* ========== CONTENT STYLES ========== */
.content-section {
  background: var(--bg-card);
  padding: 60px 0;
}

.content-section p {
  margin-bottom: 16px;
  color: #475569;
}

.content-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-section h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-section ul, .content-section ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-section ul li, .content-section ol li {
  margin-bottom: 8px;
  color: #475569;
}

.content-section ul {
  list-style: disc;
}

.content-section ol {
  list-style: decimal;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 58, 95, 0.55) 50%, rgba(30, 64, 175, 0.5) 100%);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  background: var(--bg-card);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  min-height: 600px;
  padding: 60px 0;
}

.hero-main h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-main h1 span {
  color: #60a5fa;
}

.hero-main p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.hero-meta-item i {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #60a5fa;
}

.hero-meta-item .info span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-meta-item .info strong {
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Notice Board */
.notice-board {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.notice-board-header {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-board-header i {
  font-size: 18px;
}

.notice-board-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.notice-board-header span {
  margin-left: auto;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.notice-list {
  max-height: none;
  padding: 4px 0;
}

.notice-item {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  cursor: pointer;
}

.notice-item:hover {
  background: #fffbeb;
}

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

.notice-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.notice-item.urgent .notice-dot {
  background: #ef4444;
}

.notice-title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-date {
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}

.notice-board-footer {
  padding: 12px 20px;
  background: var(--bg-section);
  text-align: center;
}

.notice-board-footer a {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.notice-board-footer a:hover {
  text-decoration: underline;
}

/* Download Buttons */
/* Hero Download Buttons */
.hero-sidebar .download-buttons {
  display: flex;
  gap: 12px;
}

.hero-sidebar .download-buttons .download-btn {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: white !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  transition: all 0.3s ease !important;
  color: #334155 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  white-space: normal !important;
}

.hero-sidebar .download-buttons .download-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2) !important;
}

.hero-sidebar .download-buttons .download-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  font-size: 18px !important;
}

.hero-sidebar .download-buttons .download-btn:nth-child(2) .download-icon {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%) !important;
}

.hero-sidebar .download-buttons .download-info {
  flex: 1;
}

.hero-sidebar .download-buttons .download-info span {
  display: block;
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-sidebar .download-buttons .download-info strong {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.hero-sidebar .download-buttons .download-arrow {
  color: #94a3b8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero-sidebar .download-buttons .download-btn:hover .download-arrow {
  color: var(--color-primary);
  transform: translateY(2px);
}

/* ========== ORGANIZERS STRIP ========== */
.organizers-strip {
  background: var(--bg-section);
  padding: 50px 0;
}

.organizers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.organizer-group {
  text-align: center;
}

.organizer-group-title {
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.organizer-group-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #3b82f6;
}

.organizer-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.organizer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.organizer-card:hover {
  transform: translateY(-5px);
}

.organizer-logo {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.organizer-card:hover .organizer-logo {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: var(--color-secondary);
}

.organizer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.organizer-logo i {
  font-size: 32px;
  color: var(--color-primary);
}

.organizer-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.organizer-info p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* ========== COUNTDOWN ========== */
.countdown-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 40px 0;
}

.countdown-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.countdown-label {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  gap: 24px;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.countdown-unit {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 36px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--bg-card);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  color: #64748b;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  width: 36px;
  height: 36px;
  background: #dbeafe;
  color: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature span {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

/* ========== KEY DATES ========== */
.dates-section {
  background: var(--bg-section);
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.date-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.date-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-color: var(--color-secondary);
}

.date-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
}

.date-card-icon .month {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-card-icon .day {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.date-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1e293b;
}

.date-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.date-card.highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border: none;
}

.date-card.highlight .date-card-icon {
  background: rgba(255,255,255,0.2);
}

.date-card.highlight h4,
.date-card.highlight p {
  color: white;
}

/* ========== SPEAKERS ========== */
/* ========== HOMEPAGE SPEAKERS SECTION ========== */
.speakers-section {
  background: var(--bg-card);
}

.speakers-section .speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.speakers-section .speakers-grid .speaker-card {
  text-align: center;
  padding: 24px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-card);
}

.speakers-section .speakers-grid .speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.speakers-section .speakers-grid .speaker-image {
  position: relative;
  width: 160px !important;
  height: 160px !important;
  margin: 0 auto 24px !important;
  border-radius: 50% !important;
  overflow: visible !important;
  transition: all 0.4s ease;
  background: transparent !important;
}

.speakers-section .speakers-grid .speaker-image::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-secondary-light), var(--color-primary));
  background-size: 300% 300%;
  border-radius: 50%;
  z-index: -1;
  animation: gradientRotate 4s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.speakers-section .speakers-grid .speaker-card:hover .speaker-image::before {
  opacity: 1;
}

.speakers-section .speakers-grid .speaker-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  position: relative;
  background: var(--bg-card);
}

.speakers-section .speakers-grid .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.speakers-section .speakers-grid .speaker-card:hover .speaker-image img {
  transform: scale(1.1);
}

.speakers-section .speakers-grid .speaker-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0f172a;
}

.speakers-section .speakers-grid .speaker-card .designation {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}

.speakers-section .speakers-grid .speaker-card .organization {
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 600;
}

.speaker-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* ========== KEYNOTE SPEAKERS ========== */
.keynote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.keynote-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.keynote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.keynote-image {
  height: 320px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  position: relative;
  overflow: hidden;
}

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

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

.keynote-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.keynote-content {
  padding: 28px;
}

.keynote-content h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.keynote-designation {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.keynote-affiliation {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}

.keynote-affiliation i {
  margin-right: 6px;
}

.keynote-bio {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.keynote-topic {
  background: var(--bg-section);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.keynote-topic-label {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.keynote-topic h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.keynote-social {
  display: flex;
  gap: 10px;
}

.keynote-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s;
}

.keynote-social a:hover {
  background: var(--color-primary);
  color: white;
}

/* Speaker Placeholder (when no photo) */
.speaker-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #94a3b8;
  font-size: 50px;
}

.speaker-placeholder.large {
  font-size: 80px;
}

/* Empty Content State */
.empty-content {
  text-align: center;
  padding: 80px 20px;
}

.empty-content i {
  font-size: 64px;
  color: #cbd5e1;
  margin-bottom: 20px;
  display: block;
}

.empty-content h3 {
  color: #64748b;
  margin-bottom: 10px;
}

.empty-content p {
  color: #94a3b8;
}

/* ========== SPEAKERS GRID BASE ========== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  justify-items: center;
}

/* ========== SPEAKER CARDS (New Design) ========== */
.speakers-grid .speaker-card {
  width: 100%;
  max-width: 300px;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  text-align: center;
  padding: 0;
}

.speakers-grid .speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.speakers-grid .speaker-image {
  height: 200px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0;
  margin: 0;
}

.speakers-grid .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.speakers-grid .speaker-card:hover .speaker-image img {
  transform: scale(1.05);
}

.speaker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(30, 64, 175, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.speaker-card:hover .speaker-overlay {
  transform: translateY(0);
}

.speaker-overlay-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.speaker-overlay-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  transition: background 0.2s;
}

.speaker-overlay-links a:hover {
  background: rgba(255,255,255,0.3);
}

.speakers-grid .speaker-content {
  padding: 20px 16px;
}

.speakers-grid .speaker-content h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.speakers-grid .speaker-content .designation {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.speakers-grid .speaker-content .affiliation {
  color: #64748b;
  font-size: 12px;
}

.speaker-topic {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.speaker-topic span {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-topic p {
  font-size: 12px;
  color: #374151;
  font-weight: 500;
  margin-top: 4px;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 24px 60px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920') center/cover;
  opacity: 0.08;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  background: white;
  color: var(--color-primary);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ========== RESPONSIVE SPEAKERS ========== */
@media (max-width: 1200px) {
  .speakers-section .speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .speakers-section .speakers-grid .speaker-image { width: 140px !important; height: 140px !important; }
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .keynote-grid { grid-template-columns: 1fr; }
  .speakers-section .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .speakers-section .speakers-grid { grid-template-columns: 1fr; }
  .speakers-section .speakers-grid .speaker-image { width: 120px !important; height: 120px !important; }
  .speakers-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 24px; margin: 0 16px; }
  .cta-section h2 { font-size: 26px; }
  .cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .keynote-image { height: 260px; }
  .keynote-content { padding: 20px; }
}

/* ========== COMMITTEE PAGE ========== */

/* Committee Tabs */
.committee-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.committee-tab {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.committee-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.committee-tab.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
  color: white;
}

/* Committee Content Sections */
.committee-content {
  margin-bottom: 60px;
}

/* Committee Section Block */
.committee-section {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 32px;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.committee-grid.patron-style {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  justify-items: center;
}

/* Patron Grid - 3 column layout for leadership */
.patron-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  justify-items: center;
}

@media (max-width: 1024px) {
  .patron-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .patron-grid { grid-template-columns: 1fr; }
}

.patron-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  max-width: 280px;
  width: 100%;
}

.patron-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.patron-card.highlight {
  border: 2px solid #3b82f6;
  background: linear-gradient(180deg, #f0f7ff 0%, white 100%);
}

.patron-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f1f5f9;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.patron-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #94a3b8;
  font-size: 40px;
}

.avatar-placeholder.small {
  font-size: 30px;
}

.patron-role {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.patron-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.patron-designation {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.patron-affiliation {
  color: #64748b;
  font-size: 13px;
}

/* Committee Section Block */
.committee-section-block {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.committee-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.committee-section-title i {
  font-size: 24px;
}

/* Members List */
.members-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.member-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-section);
  border-radius: 12px;
  transition: all 0.2s;
}

.member-list-item:hover {
  background: var(--bg-section);
}

.member-list-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.member-list-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.member-list-info span {
  font-size: 13px;
  color: #64748b;
}

/* Members Grid (for local committee) */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  justify-items: center;
}

.member-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.member-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f1f5f9;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.member-card .designation {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 4px;
}

.member-card .affiliation {
  font-size: 12px;
  color: #64748b;
}

/* ========== CONTENT PAGE ========== */
.content-wrapper {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.featured-image {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.page-content {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.page-content h1, .page-content h2, .page-content h3, .page-content h4 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.page-content h2 { font-size: 28px; }
.page-content h3 { font-size: 22px; }
.page-content h4 { font-size: 18px; }

.page-content p {
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.page-content ol li {
  list-style: decimal;
}

.page-content a {
  color: var(--color-secondary);
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.page-content th, .page-content td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.page-content th {
  background: var(--bg-section);
  font-weight: 600;
}

.page-content blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 20px;
  margin: 24px 0;
  color: #64748b;
  font-style: italic;
}

/* ========== PAGE LAYOUT WITH SIDEBAR ========== */
.page-content-section {
  background: var(--bg-card);
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.page-main {
  min-width: 0;
}

.featured-image-wrapper {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.featured-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

/* Prose Content Styling */
.prose {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #0f172a;
}

.prose h1:first-child, .prose h2:first-child, .prose h3:first-child {
  margin-top: 0;
}

.prose h2 { font-size: 28px; }
.prose h3 { font-size: 22px; }
.prose h4 { font-size: 18px; }

.prose p {
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.prose li {
  margin-bottom: 8px;
  list-style: disc;
}

.prose ol li {
  list-style: decimal;
}

.prose a {
  color: var(--color-secondary);
  font-weight: 500;
}

.prose a:hover {
  text-decoration: underline;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.prose th, .prose td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.prose th {
  background: var(--bg-section);
  font-weight: 600;
  color: #1e293b;
}

.prose blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 20px;
  margin: 24px 0;
  color: #64748b;
  font-style: italic;
}

.prose .lead {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.prose .guidelines-list {
  background: var(--bg-section);
  padding: 20px 20px 20px 44px;
  border-radius: 12px;
  margin: 16px 0 24px;
}

.prose .guidelines-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.prose .guidelines-list li:last-child {
  margin-bottom: 0;
}

.prose .guidelines-list.numbered {
  list-style: none;
  padding-left: 20px;
  counter-reset: step;
}

.prose .guidelines-list.numbered li {
  counter-increment: step;
  position: relative;
  padding-left: 36px;
}

.prose .guidelines-list.numbered li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prose .info-box {
  background: #f0f9ff;
  border-left: 4px solid var(--color-primary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.prose .info-box h4 {
  margin-top: 0;
  color: var(--color-primary);
}

.prose .info-box p:last-child {
  margin-bottom: 0;
}

/* Page Sidebar */
.page-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
  overflow: hidden;
}

.sidebar-card.highlight {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #93c5fd;
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  background: var(--bg-section);
}

.sidebar-card.highlight .sidebar-card-header {
  background: transparent;
  border-bottom-color: rgba(59, 130, 246, 0.2);
}

.sidebar-card-header i {
  width: 36px;
  height: 36px;
  background: #dbeafe;
  color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.sidebar-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.sidebar-card-body {
  padding: 20px;
}

.sidebar-card-body p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.6;
}

.sidebar-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--bg-section);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.sidebar-card-link:hover {
  background: #eff6ff;
}

.sidebar-card-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.sidebar-card-link:hover i {
  transform: translateX(4px);
}

/* Date Items */
.date-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.date-item.past {
  opacity: 0.5;
}

.date-label {
  font-size: 14px;
  color: #475569;
}

.date-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

/* Download Links */
.download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin: -4px -12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.download-link:hover {
  background: var(--bg-section);
}

.download-link i {
  width: 36px;
  height: 36px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.download-link i.fa-file-word {
  background: #dbeafe;
  color: #2563eb;
}

.download-link i.fa-file-powerpoint {
  background: #fef3c7;
  color: #d97706;
}

.download-link i.fa-file-image {
  background: #d1fae5;
  color: #059669;
}

.download-link i.fa-file-alt {
  background: #e0e7ff;
  color: #4f46e5;
}

.download-link span {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  flex: 1;
}

/* Responsive Page Layout */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .page-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ========== PROGRAMME PAGE ========== */

/* Day Tabs */
.day-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 80px;
}

.day-tab:hover {
  border-color: var(--color-secondary);
}

.day-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.day-tab-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.day-tab.active .day-tab-num {
  color: rgba(255,255,255,0.8);
}

.day-tab-date {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.day-tab.active .day-tab-date {
  color: white;
}

/* Day Schedule */
.day-schedule {
  display: none;
}

.day-schedule.active {
  display: block;
}

.day-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px 10px 0 0;
  color: white;
}

.day-title-bar h3 {
  font-size: 18px;
  color: white;
  margin: 0;
}

.day-title-bar span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* Schedule Table */
.schedule-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 10px 10px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  min-width: 600px;
}

.col-time { width: 100px; }
.col-session { width: auto; }
.col-speaker { width: 180px; }
.col-venue { width: 140px; }

/* Mobile Schedule Cards - Hidden by default */
.schedule-cards {
  display: none;
}

.schedule-table thead {
  background: var(--bg-section);
}

.schedule-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e2e8f0;
}

.schedule-table td {
  padding: 12px 16px;
  vertical-align: top;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

.session-row:last-child td {
  border-bottom: none;
}

.session-row:hover {
  background: var(--bg-section);
}

/* Session type row colors */
.session-row.break, .session-row.lunch {
  background: #fafafa;
}

.session-row.break:hover, .session-row.lunch:hover {
  background: #f5f5f5;
}

/* Time Cell */
.time-cell {
  white-space: nowrap;
}

.time-cell strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.time-cell span {
  font-size: 12px;
  color: #94a3b8;
}

/* Session Cell */
.session-cell {
  min-width: 300px;
}

.session-type-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  background: var(--bg-section);
  color: #64748b;
}

.session-type-tag.keynote { background: #fef3c7; color: #b45309; }
.session-type-tag.plenary { background: #ede9fe; color: #7c3aed; }
.session-type-tag.invited { background: #dbeafe; color: var(--color-primary); }
.session-type-tag.workshop { background: #d1fae5; color: #047857; }
.session-type-tag.oral { background: #cffafe; color: #0e7490; }
.session-type-tag.poster { background: #fce7f3; color: #be185d; }
.session-type-tag.panel { background: #e0e7ff; color: #4338ca; }
.session-type-tag.break, .session-type-tag.lunch { background: var(--bg-section); color: #64748b; }
.session-type-tag.dinner { background: #ffe4e6; color: #be123c; }
.session-type-tag.inauguration, .session-type-tag.closing { background: #fef9c3; color: #a16207; }
.session-type-tag.excursion { background: #dcfce7; color: #15803d; }
.session-type-tag.registration { background: #e2e8f0; color: #475569; }

.session-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.session-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Speaker Cell */
.speaker-cell {
  color: #475569;
  font-size: 13px;
}

/* Venue Cell */
.venue-cell {
  color: #64748b;
  font-size: 13px;
}

/* Schedule Card Styles */
.schedule-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.schedule-card.break,
.schedule-card.lunch {
  background: var(--bg-section);
  border-color: #e2e8f0;
}

.schedule-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.schedule-card-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.schedule-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.4;
}

.schedule-card-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 10px;
  line-height: 1.5;
}

.schedule-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.schedule-card-meta span {
  font-size: 12px;
  color: #64748b;
}

.schedule-card-meta i {
  margin-right: 6px;
  color: #94a3b8;
}

/* Programme Responsive */
@media (max-width: 1024px) {
  .col-venue { display: none; }
  .schedule-table th:nth-child(4),
  .schedule-table td:nth-child(4) {
    display: none;
  }
}

@media (max-width: 768px) {
  .day-tabs {
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .day-tab {
    padding: 10px 14px;
    min-width: 60px;
    flex-shrink: 0;
  }
  .day-title-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  /* Hide table, show cards on mobile */
  .schedule-table-wrapper {
    display: none;
  }

  .schedule-cards {
    display: block;
  }

  .day-tab-num {
    font-size: 10px;
  }
  .day-tab-date {
    font-size: 11px;
  }
}

/* ========== ACCEPTED PAPERS PAGE ========== */
.papers-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.stat-icon.icon-blue { color: var(--color-secondary); }
.stat-icon.icon-green { color: var(--color-success); }
.stat-icon.icon-purple { color: var(--color-accent); }

.stat-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.stat-card p {
  color: #64748b;
  margin: 6px 0 0;
}

.theme-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.theme-filter {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: var(--bg-card);
  color: #475569;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

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

.theme-filter.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.theme-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.theme-icon {
  width: 40px;
  height: 40px;
  background: #f3e8ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.theme-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.theme-header p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.papers-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.paper-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.paper-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #e2e8f0;
}

.paper-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paper-icon.icon-blue { background: #dbeafe; color: var(--color-secondary); }
.paper-icon.icon-yellow { background: #fef3c7; color: var(--color-warning); }

.paper-content {
  flex: 1;
  min-width: 0;
}

.paper-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.paper-id {
  font-size: 11px;
  color: #64748b;
  font-family: monospace;
}

.paper-type {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
}

.paper-type.type-oral { background: #dbeafe; color: #1e40af; }
.paper-type.type-poster { background: #fef3c7; color: #92400e; }

.paper-badge {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 10px;
}

.paper-badge.badge-spc { background: #dcfce7; color: #166534; }
.paper-badge.badge-ysa { background: #fef3c7; color: #92400e; }

.paper-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 8px;
  line-height: 1.4;
}

.paper-author {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.paper-author i {
  margin-right: 6px;
}

.paper-org {
  color: #94a3b8;
  margin-left: 6px;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.empty-icon i {
  font-size: 32px;
  color: #94a3b8;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.empty-state p {
  color: #64748b;
  max-width: 400px;
  margin: 0 auto 20px;
}

/* Accepted Papers Responsive */
@media (max-width: 768px) {
  .papers-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .stat-icon {
    margin-bottom: 0;
  }

  .stat-card h3 {
    font-size: 24px;
  }

  .theme-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .theme-filter {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .paper-card {
    flex-direction: column;
    gap: 12px;
  }

  .paper-icon {
    width: 36px;
    height: 36px;
  }

  .paper-meta {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .stat-card h3 {
    font-size: 20px;
  }

  .paper-content h4 {
    font-size: 14px;
  }
}

/* ========== WINNERS PAGE ========== */
.winners-section {
  margin-bottom: 60px;
}

.winners-header {
  text-align: center;
  margin-bottom: 40px;
}

.winners-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.winners-icon i {
  font-size: 36px;
}

.winners-icon.icon-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.winners-icon.icon-gold i { color: #b45309; }

.winners-icon.icon-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.winners-icon.icon-blue i { color: #1e40af; }

.winners-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.winners-header p {
  color: #64748b;
  font-size: 16px;
}

.winners-list {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.winner-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}

.winner-card-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.winner-card-header.header-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.winner-card-header.header-blue {
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
}

.winner-award {
  display: flex;
  align-items: center;
  gap: 12px;
}

.winner-award i {
  font-size: 24px;
}

.winner-award span {
  font-size: 16px;
  font-weight: 700;
}

.header-gold .winner-award i,
.header-gold .winner-award span { color: #92400e; }

.header-blue .winner-award i,
.header-blue .winner-award span { color: #1e40af; }

.winner-id {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
}

.header-gold .winner-id { background: rgba(180, 83, 9, 0.2); color: #92400e; }
.header-blue .winner-id { background: rgba(30, 64, 175, 0.2); color: #1e40af; }

.winner-card-body {
  padding: 24px;
}

.winner-card-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 12px;
  line-height: 1.4;
}

.winner-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.winner-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.winner-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.winner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.winner-avatar.avatar-blue { background: linear-gradient(135deg, var(--color-secondary), #60a5fa); }
.winner-avatar.avatar-green { background: linear-gradient(135deg, var(--color-success), #4ade80); }

.winner-author h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.winner-author p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.winner-theme {
  font-size: 11px;
  background: #f3e8ff;
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: 10px;
}

.winner-theme i {
  margin-right: 4px;
}

.empty-icon-lg {
  width: 100px;
  height: 100px;
}

.empty-icon-lg i {
  font-size: 40px;
}

.empty-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.awards-info {
  margin-top: 60px;
  background: var(--bg-section);
  border-radius: 16px;
  padding: 40px;
}

.awards-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.award-info-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border-left: 4px solid var(--color-secondary);
}

.award-info-card.award-gold { border-left-color: var(--color-warning); }
.award-info-card.award-blue { border-left-color: var(--color-secondary); }

.award-info-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.award-info-card h4 i {
  margin-right: 8px;
}

.award-gold h4 i { color: var(--color-warning); }
.award-blue h4 i { color: var(--color-secondary); }

.award-info-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Winners Responsive */
@media (max-width: 768px) {
  .winners-header h2 {
    font-size: 24px;
  }

  .winner-card-header {
    padding: 14px 18px;
  }

  .winner-card-body {
    padding: 18px;
  }

  .winner-card-body h3 {
    font-size: 16px;
  }

  .awards-info {
    padding: 24px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .winners-icon {
    width: 60px;
    height: 60px;
  }

  .winners-icon i {
    font-size: 28px;
  }

  .winner-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== VENUE PAGE ========== */
.venue-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 16px;
  padding: 40px;
  color: white;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.venue-hero-bg {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.venue-hero-bg::after {
  content: '';
  position: absolute;
  right: 100px;
  bottom: -130px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.venue-hero-content {
  position: relative;
  z-index: 1;
}

.venue-date-badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 16px;
}

.venue-hero h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: white;
}

.venue-hero p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.venue-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.venue-main .content-card,
.venue-sidebar .content-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.venue-main .content-card h3,
.venue-sidebar .content-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.venue-main .content-card h3 i {
  color: var(--color-secondary);
}

.venue-main .content-card p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.venue-main .content-card p:last-child {
  margin-bottom: 0;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.facility-item {
  padding: 20px;
  background: var(--bg-section);
  border-radius: 12px;
  border-left: 4px solid var(--color-secondary);
}

.facility-item i {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.facility-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.facility-item p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.facility-blue { border-left-color: var(--color-secondary); }
.facility-blue i { color: var(--color-secondary); }
.facility-green { border-left-color: var(--color-success); }
.facility-green i { color: var(--color-success); }
.facility-yellow { border-left-color: var(--color-warning); }
.facility-yellow i { color: var(--color-warning); }
.facility-purple { border-left-color: var(--color-accent); }
.facility-purple i { color: var(--color-accent); }

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.quick-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quick-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-info-icon.icon-blue { background: #dbeafe; color: var(--color-secondary); }
.quick-info-icon.icon-green { background: #dcfce7; color: var(--color-success); }
.quick-info-icon.icon-yellow { background: #fef3c7; color: var(--color-warning); }

.quick-info-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 4px;
}

.quick-info-item p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.transport-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transport-item {
  padding: 14px;
  background: var(--bg-section);
  border-radius: 10px;
}

.transport-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.transport-header h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.transport-item p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.accommodation-intro {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

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

.hotel-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  color: #475569;
}

.hotel-list li:last-child {
  border-bottom: none;
}

.hotel-list li i {
  margin-right: 8px;
  color: var(--color-accent);
}

.venue-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-secondary);
  text-decoration: none;
}

.venue-link:hover {
  text-decoration: underline;
}

.venue-link i {
  margin-left: 4px;
}

/* Venue Page Responsive */
@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .venue-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .venue-sidebar .content-card {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .venue-hero {
    padding: 24px;
  }

  .venue-hero h2 {
    font-size: 24px;
  }

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

  .venue-sidebar {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 250px;
  }
}

/* Legacy venue-info styles */
.venue-info {
  max-width: 900px;
  margin: 0 auto;
}

.venue-info h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 20px;
  text-align: center;
}

.venue-info > p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

.venue-details {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.venue-details h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.venue-details h3 i {
  color: var(--color-secondary);
}

.venue-details h4 {
  font-size: 16px;
  color: #0f172a;
  margin: 20px 0 8px 0;
  font-weight: 600;
}

.venue-details p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.venue-details ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.venue-details ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #475569;
}

.venue-details ul li::before {
  content: "\2022";
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: 8px;
}

.venue-details ul li strong {
  color: #0f172a;
}

@media (max-width: 768px) {
  .venue-info h2 {
    font-size: 26px;
  }
  .venue-info > p {
    font-size: 16px;
  }
  .venue-details {
    padding: 24px;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
  font-size: 24px;
  margin-bottom: 28px;
  color: #0f172a;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--color-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #0f172a;
}

.contact-details p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.contact-details a {
  color: var(--color-secondary);
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-social {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.contact-social h4 {
  margin-bottom: 16px;
  color: #0f172a;
  font-size: 16px;
}

.contact-social .social-links {
  display: flex;
  gap: 12px;
}

.contact-social .social-links a {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  transition: all 0.3s;
}

.contact-social .social-links a:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  transform: translateY(-2px);
}

.map-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.map-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #0f172a;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .content-wrapper {
    padding: 24px;
  }
}

/* ========== REGISTRATION CARDS ========== */
.registration-section {
  background: var(--bg-section);
}

.reg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reg-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.reg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.reg-card.featured {
  border-color: var(--color-secondary);
  position: relative;
}

.reg-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.reg-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-primary);
}

.reg-card.featured .reg-card-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
}

.reg-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.reg-card .dates {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.reg-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.reg-card .price-note {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.reg-card ul {
  text-align: left;
  margin-bottom: 24px;
}

.reg-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.reg-card ul li:last-child {
  border-bottom: none;
}

.reg-card ul li i {
  color: #10b981;
}

/* ========== CTA SECTION (Speakers page) ========== */
.speakers-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 80px 0;
  text-align: center;
  margin-bottom: 80px;
}

.speakers-cta h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .header-content {
    gap: 20px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-actions .btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero {
    min-height: 550px;
  }

  .hero-content {
    grid-template-columns: 1fr 380px;
    gap: 40px;
    min-height: 550px;
    padding: 50px 0;
  }

  .hero-main h1 {
    font-size: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 350px;
  }

  .dates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .speakers-section .speaker-image {
    width: 140px;
    height: 140px;
  }

  .reg-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-sidebar {
    max-width: 450px;
    margin: 0 auto;
  }

  .reg-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header-right {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .logo-text span {
    display: none;
  }

  .logo-text h1 {
    font-size: 18px;
  }

  .logo-image {
    height: 50px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 40px 0 60px;
    gap: 30px;
  }

  .hero-main h1 {
    font-size: 32px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hero-meta-item .info {
    text-align: left;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .slider-arrow {
    display: none;
  }

  /* Hero Download Buttons - Mobile */
  .hero-sidebar .download-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-sidebar .download-buttons .download-btn {
    padding: 12px 14px !important;
  }

  .hero-sidebar .download-buttons .download-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 16px !important;
  }

  /* Organizers - Mobile */
  .organizer-list {
    gap: 20px;
  }

  .organizer-logo {
    width: 70px;
    height: 70px;
  }

  .organizer-logo i {
    font-size: 26px;
  }

  .organizer-info h4 {
    font-size: 14px;
  }

  .organizer-info p {
    font-size: 11px;
  }

  .organizers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .countdown-content {
    flex-direction: column;
    gap: 20px;
  }

  .countdown-number {
    font-size: 36px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .dates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .speakers-section .speaker-image {
    width: 100px;
    height: 100px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom a {
    margin: 0 8px;
  }

  .page-header h1 {
    font-size: 32px;
  }
}

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

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .logo-text h1 {
    font-size: 16px;
    white-space: nowrap;
  }

  .logo-text span {
    display: none;
  }

  .logo-image {
    height: 45px;
  }

  .hero-main h1 {
    font-size: 26px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

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

  .speakers-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .speakers-section .speaker-image {
    width: 120px;
    height: 120px;
  }

  .countdown-number {
    font-size: 30px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .page-header h1 {
    font-size: 26px;
  }
}

/* =====================
   ENHANCED MOBILE RESPONSIVE FIXES
   ===================== */

/* Organizers Strip - Tablet */
@media (max-width: 900px) {
  .organizers-strip {
    padding: 40px 0;
  }

  .organizers-grid {
    gap: 40px;
  }

  .organizer-list {
    gap: 24px;
  }

  .organizer-logo {
    width: 70px;
    height: 70px;
  }

  .organizer-logo img {
    width: 50px;
    height: 50px;
  }
}

/* Organizers Strip - Mobile */
@media (max-width: 600px) {
  .organizers-strip {
    padding: 30px 0;
  }

  .organizers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .organizer-group-title {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .organizer-list {
    gap: 16px;
    flex-direction: row;
    justify-content: center;
  }

  .organizer-card {
    gap: 8px;
  }

  .organizer-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .organizer-logo img {
    width: 40px;
    height: 40px;
  }

  .organizer-logo i {
    font-size: 22px;
  }

  .organizer-info h4 {
    font-size: 12px;
  }

  .organizer-info p {
    font-size: 10px;
    line-height: 1.3;
  }
}

/* Countdown Section - Mobile Improvements */
@media (max-width: 600px) {
  .countdown-section {
    padding: 30px 0;
  }

  .countdown-label {
    font-size: 12px !important;
    margin-bottom: 16px !important;
  }

  .countdown-timer {
    gap: 8px !important;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number {
    font-size: 28px !important;
  }

  .countdown-unit {
    font-size: 10px !important;
  }

  .countdown-separator {
    font-size: 20px !important;
    margin: 0 2px !important;
  }
}

@media (max-width: 400px) {
  .countdown-number {
    font-size: 22px !important;
  }

  .countdown-item {
    min-width: 50px;
  }

  .countdown-separator {
    font-size: 16px !important;
  }
}

/* About Section - Mobile Improvements */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 250px;
    border-radius: 16px;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-items: center;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
  }

  .about-feature i {
    font-size: 24px;
  }

  .about-feature span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .about-image img {
    height: 200px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about-feature {
    padding: 10px 8px;
  }

  .about-feature i {
    font-size: 20px;
  }

  .about-feature span {
    font-size: 11px;
  }
}

/* Dates Section - Mobile Improvements */
@media (max-width: 600px) {
  .dates-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }

  .date-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    text-align: left;
  }

  .date-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
  }

  .date-card-icon .month {
    font-size: 10px;
  }

  .date-card-icon .day {
    font-size: 20px;
  }

  .date-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .date-card p {
    font-size: 12px;
    display: none;
  }
}

/* Speakers Section - Mobile Improvements */
@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .speaker-card {
    padding: 16px 12px;
  }

  .speaker-card .speaker-image,
  .speakers-section .speaker-image {
    width: 80px !important;
    height: 80px !important;
  }

  .speaker-card h4 {
    font-size: 13px;
    margin-top: 12px;
  }

  .speaker-card .designation {
    font-size: 11px;
  }

  .speaker-card .organization {
    font-size: 10px;
  }

  .speaker-badge {
    font-size: 9px;
    padding: 4px 10px;
  }
}

@media (max-width: 400px) {
  .speakers-grid {
    grid-template-columns: 1fr;
    max-width: 220px;
    margin: 0 auto;
  }

  .speaker-card .speaker-image,
  .speakers-section .speaker-image {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Hero Notice Board - Mobile Improvements */
@media (max-width: 768px) {
  .notice-board {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 0 16px;
  }

  .notice-board-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a73 100%);
    padding: 14px 16px;
    margin-bottom: 0;
  }

  .notice-board-header i {
    font-size: 16px;
  }

  .notice-board-header h3 {
    font-size: 15px;
    font-weight: 600;
  }

  .notice-board-header span {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
  }

  .notice-list {
    padding: 8px 0;
  }

  .notice-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
  }

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

  .notice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
  }

  .notice-item.urgent .notice-dot {
    background: #ef4444;
  }

  .notice-title {
    font-size: 14px;
    color: #1e293b;
    flex: 1;
    line-height: 1.4;
  }

  .notice-date {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
  }

  .notice-board-footer {
    padding: 14px 16px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
  }

  .notice-board-footer a {
    font-size: 13px;
    font-weight: 600;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .hero-sidebar {
    width: 100%;
    max-width: 100%;
  }

  /* Download Buttons Mobile */
  .hero-sidebar .download-buttons {
    flex-direction: column;
    gap: 10px;
    margin: 16px;
  }

  .hero-sidebar .download-btn {
    background: white;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
  }

  .hero-sidebar .download-btn .download-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .hero-sidebar .download-btn .download-icon.pdf-icon,
  .hero-sidebar .download-btn:first-child .download-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
  }

  .hero-sidebar .download-btn .download-icon.image-icon,
  .hero-sidebar .download-btn:last-child .download-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
  }

  .hero-sidebar .download-btn .download-info {
    flex: 1;
  }

  .hero-sidebar .download-btn .download-info span {
    display: block;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .hero-sidebar .download-btn .download-info strong {
    display: block;
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
  }

  .hero-sidebar .download-btn .download-arrow {
    color: #94a3b8;
    font-size: 16px;
  }
}

/* CTA Section - Mobile Improvements */
@media (max-width: 600px) {
  .cta-section {
    padding: 30px 16px;
    margin: 0 12px 40px;
    border-radius: 16px;
  }

  .cta-section h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .cta-section p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Section Headers - Mobile */
@media (max-width: 600px) {
  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 13px;
  }

  .section-tag {
    font-size: 11px;
    padding: 5px 12px;
  }
}

/* General Mobile Spacing */
@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 12px;
  }
}

/* =====================
   Registration Packages Section
   ===================== */
.packages-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.package-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border-color: #6366f1;
  transform: scale(1.05);
  z-index: 1;
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.package-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.package-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.package-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: #6366f1;
  line-height: 1.2;
}

.package-price .amount {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

.package-duration {
  font-size: 14px;
  color: #64748b;
}

.package-features {
  flex: 1;
  margin-bottom: 24px;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li i {
  width: 20px;
  text-align: center;
}

.package-features li i.fa-check {
  color: #10b981;
}

.package-features li i.fa-times {
  color: var(--color-danger);
}

.package-features li i.fa-info-circle {
  color: #6366f1;
}

.package-features li.disabled {
  color: #94a3b8;
}

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

@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== DOWNLOADS PAGE ========== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.download-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--color-secondary);
}

.download-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  flex-shrink: 0;
}

.download-icon.pdf {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.download-icon.doc {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.download-icon.ppt {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.download-icon.img {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.download-icon.other {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.download-content {
  flex: 1;
  min-width: 0;
}

.download-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.download-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 8px;
  line-height: 1.5;
}

.download-meta {
  font-size: 12px;
  color: #94a3b8;
}

.download-meta i {
  margin-right: 4px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    flex-direction: column;
    text-align: center;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== FAQ PAGE ========== */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-section);
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  background: var(--bg-section);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: var(--color-primary);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer-content {
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
}

.faq-category-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid #1e40af;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* ========== GALLERY PAGE ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 24px;
  color: white;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========== NOTICES PAGE ========== */
.notices-section {
  max-width: 900px;
  margin: 0 auto;
}

.notices-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}

.notice-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.notice-card.urgent {
  border-left-color: var(--color-danger);
}

.notice-card.important {
  border-left-color: var(--color-warning);
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.notice-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  flex: 1;
}

.notice-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.notice-badge.urgent {
  background: #fef2f2;
  color: var(--color-danger);
}

.notice-badge.important {
  background: #fffbeb;
  color: var(--color-warning);
}

.notice-badge.normal {
  background: #f0f9ff;
  color: var(--color-secondary);
}

.notice-content {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.notice-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.notice-date {
  font-size: 13px;
  color: #94a3b8;
}

.notice-date i {
  margin-right: 6px;
}

.notice-attachment {
  font-size: 13px;
  color: var(--color-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.notice-attachment:hover {
  color: var(--color-primary);
}

.notice-attachment i {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .notice-card {
    padding: 20px;
  }

  .notice-header {
    flex-direction: column;
    gap: 12px;
  }

  .notice-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ========== SPONSORS PAGE ========== */
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.sponsor-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  min-width: 200px;
  min-height: 120px;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sponsor-card img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

.sponsor-card.platinum {
  min-width: 300px;
  min-height: 180px;
  border-color: #60a5fa;
  border-width: 2px;
}

.sponsor-card.platinum img {
  max-width: 220px;
  max-height: 110px;
}

.sponsor-card.gold {
  min-width: 260px;
  min-height: 150px;
  border-color: #fcd34d;
}

.sponsor-card.gold img {
  max-width: 180px;
  max-height: 90px;
}

.sponsor-card.silver {
  border-color: #d1d5db;
}

.sponsor-card.bronze {
  border-color: #d97706;
}

.sponsor-name {
  font-size: 18px;
  font-weight: 600;
  color: #334155;
}

@media (max-width: 768px) {
  .sponsors-grid {
    gap: 20px;
  }

  .sponsor-card {
    min-width: 160px;
    min-height: 100px;
    padding: 20px;
  }

  .sponsor-card.platinum {
    min-width: 100%;
    min-height: 140px;
  }

  .sponsor-card.gold {
    min-width: 100%;
    min-height: 120px;
  }
}

/* ========== IMPORTANT DATES / TIMELINE ========== */
.timeline-section {
  max-width: 800px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #3b82f6, #60a5fa);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -80px;
  top: 0;
  width: 60px;
  display: flex;
  justify-content: center;
}

.timeline-date-badge {
  background: var(--bg-card);
  border: 3px solid #3b82f6;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.timeline-date-badge .month {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-date-badge .day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.timeline-date-badge .year {
  display: block;
  font-size: 11px;
  color: #64748b;
}

.timeline-content {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--color-secondary);
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.timeline-range {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
  color: #94a3b8;
}

.timeline-range i {
  margin-right: 6px;
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 0;
    padding-top: 20px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-marker {
    position: relative;
    left: auto;
    width: auto;
    margin-bottom: 16px;
  }

  .timeline-date-badge {
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 10px 16px;
  }

  .timeline-date-badge .month,
  .timeline-date-badge .day,
  .timeline-date-badge .year {
    display: inline;
  }

  .timeline-date-badge .day {
    font-size: 18px;
  }
}

/* ========== ABOUT PAGE ========== */
.about-intro {
  background: var(--bg-card);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-intro-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-intro-content p {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-intro-content p strong {
  color: #1e293b;
}

/* Conference Details */
.conference-details {
  background: var(--bg-section);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.detail-card {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--color-secondary);
}

.detail-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-primary);
}

.detail-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1e293b;
}

.detail-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Objectives Section */
.objectives-section {
  background: var(--bg-card);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.objective-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-section);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.objective-card:hover {
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateX(5px);
}

.objective-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.objective-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1e293b;
}

.objective-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* Themes Section */
.themes-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
}

.themes-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.themes-section .section-header h2,
.themes-section .section-header p {
  color: white;
}

.themes-section .section-tag {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.theme-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.theme-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
}

.theme-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}

.theme-card h4 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.theme-card p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.7;
}

/* Enhanced Theme Cards */
.themes-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.theme-card-enhanced {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.theme-card-enhanced:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 40px rgba(59, 130, 246, 0.2);
}

.theme-card-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  transition: all 0.3s ease;
}

.theme-card-enhanced:hover .theme-card-number {
  color: rgba(96, 165, 250, 0.15);
  transform: scale(1.1);
}

.theme-card-content {
  position: relative;
  z-index: 2;
}

.theme-card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.theme-card-enhanced:hover .theme-card-icon-wrapper {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.theme-card-enhanced h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.theme-card-enhanced p {
  font-size: 14px;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.7;
  margin: 0;
}

.theme-card-glow {
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.theme-card-enhanced:hover .theme-card-glow {
  opacity: 1;
}

/* Theme Cards Responsive */
@media (max-width: 1024px) {
  .themes-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .themes-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .theme-card-enhanced {
    padding: 25px 20px;
  }

  .theme-card-number {
    font-size: 36px;
  }

  .theme-card-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Organizers About Section */
.organizers-about-section {
  background: var(--bg-section);
}

.organizers-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.organizer-about-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.organizer-about-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.organizer-about-logo {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.organizer-about-header-info h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}

.organizer-about-header-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.organizer-about-body {
  padding: 28px;
}

.organizer-about-body p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
}

.organizer-about-body p:last-child {
  margin-bottom: 0;
}

/* Venue Preview Section */
.venue-preview-section {
  background: var(--bg-card);
}

.venue-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.venue-preview-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.venue-preview-info > p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.8;
}

.venue-preview-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.venue-preview-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.venue-preview-item > i {
  width: 44px;
  height: 44px;
  background: #dbeafe;
  color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.venue-preview-item .info h4 {
  font-size: 15px;
  margin-bottom: 2px;
  color: #1e293b;
}

.venue-preview-item .info p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.venue-preview-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.venue-preview-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-intro-grid,
  .venue-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .organizers-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .about-intro-image img {
    height: 300px;
  }

  .about-intro-content h2 {
    font-size: 28px;
  }

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

  .detail-card {
    padding: 24px;
  }

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

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

  .venue-preview-map iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-intro-content h2 {
    font-size: 24px;
  }

  .about-intro-image img {
    height: 250px;
  }

  .objective-card {
    flex-direction: column;
    text-align: center;
  }

  .objective-number {
    margin: 0 auto;
  }

  .venue-preview-info h3 {
    font-size: 24px;
  }
}

/* ========================================
   CALL FOR PAPERS PAGE
   ======================================== */

/* Submission Status Badge */
.submission-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.submission-status.open {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.submission-status.closed {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.submission-status i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Intro Section */
.intro-section {
  background: var(--bg-card);
}

.intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.intro-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0f172a;
}

.intro-content p {
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.8;
}

.intro-content p strong {
  color: #1e293b;
}

.intro-buttons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Deadline Card */
.deadline-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 20px;
  padding: 28px;
  border-left: 4px solid #f59e0b;
}

.deadline-card h3 {
  font-size: 16px;
  color: #92400e;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deadline-card h3 i {
  font-size: 20px;
}

.deadline-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(146, 64, 14, 0.15);
}

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

.deadline-item span {
  font-size: 14px;
  color: #78350f;
}

.deadline-item strong {
  font-size: 14px;
  color: #92400e;
  font-weight: 700;
}

.deadline-item.highlight {
  background: rgba(239, 68, 68, 0.15);
  margin: 0 -12px;
  padding: 12px;
  border-radius: 8px;
  border-bottom: none;
}

.deadline-item.highlight strong {
  color: #dc2626;
}

/* Submission Types */
.submission-types {
  background: var(--bg-card);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.type-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-section);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.type-card:hover {
  border-color: var(--color-secondary);
  background: var(--bg-card);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.type-card.featured {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
}

.type-card.featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.type-card.featured h3,
.type-card.featured p {
  color: white;
}

.type-card.featured .type-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}

.type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-primary);
}

.type-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.type-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.7;
}

.type-card ul {
  text-align: left;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.type-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #475569;
}

.type-card.featured ul li {
  color: rgba(255,255,255,0.9);
}

.type-card ul li i {
  color: #10b981;
  font-size: 12px;
}

.type-card.featured ul li i {
  color: #34d399;
}

/* Awards Section */
.awards-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  position: relative;
}

.awards-section .section-header h2,
.awards-section .section-header p {
  color: white;
}

.awards-section .section-tag {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.award-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
}

.award-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.award-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  flex-shrink: 0;
}

.award-content h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.award-content p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.7;
}

.award-prize {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* Guidelines Preview */
.guidelines-preview {
  background: var(--bg-section);
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guideline-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.guideline-card i {
  width: 50px;
  height: 50px;
  background: #dbeafe;
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.guideline-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #0f172a;
}

.guideline-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.guidelines-cta {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section - CFP Page Variant */
.cfp-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 80px;
}

.cfp-cta h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 12px;
}

.cfp-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.cfp-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cfp-cta .btn-primary {
  background: var(--bg-card);
  color: var(--color-primary);
}

.cfp-cta .btn-primary:hover {
  background: var(--bg-section);
}

.cfp-cta .btn-secondary {
  border-color: white;
  color: white;
}

.cfp-cta .btn-secondary:hover {
  background: var(--bg-card);
  color: var(--color-primary);
}

/* CFP Page Responsive */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .types-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .intro-content h2 {
    font-size: 26px;
  }

  .award-card {
    flex-direction: column;
    text-align: center;
  }

  .award-icon {
    margin: 0 auto;
  }

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

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

  .cfp-cta h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .deadline-card {
    padding: 20px;
  }

  .type-card {
    padding: 28px 20px;
  }
}

/* ========== LOGIN PAGE (Split Screen) ========== */
.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--bg-section);
  min-height: calc(100vh - 180px);
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  width: 100%;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Left Side - Branding */
.login-branding {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-branding::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=800') center/cover;
  opacity: 0.1;
}

.branding-content {
  position: relative;
  z-index: 1;
}

.branding-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.branding-content h2 {
  font-size: 28px;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.branding-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.branding-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.branding-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.branding-feature i {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #60a5fa;
}

.branding-feature span {
  font-size: 14px;
  opacity: 0.9;
}

/* Right Side - Login Form */
.login-form-section {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-section .form-header {
  margin-bottom: 32px;
  background: none;
  padding: 0;
  border: none;
  text-align: left;
}

.login-form-section .form-header h3 {
  font-size: 26px;
  color: #0f172a;
  margin-bottom: 8px;
}

.login-form-section .form-header p {
  color: #64748b;
  font-size: 15px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-form .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.login-form .input-wrapper {
  position: relative;
}

.login-form .input-wrapper > i:first-child {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
}

.login-form .input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-section);
  transition: all 0.2s;
  box-sizing: border-box;
}

.login-form .input-wrapper input[type="password"] {
  padding-right: 48px;
}

.login-form .input-wrapper input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-toggle {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: 44px;
  background: transparent;
  border: none;
  border-radius: 0 9px 9px 0;
  color: #94a3b8;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: var(--color-primary);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.remember-me span {
  font-size: 14px;
  color: #64748b;
}

.forgot-password {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.register-prompt {
  text-align: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}

.register-prompt p {
  color: #64748b;
  font-size: 14px;
}

.register-prompt a {
  color: var(--color-primary);
  font-weight: 600;
}

.register-prompt a:hover {
  text-decoration: underline;
}

.login-footer {
  background: #0f172a;
  padding: 20px 0;
  text-align: center;
}

.login-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.login-footer a {
  color: #60a5fa;
}

/* ========== REGISTRATION PAGE ========== */
.registration-section {
  padding: 60px 0 80px;
  background: var(--bg-section);
}

.reg-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* Form Container */
.form-container {
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.form-content {
  padding: 40px;
}

.form-section {
  margin-bottom: 32px;
}

.form-section:last-child {
  margin-bottom: 0;
}

.form-section-title {
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.form-section-title i {
  color: var(--color-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.form-label .required {
  color: var(--color-danger);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: var(--bg-section);
  color: #334155;
  transition: all 0.2s;
  font-family: inherit;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input.error {
  border-color: var(--color-danger);
  background: #fef2f2;
}

.form-error {
  color: var(--color-danger);
  font-size: 12px;
  margin-top: 4px;
}

.form-hint {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

/* Input with icon */
.input-with-icon {
  position: relative;
}

.input-with-icon i:first-child {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.input-with-icon .form-input {
  padding-left: 46px;
}

.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
}

.toggle-password:hover {
  color: #64748b;
}

/* Password Strength */
.password-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.strength-bar {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
}

.strength-bar.active {
  background: #ef4444;
}

.strength-bar.medium {
  background: #f59e0b;
}

.strength-bar.strong {
  background: #10b981;
}

/* OTP Input */
.otp-group {
  text-align: center;
}

.otp-input {
  text-align: center;
  font-size: 28px;
  letter-spacing: 12px;
  font-weight: 600;
  padding: 16px 24px;
}

/* Checkbox */
.terms-checkbox,
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-item input {
  display: none;
}

.checkbox-mark {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.checkbox-mark i {
  color: white;
  font-size: 12px;
  opacity: 0;
}

.checkbox-item input:checked + .checkbox-mark {
  background: #3b82f6;
  border-color: var(--color-secondary);
}

.checkbox-item input:checked + .checkbox-mark i {
  opacity: 1;
}

.checkbox-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--color-primary);
  font-weight: 500;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Form Row Inline */
.form-row-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.forgot-link {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  margin-top: 24px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 24px 0;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}

.form-divider span {
  background: var(--bg-card);
  padding: 0 16px;
  position: relative;
  color: #94a3b8;
  font-size: 14px;
}

.form-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.form-footer p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.form-footer a {
  color: var(--color-primary);
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Resend Section */
.resend-section {
  text-align: center;
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-section);
  border-radius: 12px;
}

.resend-section p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
}

.resend-form {
  display: inline;
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Alert Messages */
.messages-container {
  margin-bottom: 24px;
}

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.alert:last-child {
  margin-bottom: 0;
}

.alert i {
  font-size: 18px;
  flex-shrink: 0;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-info,
.alert-warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* Registration Sidebar */
.reg-sidebar {
  position: sticky;
  top: 100px;
}

.reg-sidebar .sidebar-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.reg-sidebar .sidebar-card.info-card .card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 20px;
  color: white;
}

.reg-sidebar .sidebar-card.info-card .card-header h3 {
  font-size: 16px;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-sidebar .sidebar-card .card-body {
  padding: 20px;
}

.reg-sidebar .sidebar-card h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reg-sidebar .sidebar-card h4 i {
  color: var(--color-secondary);
}

.reg-sidebar .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reg-sidebar .benefits-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
}

.reg-sidebar .benefits-list li:last-child {
  border-bottom: none;
}

.reg-sidebar .benefits-list li i {
  color: #10b981;
  font-size: 14px;
}

.date-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.date-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: var(--bg-section);
  border-radius: 8px;
}

.date-label {
  font-size: 13px;
  color: #64748b;
}

.date-value {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.help-text {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Password Toggle Inline */
.input-wrapper {
  position: relative;
}

.password-toggle-inline {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 5px;
  font-size: 16px;
}

.password-toggle-inline:hover {
  color: var(--color-primary);
}

/* Terms Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.checkbox-label .checkbox-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.checkbox-label .checkbox-text a {
  color: var(--color-primary);
  font-weight: 500;
}

/* Form Footer Text */
.form-footer-text {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.form-footer-text p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.form-footer-text a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Strength bar colors */
.strength-bar.weak {
  background: #ef4444;
}

.strength-bar.medium {
  background: #f59e0b;
}

.strength-bar.strong {
  background: #10b981;
}

/* Auth Sidebar */
.auth-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 20px;
  color: white;
}

.sidebar-card-header h3 {
  font-size: 16px;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card-body {
  padding: 20px;
}

.sidebar-card-body h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: #0f172a;
}

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

.benefits-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li i {
  color: #10b981;
  font-size: 14px;
}

.help-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-section);
  border-radius: 10px;
  font-size: 14px;
  color: #475569;
  transition: all 0.2s;
}

.help-link:hover {
  background: var(--bg-section);
  color: var(--color-primary);
}

.help-link i {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

/* ========== DASHBOARD ========== */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dashboard-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
}

.dashboard-card .card-header {
  background: var(--bg-section);
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.dashboard-card .card-header h3 {
  font-size: 15px;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-card .card-header h3 i {
  color: var(--color-secondary);
}

.dashboard-card .card-body {
  padding: 24px;
}

/* Profile Info */
.profile-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.profile-details h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
}

.profile-details p {
  font-size: 14px;
  color: #64748b;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-details p i {
  color: #94a3b8;
  width: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
}

.status-badge.verified {
  background: #ecfdf5;
  color: #065f46;
}

.status-badge.pending {
  background: #fffbeb;
  color: #92400e;
}

/* Status Placeholder */
.status-placeholder {
  text-align: center;
  padding: 20px;
}

.status-placeholder i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.status-placeholder h4 {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 8px;
}

.status-placeholder p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

/* Quick Links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-section);
  border-radius: 10px;
  font-size: 14px;
  color: #475569;
  transition: all 0.2s;
}

.quick-link:hover {
  background: #eff6ff;
  color: var(--color-primary);
}

.quick-link i {
  color: var(--color-secondary);
}

/* Dashboard Actions */
.dashboard-actions {
  margin-top: 32px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sidebar-card {
    margin-bottom: 0;
  }

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

@media (max-width: 768px) {
  .auth-section {
    padding: 40px 0 60px;
  }

  .form-content {
    padding: 24px;
  }

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

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

  .auth-sidebar {
    grid-template-columns: 1fr;
  }

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

  .profile-info {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .form-header {
    padding: 24px;
  }

  .form-content {
    padding: 20px;
  }

  .otp-input {
    font-size: 22px;
    letter-spacing: 8px;
  }
}

/* ========== LOGIN PAGE RESPONSIVE ========== */
@media (max-width: 900px) {
  .login-wrapper {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .login-branding {
    display: none;
  }
  .login-form-section {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .login-main {
    padding: 40px 20px;
  }
  .login-form-section {
    padding: 40px 30px;
  }
  .login-form-section .form-header h3 {
    font-size: 22px;
  }
  .form-options {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .login-form-section {
    padding: 30px 20px;
  }
}

/* ========== REGISTRATION PAGE RESPONSIVE ========== */
@media (max-width: 1024px) {
  .reg-layout {
    grid-template-columns: 1fr;
  }
  .reg-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    order: -1;
    margin-bottom: 24px;
  }
  .reg-sidebar .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 40px 0 60px;
  }
  .form-content {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .reg-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .form-content {
    padding: 20px;
  }
}

/* ========== MULTI-STEP REGISTRATION FORM ========== */

/* Progress Steps */
.form-progress {
  display: flex;
  background: var(--bg-section);
  border-bottom: 1px solid #e2e8f0;
}

.progress-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.progress-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
}

.progress-step.active {
  color: var(--color-primary);
  background: var(--bg-card);
}

.progress-step.active::after {
  background: var(--color-primary);
}

.progress-step.completed {
  color: #10b981;
}

.progress-step.completed::after {
  background: #10b981;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.progress-step.active .step-number {
  background: var(--color-primary);
  color: white;
}

.progress-step.completed .step-number {
  background: #10b981;
  color: white;
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  padding: 20px;
  background: var(--bg-section);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.category-card:hover {
  border-color: #cbd5e1;
}

.category-card.selected {
  border-color: var(--color-secondary);
  background: #eff6ff;
}

.category-card input {
  display: none;
}

.category-card i {
  font-size: 28px;
  color: #64748b;
  margin-bottom: 12px;
}

.category-card.selected i {
  color: var(--color-secondary);
}

.category-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #1e293b;
}

.category-card p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* Option Items (Radio/Checkbox Groups) */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-section);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.option-item:hover {
  border-color: #cbd5e1;
  background: var(--bg-section);
}

.option-item.selected {
  border-color: var(--color-secondary);
  background: #eff6ff;
}

.option-item input {
  display: none;
}

.option-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.option-item.selected .option-radio {
  border-color: var(--color-secondary);
  background: #3b82f6;
}

.option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--bg-card);
  border-radius: 50%;
  opacity: 0;
}

.option-item.selected .option-radio::after {
  opacity: 1;
}

.option-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.option-item.selected .option-checkbox {
  border-color: var(--color-secondary);
  background: #3b82f6;
}

.option-checkbox i {
  color: white;
  font-size: 12px;
  opacity: 0;
}

.option-item.selected .option-checkbox i {
  opacity: 1;
}

.option-content {
  flex: 1;
}

.option-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}

.option-content p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.option-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Info Box */
.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-primary);
}

.info-box i {
  font-size: 16px;
}

/* Review Summary */
.review-summary {
  display: grid;
  gap: 20px;
}

.review-card {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 20px;
}

.review-card h4 {
  font-size: 15px;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card h4 i {
  color: var(--color-secondary);
}

.review-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.review-item.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid #e2e8f0;
  border-bottom: none;
}

.review-item .review-label {
  color: #64748b;
  font-size: 14px;
}

.review-item .review-value {
  font-weight: 600;
  color: #1e293b;
}

.review-item.total .review-value {
  color: var(--color-primary);
  font-size: 20px;
}

/* Sidebar Card Header */
.sidebar-card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 20px;
  color: white;
}

.sidebar-card-header h3 {
  font-size: 16px;
  color: white;
  margin-bottom: 4px;
}

.sidebar-card-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.sidebar-card-body {
  padding: 20px;
}

/* Summary Items */
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

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

.summary-item .label {
  color: #64748b;
}

.summary-item .value {
  font-weight: 600;
  color: #1e293b;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid #e2e8f0;
}

.summary-total .label {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.summary-total .value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Help Links */
.help-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-section);
  border-radius: 10px;
  font-size: 14px;
  color: #475569;
  transition: all 0.2s;
}

.help-link:hover {
  background: var(--bg-section);
  color: var(--color-primary);
}

.help-link i {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

/* ========== DASHBOARD STYLES ========== */

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dashboard-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.dashboard-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-section);
  border-bottom: 1px solid #e2e8f0;
}

.dashboard-card .card-header h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.dashboard-card .card-header h3 i {
  color: var(--color-secondary);
}

.dashboard-card .card-body {
  padding: 20px;
}

.header-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.header-badge.success {
  background: #d1fae5;
  color: #059669;
}

.header-badge.warning {
  background: #fef3c7;
  color: #d97706;
}

.header-badge.info {
  background: #dbeafe;
  color: #2563eb;
}

.header-badge.danger {
  background: #fee2e2;
  color: #dc2626;
}

/* Profile Info */
.profile-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-avatar span {
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.profile-details h4 {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 4px;
}

.profile-details p {
  font-size: 13px;
  color: #64748b;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-details p i {
  color: #94a3b8;
  width: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

.status-badge.verified {
  background: #d1fae5;
  color: #059669;
}

.status-badge.pending {
  background: #fef3c7;
  color: #d97706;
}

/* Status Placeholder */
.status-placeholder {
  text-align: center;
  padding: 20px 10px;
}

.status-placeholder i {
  font-size: 40px;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.status-placeholder h4 {
  font-size: 16px;
  color: #334155;
  margin-bottom: 8px;
}

.status-placeholder p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
}

.status-placeholder.muted i {
  color: #94a3b8;
}

/* Registration Details */
.registration-details {
  padding: 4px 0;
}

.reg-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reg-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-info-item .label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reg-info-item .value {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.reg-info-item .value.fee {
  color: var(--color-primary);
  font-size: 16px;
}

.competition-badges {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.badge-info {
  background: #dbeafe;
  color: #2563eb;
}

/* Payment Details */
.payment-details {
  padding: 4px 0;
}

.payment-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.payment-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-info-item .label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
}

.payment-info-item .value {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.payment-status-msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  font-size: 13px;
}

.payment-status-msg.pending {
  background: #fef3c7;
  color: #92400e;
}

.payment-status-msg.rejected {
  background: #fee2e2;
  color: #991b1b;
}

.payment-status-msg.verified {
  background: #d1fae5;
  color: #065f46;
}

.payment-status-msg i {
  font-size: 18px;
  margin-top: 2px;
}

.payment-status-msg p {
  margin: 0;
  line-height: 1.5;
}

.payment-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-section);
  border-radius: 8px;
}

.payment-amount .label {
  font-size: 14px;
  color: #64748b;
}

.payment-amount .amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Gate Pass */
.gate-pass-ready {
  text-align: center;
  padding: 10px;
}

.gate-pass-preview {
  width: 80px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.gate-pass-preview i {
  font-size: 36px;
  color: white;
}

.gate-pass-ready h4 {
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 8px;
}

.gate-pass-ready p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
}

/* Quick Links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--bg-section);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s;
}

.quick-link:hover {
  background: #eff6ff;
  color: var(--color-primary);
}

.quick-link i {
  color: var(--color-secondary);
}

/* Dashboard Actions */
.dashboard-actions {
  text-align: center;
  margin-top: 32px;
}

/* ========== RESPONSIVE STYLES FOR MULTI-STEP FORM ========== */

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .form-progress {
    overflow-x: auto;
  }

  .progress-step {
    padding: 16px 12px;
    white-space: nowrap;
    min-width: 100px;
  }

  .progress-step span:not(.step-number) {
    display: none;
  }

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

  .option-item {
    flex-direction: column;
    text-align: center;
    padding: 14px;
  }

  .option-radio, .option-checkbox {
    margin: 0 auto;
  }

  .option-price {
    margin-top: 8px;
  }

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

  .reg-info-grid {
    grid-template-columns: 1fr;
  }

  .payment-info {
    grid-template-columns: 1fr;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .profile-info {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== NEW DASHBOARD LAYOUT ========== */

/* Dashboard Sidebar */
.dash-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 240px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  padding: 0;
  z-index: 1000;
  overflow-y: auto;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dash-sidebar-header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.dash-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.dash-sidebar-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 700;
}

.dash-sidebar-logo-text {
  color: #f8fafc;
}

.dash-sidebar-logo-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.dash-sidebar-logo-text span {
  font-size: 10px;
  color: #94a3b8;
  display: block;
}

.dash-sidebar-nav {
  padding: 12px 10px;
  flex: 1;
  overflow-y: auto;
}

.dash-nav-section {
  margin-bottom: 16px;
}

.dash-nav-section-title {
  color: #64748b;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 12px;
  margin-bottom: 6px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.dash-nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
}

.dash-nav-item.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
}

.dash-nav-item i {
  width: 18px;
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
}

.dash-nav-item:hover i,
.dash-nav-item.active i {
  color: inherit;
}

.dash-nav-item span {
  font-size: 13px;
  font-weight: 500;
}

.dash-nav-badge {
  margin-left: auto;
  background: #ef4444;
  color: white;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 8px;
}

.dash-nav-badge.success {
  background: #22c55e;
}

.dash-nav-badge.warning {
  background: #f59e0b;
}

.dash-sidebar-footer {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.dash-back-to-site {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dash-back-to-site:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
}

.dash-logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: #f87171;
  background: rgba(239, 68, 68, 0.1);
  border: none;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dash-logout-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.dash-back-to-site:hover {
  color: white;
}

/* Dashboard Main Wrapper */
.dash-main-wrapper {
  margin-left: 240px;
  min-height: 100vh;
  background: var(--bg-section);
}

/* Dashboard Top Header */
.dash-top-header {
  background: var(--bg-card);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.dash-header-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

.dash-header-left p {
  color: #64748b;
  font-size: 12px;
  margin-top: 2px;
}

.dash-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-header-search {
  position: relative;
}

.dash-header-search input {
  width: 250px;
  padding: 10px 15px 10px 40px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.dash-header-search input:focus {
  outline: none;
  border-color: #1e3a5f;
}

.dash-header-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.dash-header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: var(--bg-section);
  color: #64748b;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.dash-icon-btn:hover {
  background: #e2e8f0;
  color: #1e3a5f;
}

.dash-notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
}

.dash-user-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.dash-user-dropdown:hover {
  background: var(--bg-section);
}

.dash-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e293b, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  font-weight: 600;
  font-size: 14px;
}

.dash-user-info {
  text-align: left;
}

.dash-user-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.dash-user-info span {
  font-size: 11px;
  color: #64748b;
}

/* Dashboard Content */
.dash-content {
  padding: 20px 24px;
}

/* Dashboard Messages/Alerts */
.dash-messages {
  margin-bottom: 25px;
}

.dash-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.dash-alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.dash-alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.dash-alert-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.dash-alert-info {
  background: #dbeafe;
  color: var(--color-primary);
  border: 1px solid #bfdbfe;
}

.dash-alert-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
}

.dash-alert-close:hover {
  opacity: 1;
}

/* Dashboard Stats Grid */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.dash-stat-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.dash-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dash-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.dash-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.dash-stat-icon.blue {
  background: rgba(30, 58, 95, 0.1);
  color: #1e3a5f;
}

.dash-stat-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.dash-stat-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.dash-stat-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.dash-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 5px;
}

.dash-stat-label {
  color: #64748b;
  font-size: 14px;
}

/* Dashboard Content Grid */
.dash-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

.dash-left-column,
.dash-right-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Dashboard Cards */
.dash-card {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.dash-card-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-card-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
}

.dash-link {
  color: #1e3a5f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.dash-link:hover {
  color: var(--color-warning);
}

.dash-card-body {
  padding: 25px;
}

/* Dashboard Status Badges */
.dash-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.dash-status-badge.success {
  background: #dcfce7;
  color: #16a34a;
}

.dash-status-badge.warning {
  background: #fef3c7;
  color: #d97706;
}

.dash-status-badge.info {
  background: #dbeafe;
  color: #2563eb;
}

.dash-status-badge.danger {
  background: #fee2e2;
  color: #dc2626;
}

/* Dashboard Detail Grid */
.dash-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.dash-detail-item {
  padding: 15px;
  background: var(--bg-section);
  border-radius: 10px;
}

.dash-detail-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-detail-value {
  font-size: 15px;
  color: #1e3a5f;
  font-weight: 600;
}

.dash-detail-value.mono {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 13px;
}

.dash-detail-value.dash-highlight {
  color: var(--color-primary);
}

/* Dashboard Info Badges */
.dash-badges-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.dash-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #dbeafe;
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Dashboard Info Box */
.dash-info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
}

.dash-info-box i {
  font-size: 18px;
  margin-top: 2px;
}

.dash-info-box.success {
  background: #dcfce7;
  color: #166534;
}

.dash-info-box.warning {
  background: #fef3c7;
  color: #92400e;
}

.dash-info-box.danger {
  background: #fee2e2;
  color: #991b1b;
}

/* Dashboard Empty State */
.dash-empty-state {
  text-align: center;
  padding: 40px 20px;
}

.dash-empty-state.muted {
  opacity: 0.7;
}

.dash-empty-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #94a3b8;
}

.dash-empty-icon.blue {
  background: rgba(30, 58, 95, 0.1);
  color: #1e3a5f;
}

.dash-empty-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.dash-empty-state h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.dash-empty-state p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Dashboard Payment Amount */
.dash-payment-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: var(--bg-section);
  border-radius: 10px;
}

.dash-payment-amount .label {
  color: #64748b;
  font-size: 14px;
}

.dash-payment-amount .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1e3a5f;
}

/* Payment Highlight Section */
.dash-payment-highlight {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 12px;
  margin-bottom: 20px;
}

.dash-payment-amount-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.dash-payment-amount-big .currency {
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
}

.dash-payment-amount-big .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1e3a5f;
}

.dash-payment-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Receipt Section */
.dash-receipt-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.dash-receipt-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-receipt-section h4 i {
  color: #22c55e;
}

.dash-receipt-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-section);
  border-radius: 10px;
}

.dash-receipt-image {
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  object-fit: contain;
}

.dash-receipt-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.dash-receipt-pdf i {
  font-size: 48px;
  color: var(--color-danger);
}

.dash-receipt-pdf span {
  font-size: 14px;
  color: #64748b;
}

.dash-btn-small {
  padding: 8px 16px !important;
  font-size: 13px !important;
}

/* Bank Details Card */
.dash-bank-card {
  border: 2px solid #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.dash-bank-card .dash-card-header h3 {
  color: var(--color-primary);
}

.dash-bank-card .dash-card-header h3 i {
  margin-right: 8px;
}

.dash-bank-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-bank-card .dash-card-body {
  padding: 20px;
}

.dash-bank-qr {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.dash-bank-qr img {
  max-width: 180px;
  border-radius: 8px;
}

.dash-bank-qr span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

.dash-bank-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  gap: 20px;
}

.dash-bank-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  min-width: 130px;
  flex-shrink: 0;
}

.dash-bank-value {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  text-align: right;
  flex: 1;
  word-break: break-all;
}

.dash-bank-value:empty::before {
  content: '-';
  color: #94a3b8;
}

.dash-bank-value.mono {
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  letter-spacing: 1px;
}

.dash-copy-btn {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-secondary);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 15px;
}

.dash-copy-btn:hover {
  background: #3b82f6;
  color: white;
  border-color: var(--color-secondary);
}

.dash-copy-btn i {
  font-size: 14px;
}

.dash-bank-instructions {
  padding: 16px 18px;
  background: #fefce8;
  border-radius: 10px;
  border: 1px solid #fef08a;
}

.dash-bank-instructions h4 {
  font-size: 14px;
  font-weight: 600;
  color: #854d0e;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-bank-instructions p {
  font-size: 13px;
  color: #713f12;
  margin: 0;
  line-height: 1.6;
}

.dash-bank-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #fef2f2, #fff1f2);
  border-radius: 10px;
  border: 1px solid #fecaca;
  border: 1px solid #fecaca;
}

.dash-bank-note i {
  color: #dc2626;
  font-size: 16px;
  margin-top: 2px;
}

.dash-bank-note span {
  font-size: 13px;
  color: #991b1b;
  line-height: 1.5;
}

.dash-btn-secondary {
  background: var(--bg-section);
  color: #475569;
  border: 1px solid #e2e8f0;
}

.dash-btn-secondary:hover {
  background: #e2e8f0;
}

/* Dashboard Profile Section */
.dash-profile-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dash-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e3a5f, #2d5a87);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.dash-profile-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #f1f5f9;
}

.dash-profile-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.dash-profile-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 6px;
}

.dash-profile-info p i {
  width: 16px;
  color: #94a3b8;
}

/* Dashboard Gate Pass States */
.dash-gate-pass-ready,
.dash-gate-pass-pending,
.dash-virtual-access,
.dash-gate-pass-unavailable {
  text-align: center;
  padding: 20px 0;
}

.dash-qr-preview {
  width: 100px;
  height: 100px;
  background: var(--bg-section);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 50px;
  color: #1e3a5f;
}

.dash-spinner-icon,
.dash-virtual-icon,
.dash-unavailable-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

.dash-spinner-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.dash-virtual-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.dash-unavailable-icon {
  background: var(--bg-section);
  color: #94a3b8;
}

.dash-gate-pass-ready h4,
.dash-gate-pass-pending h4,
.dash-virtual-access h4,
.dash-gate-pass-unavailable h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.dash-gate-pass-ready p,
.dash-gate-pass-pending p,
.dash-virtual-access p,
.dash-gate-pass-unavailable p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Dashboard Quick Actions */
.dash-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 15px;
  background: var(--bg-section);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dash-quick-action-btn:hover {
  border-color: #1e3a5f;
  background: var(--bg-card);
}

.dash-quick-action-btn i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #1e3a5f, #2d5a87);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.dash-quick-action-btn span {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

/* Dashboard Deadlines */
.dash-deadline-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-section);
  border-radius: 12px;
  margin-bottom: 12px;
}

.dash-deadline-item:last-child {
  margin-bottom: 0;
}

.dash-deadline-item.urgent {
  border-left: 3px solid #ef4444;
}

.dash-deadline-item.soon {
  border-left: 3px solid #f59e0b;
}

.dash-deadline-date {
  width: 55px;
  height: 55px;
  background: var(--bg-card);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.dash-deadline-date .day {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1;
}

.dash-deadline-date .month {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-warning);
  text-transform: uppercase;
}

.dash-deadline-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 3px;
}

.dash-deadline-info p {
  font-size: 12px;
  color: #64748b;
}

/* Dashboard Buttons */
.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.dash-btn-primary {
  background: linear-gradient(135deg, #1e3a5f, #2d5a87);
  color: white;
}

.dash-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(30, 58, 95, 0.3);
}

.dash-btn-outline {
  background: var(--bg-card);
  color: #64748b;
  border: 2px solid #e2e8f0;
}

.dash-btn-outline:hover {
  border-color: #1e3a5f;
  color: #1e3a5f;
}

.dash-btn-small {
  padding: 8px 16px;
  font-size: 13px;
}

.dash-btn-full {
  width: 100%;
}

/* Mobile Menu Toggle */
.dash-mobile-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  background: #1e293b;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.dash-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Dashboard Responsive Styles */
@media (max-width: 1200px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .dash-sidebar {
    transform: translateX(-100%);
  }

  .dash-sidebar.active {
    transform: translateX(0);
  }

  .dash-sidebar-overlay.active {
    display: block;
  }

  .dash-mobile-toggle {
    display: flex;
  }

  .dash-main-wrapper {
    margin-left: 0;
  }

  .dash-top-header {
    padding: 14px 16px 14px 64px;
  }

  .dash-header-search {
    display: none;
  }

  .dash-content {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
  }

  .dash-top-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .dash-header-right {
    display: none;
  }

  .dash-detail-grid {
    grid-template-columns: 1fr;
  }

  .dash-quick-actions {
    grid-template-columns: 1fr;
  }

  .dash-profile-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .dash-header-left h2 {
    font-size: 20px;
  }

  .dash-card-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .dash-stat-value {
    font-size: 26px;
  }

  .dash-deadline-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== DASHBOARD SUCCESS BANNER ========== */
.dash-success-banner {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 20px;
  padding: 30px 35px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
  animation: bannerSlideIn 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.dash-success-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.dash-success-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

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

.dash-success-banner.confirmed {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.dash-success-banner.pending {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.dash-success-banner.action-required {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.dash-success-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  animation: iconPulse 2s ease-in-out infinite;
}

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

.dash-success-banner.confirmed .dash-success-icon {
  color: var(--color-secondary);
}

.dash-success-banner.pending .dash-success-icon {
  color: var(--color-warning);
}

.dash-success-banner.action-required .dash-success-icon {
  color: var(--color-danger);
}

.dash-success-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.dash-success-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dash-success-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.dash-success-banner .dash-btn {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  color: #22c55e;
  font-weight: 700;
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.dash-success-banner .dash-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.dash-success-banner.confirmed .dash-btn {
  color: var(--color-secondary);
}

.dash-success-banner.pending .dash-btn {
  color: #d97706;
}

.dash-success-banner.action-required .dash-btn {
  color: #dc2626;
}

@media (max-width: 768px) {
  .dash-success-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .dash-success-content h3 {
    font-size: 20px;
  }

  .dash-success-banner .dash-btn {
    width: 100%;
  }

  .dash-success-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}

/* ========== DASHBOARD REGISTRATION FORMS ========== */

/* Registration Layout */
.dash-reg-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

.dash-reg-form-container {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.dash-reg-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Progress Steps */
.dash-form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.dash-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 1;
}

.dash-progress-step::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
}

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

.dash-progress-step .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.dash-progress-step span:last-child {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.dash-progress-step.active .step-number {
  background: linear-gradient(135deg, #1e3a5f, #2d5a87);
  color: white;
}

.dash-progress-step.active span:last-child {
  color: #1e3a5f;
  font-weight: 600;
}

.dash-progress-step.completed .step-number {
  background: #22c55e;
  color: white;
}

.dash-progress-step.completed::after {
  background: #22c55e;
}

/* Form Sections */
.dash-form-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f5f9;
}

.dash-form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dash-form-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-form-section-title i {
  color: var(--color-warning);
}

/* Form Rows and Groups */
.dash-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.dash-form-row:last-child {
  margin-bottom: 0;
}

.dash-form-group {
  display: flex;
  flex-direction: column;
}

.dash-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.dash-form-label .required {
  color: var(--color-danger);
}

.dash-form-input,
.dash-form-select,
.dash-form-textarea {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: var(--bg-card);
}

.dash-form-input:focus,
.dash-form-select:focus,
.dash-form-textarea:focus {
  outline: none;
  border-color: #1e3a5f;
}

.dash-form-input.error,
.dash-form-select.error,
.dash-form-textarea.error {
  border-color: var(--color-danger);
}

.dash-form-input[readonly] {
  background: var(--bg-section);
  color: #64748b;
}

.dash-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.dash-form-hint {
  font-size: 12px;
  color: #64748b;
  margin-top: 6px;
}

.dash-form-error {
  font-size: 12px;
  color: var(--color-danger);
  margin-top: 6px;
}

/* Category Grid */
.dash-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.dash-category-card {
  background: var(--bg-section);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dash-category-card:hover {
  border-color: #e2e8f0;
  background: var(--bg-card);
}

.dash-category-card.selected {
  border-color: #1e3a5f;
  background: var(--bg-card);
}

.dash-category-card input {
  display: none;
}

.dash-category-card i {
  font-size: 28px;
  color: #64748b;
  margin-bottom: 10px;
  display: block;
}

.dash-category-card.selected i {
  color: #1e3a5f;
}

.dash-category-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.dash-category-card p {
  font-size: 11px;
  color: #64748b;
}

/* Option Group */
.dash-option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-option-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: var(--bg-section);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dash-option-item:hover {
  border-color: #e2e8f0;
  background: var(--bg-card);
}

.dash-option-item.selected {
  border-color: #1e3a5f;
  background: var(--bg-card);
}

.dash-option-item input {
  display: none;
}

.dash-option-radio,
.dash-option-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.dash-option-checkbox {
  border-radius: 6px;
}

.dash-option-checkbox i {
  font-size: 10px;
  color: transparent;
  transition: all 0.3s ease;
}

.dash-option-item.selected .dash-option-radio {
  border-color: #1e3a5f;
  background: #1e3a5f;
}

.dash-option-item.selected .dash-option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--bg-card);
  border-radius: 50%;
}

.dash-option-item.selected .dash-option-checkbox {
  border-color: #1e3a5f;
  background: #1e3a5f;
}

.dash-option-item.selected .dash-option-checkbox i {
  color: white;
}

.dash-option-content {
  flex: 1;
}

.dash-option-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
}

.dash-option-content p {
  font-size: 12px;
  color: #64748b;
}

.dash-option-price {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
  white-space: nowrap;
}

.dash-option-price::before {
  content: '\20B9';
  font-size: 14px;
  margin-right: 2px;
}

/* Form Actions */
.dash-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

/* Review Grid */
.dash-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dash-review-card {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 20px;
}

.dash-review-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-review-card h4 i {
  color: var(--color-warning);
}

.dash-review-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.dash-review-item .label {
  font-size: 13px;
  color: #64748b;
}

.dash-review-item .value {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.dash-review-item.total {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid #1e3a5f;
  border-bottom: none;
}

.dash-review-item.total .value {
  font-size: 16px;
  color: #1e3a5f;
}

/* Summary Items */
.dash-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.dash-summary-item .label {
  font-size: 13px;
  color: #64748b;
}

.dash-summary-item .value {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.dash-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  margin-top: 10px;
  border-top: 2px solid #1e3a5f;
}

.dash-summary-total .label {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a5f;
}

.dash-summary-total .value {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
}

.dash-summary-total .value::before {
  content: '\20B9';
  font-size: 14px;
  margin-right: 2px;
}

/* Help Links */
.dash-help-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-help-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: var(--bg-section);
  border-radius: 10px;
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dash-help-link:hover {
  background: #e2e8f0;
  color: #1e3a5f;
}

.dash-help-link i {
  color: #64748b;
}

/* Help List */
.dash-help-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dash-help-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
}

.dash-help-list li:last-child {
  border-bottom: none;
}

.dash-help-list li i {
  color: #22c55e;
  margin-top: 2px;
}

/* Bank Details */
.dash-bank-details {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 20px;
}

.dash-bank-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.dash-bank-row:last-child {
  border-bottom: none;
}

.dash-bank-row .label {
  font-size: 14px;
  color: #64748b;
}

.dash-bank-row .value {
  font-weight: 600;
  color: #1e293b;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 14px;
}

.dash-qr-section {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-section);
  border-radius: 12px;
}

.dash-qr-section h4 {
  font-size: 14px;
  color: #475569;
  margin-bottom: 15px;
}

.dash-payment-qr {
  max-width: 180px;
  border-radius: 8px;
}

/* Dashboard Registration Responsive */
@media (max-width: 1200px) {
  .dash-reg-layout {
    grid-template-columns: 1fr;
  }

  .dash-reg-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dash-reg-sidebar .dash-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .dash-form-row {
    grid-template-columns: 1fr;
  }

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

  .dash-review-grid {
    grid-template-columns: 1fr;
  }

  .dash-form-progress {
    flex-wrap: wrap;
    gap: 15px;
  }

  .dash-progress-step {
    flex: 0 0 calc(50% - 10px);
  }

  .dash-progress-step::after {
    display: none;
  }

  .dash-form-actions {
    flex-direction: column;
    gap: 15px;
  }

  .dash-form-actions .dash-btn {
    width: 100%;
  }

  .dash-reg-form-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .dash-category-grid {
    grid-template-columns: 1fr;
  }

  .dash-option-item {
    flex-wrap: wrap;
  }

  .dash-option-price {
    width: 100%;
    text-align: right;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
  }
}

/* ========== POLICY PAGES ========== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.policy-content .last-updated {
  color: #64748b;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-secondary);
}

.policy-section p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #475569;
  line-height: 1.7;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.policy-section ul ul {
  margin-top: 0.5rem;
  margin-left: 1rem;
}

.policy-section ul ul li::before {
  background: #94a3b8;
  width: 4px;
  height: 4px;
}

.policy-section a {
  color: var(--color-secondary);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

/* Refund Table */
.refund-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.refund-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.refund-table th,
.refund-table td {
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  text-align: left;
}

.refund-table th {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}

.refund-table tr:nth-child(even) {
  background: #f8fafc;
}

.refund-table tr:hover {
  background: #f1f5f9;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 30px 15px;
  }

  .policy-section h2 {
    font-size: 1.25rem;
  }
}
