@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg-color: #FAF9F6; /* Premium Off-White */
  --primary-color: #C68D66; /* Muted terracotta */
  --secondary-color: #4A6741; /* Eco Green */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --card-bg: #FFFFFF;
  --border-color: #EEEEEE;
  --footer-bg: #1A1A1A;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --border-radius: 12px;
}

/* Global Button Styles */

button, .btn-primary, .btn-secondary {
  border: none !important;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(211, 118, 50, 0.25);
}

.btn-primary:hover {
  background-color: #b85e24;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(211, 118, 50, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(#00000005 1px, transparent 0);
  background-size: 24px 24px;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  transition: padding 0.3s ease;
}

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

/* Glow Background Utility */

.glow-bg {
  position: relative;
  /* Removed overflow:hidden to prevent dropdown clipping */
}

.glow-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(160, 210, 255, 0.15) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ── Footer ── */

.footer {
  background-color: var(--footer-bg);
  color: #FFFFFF;
  padding: 0 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow in the background */

.footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(198,141,102,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Gradient top accent line */

.footer-top-accent {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 40%, #C68D66 60%, transparent 100%);
}

.footer > .container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 40px;
}

/* Footer grid */

.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── Brand column ── */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-tagline {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.04);
}

.social-icon:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198,141,102,0.35);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* ── Link columns ── */

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

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  color: #888;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.25s ease;
  vertical-align: middle;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 10px;
}

/* Impact badge */

.footer-impact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 14px;
  background: rgba(198,141,102,0.1);
  border: 1px solid rgba(198,141,102,0.2);
  border-radius: 100px;
  color: #C68D66;
  font-size: 0.8rem;
  font-weight: 500;
  width: fit-content;
}

.impact-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C68D66;
  box-shadow: 0 0 0 0 rgba(198,141,102,0.5);
  animation: impact-pulse 2s ease-in-out infinite;
}

@keyframes impact-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,141,102,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(198,141,102,0); }
}

/* ── Bottom bar ── */

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

.footer-bottom-tagline {
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-tagline { max-width: 440px; }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-tagline { max-width: 100%; }
  .social-links { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-impact-badge { align-self: center; }
}

/* Typography Scaling - Refined for better mobile experience */

@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem !important; line-height: 1.25 !important; }
  h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
  h3 { font-size: 1.4rem !important; }
  p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.6rem !important; }
  .container { padding: 0 16px; }
}

/* ── Section spacing fix on mobile ── */

@media (max-width: 768px) {
  section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Utilities */

.mobile-hidden { display: block; }

@media (max-width: 768px) { .mobile-hidden { display: none !important; } }

.desktop-hidden { display: none; }

@media (max-width: 768px) { .desktop-hidden { display: block !important; } }

.text-center-mobile {
  @media (max-width: 768px) {
    text-align: center;
  }
}

/* Global Loading Styles - Premium Logo Pulse */

.loading-screen {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.loading-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loading-logo-pulse {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(211, 118, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo-pulse 2s ease-in-out infinite;
}

.loading-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211, 118, 50, 0.35); }
  50%       { box-shadow: 0 0 0 18px rgba(211, 118, 50, 0); }
}

.loading-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.loading-dot {
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}

.loading-dot:nth-child(1) { width: 12px; height: 12px; background: #f0c2a2; animation-delay: 0s; }

.loading-dot:nth-child(2) { width: 18px; height: 18px; background: #d37632; animation-delay: 0.2s; }

.loading-dot:nth-child(3) { width: 24px; height: 24px; background: #ca6d28; animation-delay: 0.4s; }

@keyframes dot-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50%           { transform: scale(1.1); opacity: 1; }
}

.loading-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

/* Mini Branding Loader for Inline Sections */

.loading-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
}

.loading-mini .loading-logo-pulse {
  width: 60px;
  height: 60px;
  animation: logo-pulse-mini 2s ease-in-out infinite;
}

.loading-mini .loading-logo {
  width: 36px;
  height: 36px;
}

@keyframes logo-pulse-mini {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211, 118, 50, 0.25); }
  50%       { box-shadow: 0 0 0 12px rgba(211, 118, 50, 0); }
}

.loading-mini .loading-dot {
  width: 6px;
  height: 6px;
}

.loading-mini .loading-label {
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Branded Loading Utilities */

.avatar-loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.avatar-loader-container .loading-mini {
  padding: 0;
}

.btn-loader-pulse {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  animation: btn-logo-pulse 1.5s infinite;
}

@keyframes btn-logo-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); transform: scale(0.9); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); transform: scale(0.9); }
}

/* Shared Filter Bar Styles - Enhanced Responsiveness */

.filters-container {
  display: flex;
  gap: 15px;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  align-items: center;
  width: fit-content;
  transition: all 0.3s ease;
  position: relative;
  z-index: 50; /* Ensure search bar is above following sections */
}

.filter-divider {
  width: 1px;
  height: 24px;
  background-color: #eee;
  margin: 0 5px;
}

/* Custom Aesthetic Dropdown */

.aesthetic-dropdown-container {
  position: relative;
  min-width: 160px;
}

.aesthetic-dropdown-container.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.aesthetic-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #555;
  font-size: 1rem;
}

.aesthetic-dropdown-trigger:hover,
.aesthetic-dropdown-trigger.open {
  background: #fdf2f0;
  color: var(--primary-color);
}

.trigger-icon {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.trigger-text {
  flex: 1;
  white-space: nowrap;
  font-weight: 500;
}

.trigger-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  color: #888;
}

.aesthetic-dropdown-trigger.open .trigger-arrow {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.aesthetic-dropdown-menu {
  /* Position is set dynamically via JS (fixed) when rendered as a portal */
  width: auto;
  min-width: max-content;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  padding: 8px;
  z-index: 99999;
  animation: dropdownFadeIn 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-height: 280px;
  overflow-y: auto;
  font-family: 'Outfit', 'Inter', sans-serif;
}

/* Custom premium scrollbar for dropdown */

.aesthetic-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.aesthetic-dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px 0;
}

.aesthetic-dropdown-menu::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}

.aesthetic-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #cbd5e1;
}

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

.aesthetic-dropdown-item {
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
}

.aesthetic-dropdown-item:hover {
  background: #f8f8f8;
  color: var(--primary-color);
}

.aesthetic-dropdown-item.selected {
  background: #fdf2f0;
  color: var(--primary-color);
  font-weight: 600;
}

/* Modifiers for AestheticDropdown to behave exactly like form inputs when needed */

.form-input-dropdown .aesthetic-dropdown-trigger {
  border: 1px solid #ddd;
  background-color: #fafafa;
  border-radius: 12px;
  padding: 14px 20px;
  width: 100%;
}

.form-input-dropdown .aesthetic-dropdown-trigger:hover,
.form-input-dropdown .aesthetic-dropdown-trigger.open {
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(211, 118, 50, 0.1);
}

.form-input-dropdown .trigger-text {
  color: #333;
}

.search-events-btn {
  background-color: #D37632;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-events-btn:hover {
  background-color: #b85e24;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 118, 50, 0.3);
}

@media (max-width: 900px) {
  .filters-container {
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
    align-items: stretch;
    gap: 0;
  }

  .aesthetic-dropdown-container {
    width: 100%;
  }

  .aesthetic-dropdown-trigger {
    padding: 15px;
    background: #f9f9f9;
  }

  .filter-divider {
    display: none;
  }

  .search-events-btn {
    width: 100%;
    margin-top: 20px;
    height: 54px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .filters-container {
    padding: 15px;
  }
  
  .aesthetic-dropdown-trigger {
    padding: 12px 15px;
  }
}

/* Toast Notification System */

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast-item {
  pointer-events: auto;
  min-width: 300px;
  max-width: 450px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toast-slide-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid #ccc;
}

.toast-success { border-left-color: #10b981; }

.toast-error { border-left-color: #ef4444; }

.toast-warning { border-left-color: #f59e0b; }

.toast-info { border-left-color: #3b82f6; }

.toast-icon {
  flex-shrink: 0;
}

.toast-success .toast-icon { color: #10b981; }

.toast-error .toast-icon { color: #ef4444; }

.toast-warning .toast-icon { color: #f59e0b; }

.toast-info .toast-icon { color: #3b82f6; }

.toast-message {
  flex: 1;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.toast-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  transition: all 0.2s;
}

.toast-close:hover {
  background: #f3f4f6;
  color: #4b5563;
}

@keyframes toast-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: -15px; /* Pull it slightly to the edge to look 'full left' */
  margin-top: 4px; /* Nudge it slightly down */
}

.navbar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-brand-name {
  font-family: var(--font-heading); /* Switch to serif for branding consistency */
  font-size: 1.6rem;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.navbar-brand-name span {
  color: #706F6C;
  font-weight: 400;
  margin-right: 1px;
}

.navbar-brand-name {
  color: #000000;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
  font-weight: 500;
}

/* ─── Dropdown Styles ──────────────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger,
.nav-dropdown.open .dropdown-trigger {
  color: var(--primary-color);
}

.dropdown-chevron {
  transition: transform 0.3s ease;
}

.dropdown-chevron.rotate {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #f0f0f0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  padding: 10px 16px;
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-item:hover {
  background: #fdf2f0;
  color: var(--primary-color) !important;
}

@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f9f9f9;
    color: var(--text-primary);
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 0 15px !important;
    width: 100% !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease !important;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 200px;
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .dropdown-item {
    padding: 12px 0;
    border-bottom: 1px dotted #f0f0f0;
    width: 100%;
  }
}


/* "Fund a Project" highlighted nav link */
.nav-links a.fund-nav-link {
  color: #D37632;
  font-weight: 700;
}
.nav-links a.fund-nav-link:hover,
.nav-links a.fund-nav-link.active {
  color: #b85e24;
}

.profile-nav-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 4px 12px;
  background: #fdf2f0;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.profile-nav-item:hover {
  background: #fdf2f0;
  box-shadow: 0 4px 12px rgba(211, 118, 50, 0.1);
}

.user-name-shorthand {
  font-weight: 700 !important;
  color: var(--primary-color) !important;
  font-size: 0.9rem !important;
}

.profile-circle {
  background-color: var(--primary-color);
  color: white !important;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  overflow: hidden;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-login-nav {
  background-color: #D37632;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 10px;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.btn-login-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(211, 118, 50, 0.2);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 2000;
}

.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-divider {
  display: none;
}

@media (max-width: 1024px) {
  .nav-content {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-backdrop {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 25px 40px;
    gap: 12px;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1002;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .nav-links.mobile-open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
    color: var(--text-primary);
  }

  .nav-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #f0f0f0;
    margin: 15px 0;
  }

  .profile-nav-item {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 15px;
    background: #fdf2f0;
    border-radius: 12px;
    margin-top: 10px;
  }

  .btn-login-nav {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px !important;
    margin-top: 10px;
  }

  .navbar-logo {
    height: 36px;
  }

  .navbar-brand-name {
    font-size: 1.2rem;
  }
}

/* ─── CMS Dashboard Link ───────────────────────────────────────────────────── */

/* Shared base */
.cms-dashboard-link {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Desktop pill — sits to the right of the profile badge */
.desktop-cms {
  color: #888;
  background: #f5f5f5;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  margin-left: 8px;
}

.desktop-cms:hover,
.desktop-cms.cms-active {
  background: #fdf2f0;
  color: var(--primary-color);
  border-color: rgba(211, 118, 50, 0.25);
}

/* Mobile — inside slide-out drawer, pinned at bottom */
.mobile-cms {
  display: none;
}

@media (max-width: 900px) {
  /* Hide desktop pill on mobile */
  .desktop-cms {
    display: none;
  }

  /* Show inside drawer */
  .mobile-cms {
    display: flex;
    width: 100%;
    margin-top: 15px;
    padding: 18px 15px;
    color: #1a1a1a;
    font-size: 0.95rem;
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #eee;
  }

  .mobile-cms:hover {
    color: var(--primary-color);
    background: #fdf2f0;
    border-color: rgba(211, 118, 50, 0.2);
  }

  .welcome-label { display: inline; }
}

@media (min-width: 901px) {
  .welcome-label { display: none; }
}
.home {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  padding: 60px 20px 80px;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
  background-size: 40px 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 60px 20px 40px;
  }
}

.hero-content {
  max-width: 850px;
  width: 100%;
}

.hero-logo-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
}

.main-logo {
  height: clamp(120px, 25vw, 200px);
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 4.5vw, 1.4rem);
  color: #555;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 10px;
}

.hero-social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: white;
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hero-social-icon:hover {
  color: var(--primary-color, #D37632);
  transform: translateY(-4px);
  border-color: rgba(211, 118, 50, 0.2);
  box-shadow: 0 10px 15px -3px rgba(211, 118, 50, 0.15);
}

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

/* Support A Project Section */
.support-project {
  padding: 100px 0;
  background: white;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-text h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.support-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.support-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .support-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .support-project {
    padding: 60px 0;
  }
}

/* Why Fund Through SumSeva Section */
.why-fund {
  padding: 100px 0;
  background: #fdfdfd;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.fund-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fund-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(211, 118, 50, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #fdf2f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.card-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}
/* Trust Bar Styles */
.trust-bar {
  --trust-orange: #D37632;
  --trust-orange-bg: #fdf2e9;
  --trust-green: #76b63d;
  --trust-green-bg: #eef8e7;
  padding: 60px 0;
  background: white;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.trust-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: var(--trust-orange-bg);
  color: var(--primary-color, #D37632);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.trust-item:nth-child(even) .trust-icon {
  background: var(--trust-green-bg);
  color: var(--trust-green);
}

.trust-item:nth-child(odd):hover .trust-icon {
  background: var(--trust-orange);
  color: white;
  transform: scale(1.1);
}

.trust-item:nth-child(even):hover .trust-icon {
  background: var(--trust-green);
  color: white;
  transform: scale(1.1);
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.2;
}

.trust-text p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .trust-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 40px 15px;
  }
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
  .trust-item {
    justify-content: flex-start;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
  .trust-item:last-child {
    grid-column: span 2;
  }
}
.about-page {
  --about-orange: #D37632;
  --about-orange-hover: #b85e24;
  --about-green: #76b63d;
  --about-green-dark: #629c31;
  --about-green-soft: #eef8e7;
  font-family: var(--font-body);
  color: #333;
  overflow-x: hidden;
}

/* ── Hero Section ── */
.about-hero {
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 100%;
  padding-left: calc((100% - 1200px) / 2);
  /* Maintain container alignment for text */
}

@media (max-width: 1250px) {
  .about-hero-inner {
    padding-left: 40px;
  }
}

.hero-text-side {
  flex: 1;
  max-width: 600px;
  z-index: 10;
}

.hero-accent-line {
  width: 40px;
  height: 3px;
  background: var(--about-green);
  margin-bottom: 25px;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  line-height: 1.1;
  color: #111;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-title .impact-word {
  color: var(--about-green-dark);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-green {
  background: var(--about-orange);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border: none;
}

.btn-green:hover {
  background: var(--about-orange-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: white;
  border: 1px solid #ddd;
  color: #333;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-outline:hover {
  background: var(--about-green-soft);
  border-color: var(--about-green);
  color: var(--about-green-dark);
}

.hero-image-side {
  flex: 1.2;
  position: relative;
  height: 600px;
  margin-right: 0;
}

.image-blend-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* ── Mission & Vision ── */
.mission-vision {
  padding: 100px 0;
  background: #fff;
}

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

.mv-card {
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  border-left: 6px solid transparent;
}

.mv-card.mission {
  border-left-color: var(--about-green);
}

.mv-card.vision {
  border-left-color: var(--about-orange);
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.mv-icon {
  width: 56px;
  height: 56px;
  background: var(--about-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.mv-card.vision .mv-icon {
  background: var(--about-orange);
}

.mv-header h2 {
  font-size: 1.8rem;
  font-family: var(--font-heading);
}

.mv-header-line {
  flex: 1;
  height: 1px;
  background: #eee;
}

.mv-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* ── Story Section ── */
.story-section {
  padding: 80px 0;
  background: #F8F9F8;
}

.story-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.story-text {
  flex: 1;
}

.story-eyebrow {
  color: var(--about-green-dark);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.story-text h2 {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 35px;
}

.story-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Story truncation */
.story-preview {
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.story-preview.collapsed {
  max-height: 4.8rem;
  /* ~2 lines */
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.story-preview.expanded {
  max-height: 500px;
  -webkit-mask-image: none;
  mask-image: none;
}

.btn-read-story {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: gap 0.3s ease;
}

.btn-read-story .arrow-circle {
  width: 32px;
  height: 32px;
  border: 1.5px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.btn-read-story.expanded .arrow-circle {
  transform: rotate(90deg);
}

.btn-read-story:hover {
  gap: 15px;
  color: var(--about-green-dark);
}

.btn-read-story:hover .arrow-circle {
  border-color: var(--about-green-dark);
}

.btn-text-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.3s ease;
}

.btn-text-arrow .arrow-circle {
  width: 32px;
  height: 32px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text-arrow:hover {
  gap: 15px;
  color: var(--about-green-dark);
}

.btn-text-arrow:hover .arrow-circle {
  border-color: var(--about-green-dark);
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ── Impact Stats ── */
.impact-stats-bar {
  background: linear-gradient(135deg, var(--about-green-dark), var(--about-green));
  padding: 60px 0;
  color: white;
  border-radius: 16px;
  margin: -60px 0 60px;
  /* Overlap with previous section? No, let's keep it simple as a bar */
  position: relative;
  z-index: 10;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-item .stat-icon {
  margin-bottom: 15px;
  color: #ffffff !important;
  display: flex;
  justify-content: center;
  opacity: 1 !important;
}

.stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
  color: #ffffff !important;
  opacity: 1 !important;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
  color: #ffffff !important;
  opacity: 1 !important;
}

.stat-item .stat-desc {
  font-size: 0.8rem;
  color: #ffffff !important;
  line-height: 1.4;
  opacity: 1 !important;
}

/* Responsive */
@media (max-width: 1024px) {

  .about-hero-inner,
  .story-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .hero-subtitle,
  .story-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    align-items: center;
  }

  .btn-green,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .stat-item::after {
    display: none;
  }
}

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

  .mission-vision {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .story-text h2 {
    font-size: 2rem;
  }

  .impact-stats-bar {
    margin: 0 0 40px;
    border-radius: 0;
  }

  .hero-image-side,
  .story-image {
    display: none;
  }
}

/* ── CTA Section ── */
.about-cta-section {
  padding: 100px 0;
  background: #fff;
}

.about-cta-card {
  background: linear-gradient(135deg, #629c31 0%, #76b63d 100%);
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 3rem;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
  font-weight: 500;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-cta-card .btn-green {
  background: #fff;
  color: #111;
  padding: 18px 44px;
  font-weight: 700;
  border-radius: 12px;
}

.about-cta-card .btn-green:hover {
  background: #f0f0f0;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-cta-card .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  padding: 18px 44px;
  border-radius: 12px;
}

.about-cta-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

@media (max-width: 768px) {
  .about-cta-card {
    padding: 60px 20px;
    border-radius: 24px;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}.event-listing-page {
  padding: 36px 0;
  background-color: #fafafa;
  min-height: 100vh;
}

.event-listing-page .listing-header {
  margin-bottom: 28px;
}

.event-listing-page .listing-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  margin-bottom: 18px;
  color: #4a3a2a;
}

.event-listing-page .listing-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 12px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.event-listing-page .results-info {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.event-listing-page .results-info span {
  color: var(--primary-color);
  font-weight: 700;
}

.event-listing-page .sort-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-listing-page .sort-label {
  font-size: 0.9rem;
  color: #888;
  font-weight: 600;
}

.event-listing-page .sort-dropdown {
  min-width: 160px;
}

.event-listing-page .sort-dropdown .aesthetic-dropdown-trigger {
  padding: 8px 16px;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 0.9rem;
}

.event-listing-page .sort-dropdown .aesthetic-dropdown-trigger:hover {
  border-color: var(--primary-color);
  background: white;
}

/* Event Cards */
.event-listing-page .events-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-listing-page .section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #4a3a2a;
}

.event-listing-page .event-horizontal-card {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  min-height: 280px; /* min-height instead of fixed height so buttons never get clipped */
}

.event-listing-page .event-horizontal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-listing-page .event-image-side {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #fdfdfd;
}

.event-listing-page .event-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Changed from contain to cover to remove blur/letterbox */
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-listing-page .event-horizontal-card:hover .event-main-img {
  transform: scale(1.05);
  /* Creates the zoom effect without moving the blurred backdrop */
}

.event-listing-page .event-content-side {
  flex: 1;
  padding: 30px 40px; /* Increased padding for better breathing room */
  display: flex;
  flex-direction: column;
}

.event-listing-page .event-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 15px;
}

.event-listing-page .event-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.event-listing-page .ngo-name {
  color: #777;
  font-size: 1.05rem;
}

.event-listing-page .ngo-name span {
  font-weight: 700;
  color: #444;
}

.event-listing-page .price-pill {
  color: #333;
  font-weight: 800;
  font-size: 1.4rem;
  background: none;
  border: none;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-listing-page .event-details-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 30px;
  margin-bottom: 15px;
}

.event-listing-page .detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 0.95rem;
}

.event-listing-page .detail-icon {
  color: #888;
}

.event-listing-page .event-description {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 0; /* removed bottom margin — flex spacer handles gap */
  flex: 1; /* push actions row to bottom */
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-listing-page .event-actions-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px; /* Added spacing */
}

.event-listing-page .btn-secondary {
  border: 1.5px solid #eee;
  padding: 10px 20px;
  border-radius: 10px;
  color: #444;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.event-listing-page .btn-secondary:hover {
  background-color: #f9f9f9;
}

.event-listing-page .btn-group-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 5px; /* Prevent button from touching the edge */
}

.event-listing-page .btn-icon-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.event-listing-page .btn-primary {
  background-color: #D37632;
  color: white;
  padding: 10px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(211, 118, 50, 0.22);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.event-listing-page .btn-primary:hover {
  background-color: #b85e24;
  box-shadow: 0 6px 18px rgba(211, 118, 50, 0.32);
}

@media (max-width: 1024px) {
  .event-listing-page .event-image-side {
    width: 280px;
  }
}

@media (max-width: 900px) {
  .event-listing-page .event-horizontal-card {
    flex-direction: column;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .event-listing-page .event-image-side {
    width: 100%;
    height: 240px;
  }

  .event-listing-page .event-content-side {
    padding: 25px 20px;
  }

  .event-listing-page .event-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .event-listing-page .event-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .event-listing-page .event-details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0;
  }

  .event-listing-page .event-actions-row {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .event-listing-page .btn-secondary {
    width: 100%;
    text-align: center;
    order: 2;
  }

  .event-listing-page .btn-group-right {
    width: 100%;
    order: 1;
  }

  .event-listing-page .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .event-listing-page .listing-header {
    text-align: center;
    margin-bottom: 26px;
  }

  .event-listing-page .listing-title {
    font-size: 1.6rem;
    padding: 0 10px;
    margin-bottom: 14px;
  }

  .event-listing-page .listing-controls {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    margin: 0 10px 24px;
  }

  .event-listing-page .sort-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .event-listing-page .sort-dropdown {
    flex: 1;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .event-listing-page .event-image-side {
    height: 200px;
  }

  .event-listing-page .event-title {
    font-size: 1.25rem;
  }

  .event-listing-page .listing-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
}

/* ─── Empty State ─────────────────────────────────────────────────────── */
.event-listing-page .no-events-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  gap: 16px;
}

.event-listing-page .no-events-icon {
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #fafafa;
  border-radius: 50%;
  border: 2px dashed #e0e0e0;
}

.event-listing-page .no-events-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #4a3a2a;
  margin: 0;
}

.event-listing-page .no-events-desc {
  color: #999;
  font-size: 0.97rem;
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

.event-listing-page .clear-filters-btn {
  margin-top: 8px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.event-listing-page .clear-filters-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(204, 107, 44, 0.25);
}
/* Infinite Loader Styles */
.scroll-trigger {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.infinite-loader {
  display: flex;
  gap: 8px;
}

.loader-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: dot-wave 1.2s infinite ease-in-out;
}

.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-wave {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-10px); opacity: 1; }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  color: var(--text-secondary);
}

.modal-title {
  margin-bottom: 25px;
  text-align: center;
}

.modal-event-summary {
  display: flex;
  gap: 15px;
  background: #FAFAFA;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.modal-event-summary img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.modal-event-summary h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.modal-event-summary p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-pricing {
  margin-bottom: 30px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.total {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.confirm-booking-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.confirm-booking-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success State */
.success-state {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.success-state h2 {
  margin-bottom: 15px;
}

.success-state p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.5;
}

.rewards-earned {
  background-color: #F0F4EF;
  color: var(--secondary-color);
  padding: 15px 30px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.rewards-earned span {
  font-weight: 800;
}

.done-btn {
  background-color: var(--text-primary);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
}

.login-required-modal {
    text-align: center;
    padding: 20px 0;
}

.lock-icon-box {
    width: 100px;
    height: 100px;
    background: #fdf2f0;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.login-required-modal h2 {
    margin-bottom: 15px;
}

.login-required-modal p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.upi-payment-view {
    text-align: center;
}

.upi-instruction {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.payment-amount-pill {
    background: #f1f5f9;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.payment-amount-pill span {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
    margin-left: 5px;
}

.payment-qr-container {
    background: #f8fafc;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.payment-qr-img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.upi-id-box {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px dashed #cbd5e1;
    font-size: 0.9rem;
    color: #475569;
    display: flex;
    gap: 8px;
}

.upi-id-box strong {
    color: var(--primary-color);
    user-select: all;
}

.payment-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #16a34a;
    margin-bottom: 25px;
    background: #f0fdf4;
    padding: 10px;
    border-radius: 10px;
}

.back-to-summary {
    background: none;
    border: none;
    color: #94a3b8;
    margin-top: 15px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.back-to-summary:hover {
    color: #64748b;
}

.utr-input-group {
    text-align: left;
    margin-bottom: 25px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.utr-input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.utr-input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #f1f5f9;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    transition: all 0.2s;
}

.utr-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fdf2f0;
}

.input-hint {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 6px;
}

.whatsapp-action-box {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    width: 100%;
}

.whatsapp-action-box p {
    font-size: 0.9rem;
    color: #166534;
    margin-bottom: 15px !important;
}

.whatsapp-btn {
    width: 100%;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

 @media (max-width: 600px) {
  .payment-qr-img {
    width: 180px;
  }
  .modal-content {
    padding: 30px 20px;
    margin: 15px;
    border-radius: 32px;
  }
  .modal-event-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .modal-event-summary img {
    width: 60px;
    height: 60px;
  }
}

.quantity-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

.qty-controls button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-color);
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-controls button:hover {
    background: var(--primary-color);
    color: white;
}

.qty-controls span {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.booking-ref-box {
    background: #f8fafc;
    border: 1.5px dashed #e2e8f0;
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.booking-ref-box span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-ref-box strong {
    font-size: 1.6rem;
    color: var(--primary-color);
    letter-spacing: 1.5px;
}

.email-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

/* Custom Alert Overlay */
.custom-alert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    animation: fadeIn 0.3s ease;
}

.custom-alert-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 80%;
    border: 1px solid #f0f0f0;
    transform: translateY(20px);
    animation: slideUp 0.4s ease forwards;
}

.custom-alert-box .alert-icon {
    color: #16a34a;
    margin-bottom: 15px;
}

.custom-alert-box h3 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 1.2rem;
}

.custom-alert-box p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

/* Attendee Form Styles */
.attendee-form-view {
    text-align: center;
}

.attendee-inputs-stack {
    max-height: 300px;
    overflow-y: auto;
    padding: 5px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.attendee-input-group-complex {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.att-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 8px;
}

.att-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.att-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.att-field label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.att-field input {
    width: 100%;
    padding: 10px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

.att-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

@media (max-width: 500px) {
    .att-fields {
        grid-template-columns: 1fr;
    }
}

.att-field.full-width {
    grid-column: 1 / -1;
}

.att-select {
    width: 100%;
    padding: 10px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    background: white;
    cursor: pointer;
}

.att-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.photo-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.photo-preview-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
}

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

.initials-avatar-preview {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.upload-controls {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upload-trigger-btn {
    background: #0f172a;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: fit-content;
}

.upload-trigger-btn:hover {
    background: var(--primary-color);
}

.photo-rec-note {
    font-size: 0.65rem;
    color: #94a3b8;
    margin: 0;
}

.attendee-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attendee-inputs-stack::-webkit-scrollbar {
    width: 6px;
}

.attendee-inputs-stack::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.attendee-inputs-stack::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.event-detail-page {
  background-color: #fafafa;
  min-height: 100vh;
  padding-bottom: 80px;
}

/* Hero Wrapper */
.hero-wrapper {
  margin-top: 30px;
}

.detail-hero-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  border: 1px solid #f2f2f2;
}

.hero-img-pane {
  height: 520px;
  position: relative;
}

.hero-img-pane::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.05);
  pointer-events: none;
}

.hero-img-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  background: #fafafa;
}

.hero-text-pane {
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-meta-badge {
  color: var(--primary-color);
  background: rgba(211, 118, 50, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: var(--font-heading);
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-host-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.by-text { color: #888; font-style: italic; }
.ngo-link { font-weight: 600; color: #333; font-size: 1.1rem; }
.premium-price-pill {
    background: #1a1a1a;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-info-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fdfaf8;
  border-radius: 24px;
  border: 1px solid #f9eee7;
  margin-bottom: 35px;
  overflow: hidden;
}

.info-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 30px;
}

.info-node--date {
  border-right: 1px solid #f9eee7;
}

.info-node--location {
  grid-column: span 2;
  border-top: 1px solid #f9eee7;
}

.node-icon { color: var(--primary-color); flex-shrink: 0; }
.node-val { font-weight: 700; color: #1a1a1a; display: block; font-size: 1.15rem; line-height: 1.2; }
.node-sub { font-size: 0.95rem; color: #888; display: block; margin-top: 4px; }

.hero-snippet {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 600px;
}

/* Main Layout */
.main-content-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.content-side {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.section-header-with-icon {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.section-header-icon {
    width: 54px;
    height: 54px;
    background: #fdf2f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(211, 118, 50, 0.08);
    flex-shrink: 0;
}

.section-header-with-icon .section-label {
    margin-bottom: 0;
}

.section-main-title {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Itinerary Section - Enhanced Multi-Row Style */
.itinerary-full-layout {
    width: 100%;
}

.itinerary-card-premium {
    background: white;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.it-step-item-complex {
    display: flex;
    gap: 40px;
    position: relative;
    padding-bottom: 60px;
}

.it-step-item-complex:last-child {
    padding-bottom: 0;
}

.it-step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    flex-shrink: 0;
    position: relative;
}

.it-step-num {
    width: 50px;
    height: 50px;
    background: #fdf2f0;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(211, 118, 50, 0.1);
}

.it-step-line {
    width: 2px;
    background: linear-gradient(to bottom, #f0f0f0 0%, #f0f0f0 90%, transparent 100%);
    position: absolute;
    top: 25px; /* Starts from center of the circle */
    bottom: -35px; /* Extends towards the next step */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.it-step-item-complex:last-child .it-step-line {
    display: none;
}

.it-step-content-group {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 40px;
    align-items: center;
}

.it-step-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.it-step-meta {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.it-time { color: var(--primary-color); font-weight: 700; }
.it-step-txt { color: #555; line-height: 1.7; font-size: 1.05rem; }

.it-step-image-box {
    width: 180px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    background: #fdfdfd;
}

.it-step-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.05);
    pointer-events: none;
}

.it-step-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.5s ease;
}

.it-step-item-complex:hover .it-step-image-box img {
    transform: scale(1.1);
}

.it-step-image-box.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.opacity-low { opacity: 0.5; filter: grayscale(1); }

@media (max-width: 768px) {
    .itinerary-card-premium { padding: 30px 20px; }
    .it-step-item-complex { gap: 20px; }
    .it-step-content-group { grid-template-columns: 1fr; gap: 20px; }
    .it-step-image-box { width: 100%; height: 200px; }
    .it-step-title { font-size: 1.3rem; }
}

/* Extra Options Grid */
.options-flex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 20px;
}

.option-card {
    background: linear-gradient(135deg, rgba(253, 242, 240, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 30px 20px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    border: 1.5px solid rgba(211, 118, 50, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(211, 118, 50, 0.12);
    border-color: rgba(211, 118, 50, 0.2);
    background: white;
}

.opt-icon {
    width: 60px;
    height: 60px;
    background: #fdf2f0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.option-card:hover .opt-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: white;
}

.opt-text {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Impact Card Integrated into Grid */
.impact-card-dark {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 32px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.impact-badge-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211, 118, 50, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    width: fit-content;
    margin-bottom: 20px;
}

.impact-msg {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 90%;
}

.impact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.impact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Sidebar Widget */
.sticky-widget-container {
    position: sticky;
    top: 100px;
}

.booking-card-premium {
    background: white;
    padding: 35px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #f2f2f2;
    margin-bottom: 25px;
}

.card-title { font-size: 1.6rem; color: #1a1a1a; margin-bottom: 12px; font-weight: 800; letter-spacing: -0.5px; }
.card-subtitle { font-size: 0.95rem; color: #666; margin-bottom: 30px; line-height: 1.5; }

.btn-main-book {
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(211, 118, 50, 0.25);
    margin-bottom: 30px;
}

.btn-main-book:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 15px 35px rgba(211, 118, 50, 0.35);
}

.detail-list-nodes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f5f5f5;
}

.node-item { display: flex; gap: 15px; align-items: flex-start; }
.item-icon { color: var(--primary-color); margin-top: 2px; }
.item-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #aaa; font-weight: 700; margin-bottom: 2px; }
.item-val { display: block; font-size: 1rem; color: #1a1a1a; font-weight: 600; line-height: 1.3; }
.item-sub-val { display: block; font-size: 0.85rem; color: #888; margin-top: 2px; }

.price-divider-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.bold-price { font-size: 2.2rem; font-weight: 800; color: var(--primary-color); }
.per-person { color: #888; font-size: 1rem; }
.price-disclaimer { font-size: 0.8rem; color: #aaa; margin-top: -5px; margin-bottom: 25px; }

.inclusions-mini-card, .price-mini-card {
    display: flex;
    gap: 15px;
    background: #fafafa;
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    border: 1px solid #f0f0f0;
}

.mini-icon-box {
    width: 36px;
    height: 36px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A6741;
    flex-shrink: 0;
}

.mini-icon-box-orange {
    width: 36px;
    height: 36px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mini-content strong { font-size: 0.85rem; color: #333; display: block; margin-bottom: 2px; }
.mini-content p { font-size: 0.8rem; color: #777; margin: 0; }

.impact-box-sidebar {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 32px;
    color: white;
    text-align: center;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211, 118, 50, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.impact-box-sidebar p { color: #aaa; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.sidebar-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.sidebar-contact-link:hover { color: var(--primary-color); border-color: var(--primary-color); }

/* Responsiveness */
@media (max-width: 1200px) {
  .detail-hero-card { grid-template-columns: 1fr; border-radius: 24px; }
  .hero-img-pane { height: 400px; }
  .hero-text-pane { padding: 40px 30px; }
  .main-content-layout { gap: 40px; }
}

@media (max-width: 1024px) {
  .main-content-layout { 
    grid-template-columns: 1fr; 
  }
  .sticky-widget-container {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .detail-title { font-size: 2.2rem; }
  .hero-info-card { 
    grid-template-columns: 1fr; 
  }
  .info-node { padding: 20px; }
  .info-node--date { border-right: none; border-bottom: 1px solid #f9eee7; }
  .info-node--location { grid-column: span 1; }
  .itinerary-split-layout { grid-template-columns: 1fr; }
  .itinerary-gallery { display: none; }
  .options-flex-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .detail-hero-card { margin: 0 -15px; border-radius: 0; }
  .hero-img-pane { height: 280px; }
  .hero-text-pane { padding: 30px 20px; }
  .hero-info-card { 
    margin-bottom: 25px;
  }
  .hero-host-row {
    flex-wrap: wrap;
    gap: 15px;
  }
  .detail-title { font-size: 1.8rem; }
  .itinerary-steps-card { padding: 25px 15px; }
  .it-step-item { gap: 15px; }
  .booking-card-premium { padding: 25px; border-radius: 24px; }
  .btn-main-book { padding: 16px; font-size: 1.1rem; border-radius: 12px; }
  .bold-price { font-size: 1.6rem; }
}

/* =============================================
   FOR CORPORATES PAGE – PREMIUM DESIGN
   ============================================= */

.corp-page {
  --corp-orange: #D37632;
  --corp-orange-hover: #b85e24;
  --corp-green: #76b63d;
  --corp-green-dark: #629c31;
  --corp-green-deep: #4f8228;
  --corp-green-soft: #eef8e7;
  overflow-x: hidden;
  font-family: var(--font-body, 'Inter', sans-serif);
}

/* ── Container ── */
.corp-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Hero ── */
.corp-hero {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.corp-hero-inner {
  max-width: 680px;
  padding: 190px 0 100px;
}

.corp-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color, #d37632);
  background: rgba(211, 118, 50, 0.12);
  border: 1px solid rgba(211, 118, 50, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.corp-hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: #ffffff;
  margin-bottom: 28px;
}

.corp-hero-sub {
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
}

.corp-hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-corp-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color, #d37632);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.3px;
}

.btn-corp-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(211, 118, 50, 0.4);
}

/* ── Animations ── */
.animate-fade-in-up {
  animation: corpFadeUp 0.8s ease-out forwards;
}
.animate-fade-in-up-delay {
  opacity: 0;
  animation: corpFadeUp 0.8s ease-out 0.2s forwards;
}
.animate-fade-in-up-delay-2 {
  opacity: 0;
  animation: corpFadeUp 0.8s ease-out 0.4s forwards;
}

@keyframes corpFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── About / Philosophy ── */
.corp-about {
  padding: 40px 0 120px;
  background: #fff;
}

.corp-about-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 60px;
  align-items: start;
}

.corp-about-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  gap: 24px;
}

.accent-line {
  width: 2px;
  height: 180px;
  background: linear-gradient(to bottom, var(--primary-color, #d37632), transparent);
  border-radius: 2px;
}

.accent-blob {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 118, 50, 0.2), rgba(211, 118, 50, 0.05));
  border: 2px solid rgba(211, 118, 50, 0.25);
}

.corp-about-text {
  max-width: 780px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #fdf2f0;
  color: var(--primary-color, #d37632);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.corp-section-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 36px;
}

.corp-about-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 22px;
}

.corp-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #f0f0f0;
}

.corp-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.corp-check svg {
  color: var(--primary-color, #d37632);
  flex-shrink: 0;
}

/* ── Benefits ── */
.corp-benefits {
  padding: 120px 0;
  background: #f8f8f8;
}

.corp-section-header {
  margin-bottom: 64px;
}

.corp-section-header.centered {
  text-align: center;
}

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

.corp-benefit-card {
  background: #fff;
  border-radius: 28px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid #efefef;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.corp-benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.09);
}

.corp-benefit-card.highlight {
  background: var(--corp-green-deep);
  border-color: var(--corp-green-deep);
  color: #fff;
}

.corp-benefit-card.highlight h3,
.corp-benefit-card.highlight p {
  color: #fff;
}

.benefit-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(211, 118, 50, 0.45), transparent 70%);
  pointer-events: none;
}

.corp-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fdf2f0;
  color: var(--primary-color, #d37632);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.corp-benefit-card.highlight .corp-benefit-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.corp-benefit-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.3;
}

.corp-benefit-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.75;
}

/* ── CTA ── */
.corp-cta {
  padding: 100px 0 120px;
  background: #fff;
}

.corp-cta-wrapper {
  background: linear-gradient(135deg, var(--corp-green-dark) 0%, var(--corp-green) 100%);
  border-radius: 40px;
  padding: 90px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.corp-cta-wrapper::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(211, 118, 50, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.corp-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(211, 118, 50, 0.15);
  border: 1px solid rgba(211, 118, 50, 0.3);
  color: var(--primary-color, #d37632);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.corp-cta-wrapper h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.corp-cta-wrapper p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 48px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  border: none;
  padding: 18px 44px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.btn-cta-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.15);
  background: var(--corp-orange);
  color: #fff;
}

/* ── Proposal Form ── */
.corp-form-section {
  padding: 100px 0 120px;
  background: #fff;
}

.corp-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}

/* Left dark info panel */
.corp-form-left {
  background: linear-gradient(160deg, var(--corp-green-deep) 0%, #406b22 100%);
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.corp-form-left::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(211,118,50,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.corp-form-left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(118,182,61,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.corp-form-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color, #d37632);
  margin-bottom: 20px;
  display: block;
}

.corp-form-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.corp-form-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.corp-form-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}

.corp-perk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.corp-perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(211,118,50,0.15);
  border: 1px solid rgba(211,118,50,0.25);
  color: var(--primary-color, #d37632);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.corp-form-trust {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* Right white form panel */
.corp-form-right {
  background: #fdfdfb;
  padding: 60px 50px;
}

.corp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.corp-form input,
.corp-form select,
.corp-form textarea {
  padding: 14px 18px;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  font-size: 0.97rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  transition: all 0.25s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.corp-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.corp-form input:focus,
.corp-form select:focus,
.corp-form textarea:focus {
  border-color: var(--primary-color, #d37632);
  box-shadow: 0 0 0 4px rgba(211,118,50,0.08);
  background: #fff;
}

.corp-form input::placeholder,
.corp-form textarea::placeholder {
  color: #aaa;
}

.corp-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.btn-corp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color, #d37632);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 8px;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px rgba(211,118,50,0.25);
  font-family: inherit;
}

.btn-corp-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(211,118,50,0.35);
  background: var(--corp-orange-hover);
}

@media (max-width: 900px) {
  .corp-form-wrapper {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .corp-form-left {
    padding: 50px 30px;
  }
  .corp-form-title {
    font-size: 2.2rem;
  }
  .corp-form-right {
    padding: 40px 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .corp-form-left,
  .corp-form-right {
    padding: 36px 20px;
  }
  .corp-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 1100px) {
  .corp-hero-title { font-size: 3.5rem; letter-spacing: -2px; }
  .corp-section-title { font-size: 2.6rem; }
  .corp-cta-wrapper h2 { font-size: 3rem; }
  .corp-benefits-grid { gap: 24px; }
}

@media (max-width: 900px) {
  .corp-hero { min-height: 70vh; }
  .corp-hero-inner { padding: 120px 0 60px; text-align: center; }
  .corp-hero-sub { margin: 0 auto 40px; }
  .corp-hero-btns { justify-content: center; }
  .corp-about-grid { grid-template-columns: 1fr; text-align: center; }
  .corp-about-accent { display: none; }
  .corp-about-text { margin: 0 auto; }
  .corp-checks { align-items: center; }
  .corp-benefits-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .corp-cta-wrapper { padding: 60px 40px; }
  .corp-cta-wrapper h2 { font-size: 2.4rem; }
  .corp-hero { background-attachment: scroll; }
}

@media (max-width: 600px) {
  .corp-page .container { padding: 0 20px; }
  .corp-hero-inner { padding: 100px 0 40px; }
  .corp-hero-title { font-size: 2.8rem; letter-spacing: -1.5px; }
  .corp-hero-sub { font-size: 1rem; margin-bottom: 30px; }
  .corp-section-title { font-size: 2rem; }
  .corp-cta-wrapper { padding: 48px 24px; border-radius: 24px; }
  .corp-cta-wrapper h2 { font-size: 1.8rem; line-height: 1.2; }
  .corp-cta-wrapper p { font-size: 1rem; margin-bottom: 32px; }
  .corp-about { padding: 60px 0; }
  .corp-benefits { padding: 60px 0; }
  .corp-cta { padding: 40px 0 60px; }
  .btn-corp-primary, .btn-cta-white { width: 100%; justify-content: center; padding: 16px 24px; }
}

/* Success View */
.corp-success-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  gap: 20px;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  color: var(--primary-color, #d37632);
  margin-bottom: 10px;
}

.corp-success-view h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
}

.corp-success-view p {
  color: #666;
  max-width: 400px;
  line-height: 1.6;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.error-msg {
  color: #e74c3c;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

.btn-corp-secondary {
  background: transparent;
  border: 1.5px solid #ddd;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.btn-corp-secondary:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
.impact-hero {
  padding: 100px 0 80px;
  background-color: #fdf2f0;
  text-align: center;
}

.impact-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.1;
}

.impact-hero .hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
  padding: 0 20px;
}

.stats-section {
  margin-top: -40px;
  padding-bottom: 80px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: white;
  padding: 40px 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(211, 84, 0, 0.08);
  border: 1px solid #fee2e2;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(211, 84, 0, 0.12);
}

.stat-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.impact-mission {
  padding: 80px 0;
}

.mission-text-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 25px;
  line-height: 1.2;
}

.mission-text-block p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.impact-gallery {
  padding: 60px 0 100px;
}

.impact-gallery .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.impact-img-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.grid-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.grid-item.large {
    grid-row: span 2;
}

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

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

@media (max-width: 992px) {
  .impact-hero { padding: 80px 0 100px; }
  .stats-section { margin-top: -60px; }
  .impact-img-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .grid-item {
    height: 300px;
  }
  .grid-item.large {
    grid-row: auto;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .stat-card {
    flex: 1 1 100%;
    max-width: none;
    padding: 30px 20px;
  }
  .mission-text-block {
    text-align: left;
  }
  .grid-item {
    height: 250px;
  }
  .grid-item.large {
    height: 350px;
  }
}
.profile-page {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #FAFAFA 0%, #F0F4EE 100%);
  min-height: calc(100vh - 80px);
}

.profile-grid {
  display: grid;
  /* Single-column layout while products/rewards are hidden */
  grid-template-columns: 1fr;
  max-width: 780px;
  gap: 40px;
}

/* When rewards are active (mobile toggle), revert to flex */
.profile-grid.show-rewards {
  max-width: 100%;
}

.user-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.user-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.welcome-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.user-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.points-badge {
    background: linear-gradient(135deg, var(--secondary-color), #3a5332);
    color: white;
    padding: 12px 24px;
    border-radius: 16px;
    text-align: right;
    box-shadow: 0 8px 20px rgba(74, 103, 65, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.points-badge span {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
}

.user-bio-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.user-meta-main {
    display: flex;
    align-items: center;
    gap: 25px;
}

.user-avatar {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.user-basic-info h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.user-basic-info p {
    color: #888;
    font-size: 0.95rem;
}

.user-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #FAFAFA;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #EEE;
}

.stat {
    text-align: center;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: #E0E0E0;
}

.stat-val {
    font-weight: 800;
    font-size: 1.5rem;
    color: #0f172a !important; /* Very dark blue/black */
    font-family: var(--font-heading);
    display: block;
}

.stat-label {
    font-size: 0.75rem !important;
    color: #64748b !important; /* Slate 500 - distinct from value */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 4px;
    display: block;
}

.activities-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.activity-item {
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: var(--secondary-color);
}

.act-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F0F4EF, #E1EBE0);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.act-info {
    flex: 1;
}

.act-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.act-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.act-date {
    font-size: 0.75rem !important;
    color: #aaa !important;
    margin-top: 4px;
    font-weight: 500;
}

.act-points {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    background: #F0F4EF;
    padding: 6px 14px;
    border-radius: 20px;
}

.redeem-btn-wide {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #3a5332);
    color: white;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(74, 103, 65, 0.2);
    margin-top: 25px;
}

.redeem-btn-wide:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(74, 103, 65, 0.3);
}

/* Hide rewards panel on desktop while products are coming soon */
.rewards-main {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

/* Show rewards panel only on mobile when toggled */
.profile-grid.show-rewards .rewards-main {
    display: block;
}

.rewards-header h2 {
    font-size: 1.3rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rewards-header .highlight {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

/* Products section is temporarily hidden */
.products-section {
    display: none;
}

.products-section h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: #E8E8E8;
}

.prod-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #F9F9F9;
    flex-shrink: 0;
}

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

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

.prod-info {
    flex: 1;
}

.prod-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.prod-points {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.prod-detail {
    color: #888;
    font-size: 0.85rem;
}

.redeem-small-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.redeem-small-btn:hover {
    background: #3a5332;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 103, 65, 0.2);
}

.mobile-back-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 0;
}

/* Responsiveness */
@media (max-width: 900px) {
  .profile-page { padding: 30px 0; }
  
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* View toggling logic for mobile */
  .profile-grid.show-profile .rewards-main {
      display: none;
  }
  .profile-grid.show-rewards .profile-sidebar {
      display: none;
  }
  
  .mobile-back-btn {
      display: block;
  }

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

@media (max-width: 600px) {
  .welcome-text { font-size: 2rem; }
  
  .user-header {
      flex-direction: column;
      gap: 15px;
  }
  .points-badge {
      width: 100%;
      text-align: center;
  }
  .points-badge span {
      display: inline;
      margin-left: 5px;
  }

  .user-meta-main { flex-direction: column; text-align: center; gap: 15px; }
  .user-bio-card { padding: 25px 20px; }
  .user-stats { gap: 10px; padding: 15px; }
  .stat-val { font-size: 1.2rem; }
  .stat-label { font-size: 0.75rem; }

  .activity-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
  }
  .act-icon { align-self: center; }
  .act-info { text-align: center; width: 100%; }
  .act-points { align-self: center; margin-top: 5px; }

  .product-card { flex-direction: column; align-items: flex-start; text-align: center; padding: 20px; }
  .prod-img { width: 100%; height: 160px; }
  .redeem-small-btn { width: 100%; }
}

/* Loader & Utilities */
.loading-shimmer-card { max-width: 400px; width: 100%; padding: 40px; background: white; border-radius: 30px; text-align: center; }
.shimmer-circle { width: 80px; height: 80px; border-radius: 50%; background: #f0f0f0; margin: 0 auto 20px; animation: shimmer 1.5s infinite linear; background: linear-gradient(to right, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%); background-size: 800px 104px; }
.shimmer-line { height: 20px; background: #f0f0f0; margin-bottom: 10px; border-radius: 10px; animation: shimmer 1.5s infinite linear; background: linear-gradient(to right, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%); background-size: 800px 104px; }
.shimmer-line.short { width: 60%; margin: 0 auto; }
@keyframes shimmer { 0% { background-position: -468px 0; } 100% { background-position: 468px 0; } }

.profile-page.flex-center { display: flex; align-items: center; justify-content: center; min-height: 80vh; padding: 20px; }
.auth-needed-card { background: white; padding: 60px 30px; border-radius: 30px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.05); max-width: 500px; width: 100%; }
.auth-needed-card h1 { margin: 20px 0 10px; font-size: 1.8rem; }
.auth-needed-card p { color: #666; margin-bottom: 30px; }

.avatar-wrapper { position: relative; width: 100px; height: 100px; border-radius: 20px; border: 4px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin: 0 auto; }
@media(min-width: 601px){
  .avatar-wrapper { margin: 0; }
}

.photo-upload-label { position: absolute; bottom: -5px; right: -5px; background: var(--primary-color); color: white; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 3px solid white; transition: transform 0.3s; }
.photo-upload-label:hover { transform: scale(1.1); }

.avatar-loader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.7); border-radius: 20px; display: flex; align-items: center; justify-content: center; border: 3px solid var(--primary-color); border-bottom-color: transparent; animation: rotate 1s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.logout-btn { width: 100%; margin-top: 20px; background: #fff; border: none; padding: 15px; border-radius: 16px; font-weight: 600; color: #ff5e5e; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; box-shadow: 0 4px 10px rgba(255, 94, 94, 0.05); }
.logout-btn:hover { background: #fff5f5; }

/* Compact Product Modal */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.product-modal-card {
  background: white;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #333;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: white;
  color: var(--primary-color);
  transform: scale(1.1);
}

.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.modal-image-side {
  width: 100%;
  height: 280px;
  flex-shrink: 0;
}

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

.modal-info-side {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-badge {
  background: #f0fdf4;
  color: #166534;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.modal-info-side h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #0f172a;
  line-height: 1.2;
}

.modal-points-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  padding: 12px 20px;
  border-radius: 12px;
  width: fit-content;
}

.modal-points-box span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.modal-description h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}

.modal-description p {
  line-height: 1.5;
  color: #475569;
  font-size: 1rem;
}

.modal-extra-info {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #334155;
  border-left: 4px solid var(--secondary-color);
}

.modal-redeem-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  margin-top: 10px;
}

.modal-redeem-btn:hover {
  background: #1e293b;
  transform: scale(1.02);
}

/* Point Validation Styles */
.insufficient-points-notice {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 15px;
  background: #fff5f5;
  border-radius: 16px;
  border: 1px solid #fee2e2;
  margin-top: 10px;
}

.insufficient-points-notice span {
  color: #c53030;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.modal-redeem-btn.disabled {
  background: #cbd5e1;
  color: white;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.8;
}

.modal-redeem-btn.disabled:hover {
  transform: none;
  background: #cbd5e1;
}

.profile-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 16px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tab-count {
    background: #d37632;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-ticket-card {
    background: white;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.profile-ticket-card:hover {
    transform: translateY(-2px);
}

.ticket-main {
    display: flex;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px dashed #f1f5f9;
}

.ticket-qr-box {
    width: 90px;
    height: 90px;
    background: white;
    padding: 5px;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.used-stamp {
    background: #fee2e2;
    color: #ef4444;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(-15deg);
    border: 2px solid #ef4444;
}

.pending-qr-placeholder, .declined-qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.pending-qr-placeholder span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #d97706;
    text-transform: uppercase;
    line-height: 1.1;
}

.pending-qr-placeholder .spin-icon {
    color: #d97706;
    animation: spin 2s linear infinite;
}

.declined-qr-placeholder span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    line-height: 1.1;
}

.declined-qr-placeholder svg {
    color: #dc2626;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ticket-details {
    flex: 1;
}

.ticket-cat {
    font-size: 0.65rem;
    font-weight: 800;
    color: #d37632;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ticket-details h4 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #1e293b;
    line-height: 1.2;
}

.ticket-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.ticket-footer-stats {
    background: #f8fafc;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-pill {
    background: #e0e7ff;
    color: #4338ca;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.id-pill {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: monospace;
}

.ticket-used {
    opacity: 0.7;
    filter: grayscale(0.5);
}

.ticket-used .ticket-footer-stats {
    background: #f1f5f9;
}

/* Rewards Coming Soon Card */
.rewards-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    border-radius: 24px;
    border: 1.5px dashed #cbd5e1;
    gap: 16px;
}

.rewards-coming-icon {
    font-size: 3.5rem;
    animation: floatIcon 3s ease-in-out infinite;
}

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

.rewards-coming-soon h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0;
}

.rewards-coming-soon p {
    color: #64748b;
    font-size: 0.95rem;
    max-width: 340px;
    line-height: 1.6;
    margin: 0;
}

.rewards-points-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 32px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.rp-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.rp-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.profile-tab-content {
    min-height: 200px;
}

/* Danger Zone & Delete Account */
.danger-zone {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #fee2e2;
}

.delete-acc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1.5px solid #fecaca;
    color: #ef4444;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-acc-btn:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

.delete-confirm-modal {
    background: white;
    padding: 40px;
    border-radius: 32px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-icon-warning {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.delete-confirm-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.delete-confirm-modal p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.impact-loss-list {
    text-align: left;
    background: #f8fafc;
    padding: 20px 20px 20px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.impact-loss-list li {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.modal-actions-delete {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-cancel-delete {
    padding: 14px;
    border: 1.5px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm-delete {
    padding: 14px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
    transition: all 0.3s ease;
}

.btn-confirm-delete:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.35);
}

.btn-cancel-delete:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ===========================
   DANGER ZONE CARD
   =========================== */
.danger-zone-card {
  margin-top: 32px;
  border: 1.5px solid #fca5a5;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border-radius: 16px;
  padding: 20px 22px;
}

.danger-zone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 10px;
}

.danger-zone-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 16px;
}

.danger-zone-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid #ef4444;
  color: #ef4444;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.danger-zone-trigger:hover {
  background: #ef4444;
  color: white;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
  transform: translateY(-1px);
}

/* ===========================
   DELETE ACCOUNT MODAL
   =========================== */
.delete-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: fade-in 0.2s ease;
}

.delete-modal-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  border-top: 5px solid #ef4444;
  box-shadow: 0 25px 60px rgba(239, 68, 68, 0.15), 0 8px 24px rgba(0,0,0,0.12);
  animation: modal-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modal-pop {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.delete-modal-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border: 3px solid #fca5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #dc2626;
  animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.25); }
  50%       { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.delete-modal-badge {
  display: inline-block;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.delete-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.delete-modal-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.delete-modal-desc strong {
  color: #dc2626;
}

.delete-modal-confirm-box {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
}

.delete-modal-confirm-box p {
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 10px;
}

.delete-modal-confirm-box strong {
  font-family: monospace;
  background: #fee2e2;
  color: #b91c1c;
  padding: 1px 6px;
  border-radius: 4px;
}

.delete-confirm-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: monospace;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.delete-confirm-input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.delete-confirm-input.shake-error {
  border-color: #ef4444;
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-6px); }
  30%       { transform: translateX(6px); }
  45%       { transform: translateX(-4px); }
  60%       { transform: translateX(4px); }
  75%       { transform: translateX(-2px); }
}

.delete-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delete-cancel-btn {
  background: #f1f5f9;
  color: #475569;
  border: none;
  padding: 13px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.delete-cancel-btn:hover {
  background: #e2e8f0;
}

.delete-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.delete-confirm-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  transform: translateY(-1px);
}

.delete-confirm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Multi-Ticket Premium Styles */
.ticket-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.ticket-cat {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    background: #f0fdf4;
    padding: 4px 10px;
    border-radius: 50px;
}

.ticket-id-pill {
    font-size: 0.75rem;
    font-family: monospace;
    color: #64748b;
    background: white;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.ticket-event-info-mini {
    padding: 20px;
}

.ticket-event-info-mini h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.ticket-row-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-node {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
}

.multi-qr-carousel {
    display: flex;
    gap: 20px;
    padding: 10px 20px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.multi-qr-carousel::-webkit-scrollbar {
    height: 6px;
}

.multi-qr-carousel::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.multi-qr-carousel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.qr-ticket-node {
    flex: 0 0 160px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.qr-wrapper-premium {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.used-stamp-overlay {
    background: #fee2e2;
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    transform: rotate(-15deg);
    border: 2px solid #ef4444;
    z-index: 2;
}

.qr-attendee-info {
    text-align: center;
    width: 100%;
}

.seat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.attendee-name-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attendee-email-val {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticket-footer-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fafafa;
    border-top: 1px dashed #e2e8f0;
}

.qty-total-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
}

.pending-status-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d97706;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* Detailed Booking Modal */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-card {
    background: white;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.booking-modal-content {
    overflow-y: auto;
    padding: 40px;
}

.booking-modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.booking-cat-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f0fdf4;
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.booking-modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 10px;
}

.booking-id-tag {
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: monospace;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 16px;
}

.info-item svg {
    color: var(--primary-color);
    margin-top: 2px;
}

.info-item label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
}

.booking-details-section {
    margin-bottom: 35px;
}

.booking-details-section h3, .attendees-section h3, .modal-qr-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #475569;
}

.amount-val {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.1rem;
}

.status-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.status-banner.confirmed { background: #f0fdf4; color: #166534; }
.status-banner.pending-verification { background: #fffbeb; color: #92400e; }
.status-banner.declined { background: #fef2f2; color: #991b1b; }
.status-banner.used { background: #f1f5f9; color: #475569; }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.admin-notes-box {
    background: #fdf2f0;
    border: 1px solid rgba(211, 118, 50, 0.15);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.admin-notes-box label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #b85e24;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.admin-notes-box p {
    font-size: 0.95rem;
    color: #92400e;
    line-height: 1.5;
}

.attendees-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.attendee-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 12px 18px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.attendee-avatar-sh {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.attendee-sh-info {
    flex: 1;
}

.attendee-sh-info .name {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
}

.attendee-sh-info .email {
    font-size: 0.8rem;
    color: #94a3b8;
}

.ticket-index-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    padding: 4px 10px;
    border-radius: 6px;
}

.modal-qr-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 24px;
    margin: 0 -10px;
}

.qr-help-text {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
}

.modal-qr-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.modal-qr-node {
    flex: 0 0 160px;
    text-align: center;
}

.modal-qr-wrapper {
    background: white;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.qr-node-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}

@media (max-width: 600px) {
    .booking-modal-content { padding: 30px 20px; }
    .booking-modal-title { font-size: 1.8rem; }
    .booking-info-grid { grid-template-columns: 1fr; }
}

/* --- DANGER ZONE & DELETE MODAL (Instagram/Facebook Style) --- */

.danger-zone-card {
    margin-top: 40px;
    padding: 24px;
    background: #fff;
    border: 1px solid #fee2e2;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.03);
}

.danger-zone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #dc2626;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.danger-zone-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.danger-zone-trigger {
    width: 100%;
    padding: 14px;
    background: white;
    color: #dc2626;
    border: 1.5px solid #dc2626;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.danger-zone-trigger:hover {
    background: #fef2f2;
    transform: translateY(-1px);
}

/* Delete Modal Overlay */
.delete-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.delete-modal-card {
    background: white;
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.delete-modal-icon-ring {
    width: 80px;
    height: 80px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.1);
}

.delete-modal-badge {
    background: #dc2626;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.delete-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.delete-modal-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.delete-modal-desc strong {
    color: #0f172a;
}

.delete-modal-confirm-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.delete-modal-confirm-box p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 600;
}

.delete-confirm-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.2s;
    text-align: center;
    letter-spacing: 2px;
}

.delete-confirm-input:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.delete-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delete-confirm-btn {
    width: 100%;
    padding: 16px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.delete-confirm-btn:hover:not(:disabled) {
    background: #b91c1c;
    transform: translateY(-1px);
}

.delete-confirm-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.delete-cancel-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #64748b;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.delete-cancel-btn:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.shake-error {
    animation: shake 0.4s ease-in-out;
    border-color: #dc2626 !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.btn-loader-pulse {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}
.admin-page {
  padding: 80px 0;
  background-color: #fcfcfc;
  min-height: 100vh;
}

.admin-header {
  margin-bottom: 40px;
}

.admin-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-title-group {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.mobile-tabs-toggle {
  display: none;
  background: white;
  border: none;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mobile-tabs-toggle:hover {
  background: #fdf2f0;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.admin-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 5px;
  line-height: 1;
}

.admin-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.cms-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card h2 {
  font-size: 1.5rem;
  color: #333;
}

.list-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 15px;
}

.btn-reset {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #f5f5f5;
  color: #888;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset:hover {
  background-color: #eee;
  color: #555;
}

.cms-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.cms-form-section {
  position: relative;
  transition: opacity 0.3s ease;
}

.cms-form-section.saving {
  opacity: 0.7;
  pointer-events: none;
}

.btn-save.loading {
  background-color: #3d5436;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background-color: #fdfdfd;
}

/* --- CMS Friendly Editor Styles --- */
.cms-section-header {
  grid-column: span 2;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #1e293b;
  margin: 30px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cms-section-header::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 4px;
}

.cms-list-item-group {
  grid-column: span 2;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.cms-list-item-group:hover {
  background: #f1f5f9;
  border-color: var(--primary-color);
}

.cms-list-item-group .item-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.image-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.image-input-wrapper input {
  width: 100%;
  padding-right: 45px;
}

.image-url-upload-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.image-url-upload-group input {
  flex: 1;
}

.image-url-upload-group .admin-file-btn {
  white-space: nowrap;
}

.itinerary-cms-section {
  margin-top: 10px;
  padding: 24px;
  background-color: #fafafa;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
}

.img-size-hint {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 5px 12px;
  letter-spacing: 0.3px;
}

.duration-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.duration-separator {
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 5px;
}

.duration-inputs .aesthetic-picker-container {
  flex: 1;
}

.image-upload-box {
  width: 100%;
  height: 200px;
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.image-upload-box:hover {
  border-color: var(--primary-color);
  background: #fffaf7;
}

.image-upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-upload-box span {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95rem;
}

.sub-section-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

.itinerary-inputs {
  display: grid;
  grid-template-columns: 140px 1.2fr 1fr auto;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.itinerary-inputs input {
  font-size: 0.95rem;
  padding: 12px;
  height: 44px;
  border: 1.5px solid #eee;
  border-radius: 10px;
  background: white;
}

.itinerary-inputs.inclusion-row {
  grid-template-columns: 1fr auto;
}

.itinerary-inputs.gallery-row {
  grid-template-columns: 1fr auto auto;
}

.btn-add-step {
  padding: 10px;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  min-width: 44px;
  height: 44px;
}

.btn-add-step:hover {
  background-color: #dcfce7;
  transform: scale(1.05);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.admin-tabs button {
  padding: 10px 18px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  white-space: nowrap;
}

.admin-tabs button:hover {
  background: rgba(0, 0, 0, 0.03);
  color: #1e293b;
  transform: translateY(-1px);
}

.admin-tabs button.active {
  background: #1e293b;
  color: white;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.25);
}

.admin-tabs button.btn-cancel.mobile-logout {
  margin-left: auto;
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid #ffe4e6;
}

.admin-tabs button.btn-cancel.mobile-logout:hover {
  background: #be123c;
  color: white;
}

@media (max-width: 768px) {
  .admin-tabs {
    flex-wrap: wrap;
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  .admin-tabs button.btn-cancel.mobile-logout {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

.admin-file-btn {
  position: relative;
  background: #f1f5f9;
  padding: 0 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
}

.admin-file-btn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.admin-file-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.full-width {
  grid-column: 1 / -1 !important;
}

/* --- Premium CMS Gateway Styles --- */
.admin-auth-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c0d0c;
  overflow: hidden;
  z-index: 10000;
  font-family: var(--font-body);
}

.auth-glow-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(211, 118, 50, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(74, 103, 65, 0.15) 0%, transparent 40%);
  animation: glowMove 15s infinite alternate ease-in-out;
}

@keyframes glowMove {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(20px, 20px);
  }
}

.admin-login-card-premium {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: cardFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-badge {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-color), #f97316);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 10px 20px rgba(211, 118, 50, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.admin-login-card-premium:hover .login-badge {
  transform: rotate(0deg) scale(1.05);
}

.login-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.login-header p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.premium-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-field .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 20px;
  color: #64748b;
  transition: color 0.3s ease;
}

.auth-field input {
  width: 100%;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 18px 18px 52px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.auth-field input:focus {
  border-color: var(--primary-color);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 0 0 4px rgba(211, 118, 50, 0.15);
}

.auth-field input:focus+.field-icon {
  color: var(--primary-color);
}

.btn-auth-unlock {
  background: white;
  color: #0c0d0c;
  border: none;
  border-radius: 16px;
  padding: 18px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-auth-unlock:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(211, 118, 50, 0.2);
}

.btn-auth-unlock:active {
  transform: translateY(0);
}

.login-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.login-footer p {
  color: #475569;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .admin-login-card-premium {
    padding: 32px 24px;
    margin: 20px;
    border-radius: 24px;
  }

  .login-header h2 {
    font-size: 1.8rem;
  }
}

.added-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.added-step-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: white;
  border-radius: 10px;
  border: 1px solid #eee;
}

.step-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-nr {
  width: 24px;
  height: 24px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.step-txt {
  font-size: 0.9rem;
}

.btn-remove-step {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 5px;
}

/* New CMS Sections */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.admin-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.admin-tag.editing {
  border-color: var(--primary-color);
  background-color: #fffaf7;
  box-shadow: 0 0 0 2px rgba(211, 118, 50, 0.1);
}

.tag-icon-preview {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--primary-color);
  font-weight: 700;
  background: rgba(211, 118, 50, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

.tag-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  border-left: 1px solid #e2e8f0;
  padding-left: 8px;
}

.tag-actions button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
  transition: all 0.2s ease;
}

.tag-actions button:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.tag-actions button:last-child:hover {
  color: #ef4444;
}

.added-step-item.editing {
  border-color: var(--primary-color);
  background-color: #fffaf7;
  box-shadow: 0 0 15px rgba(211, 118, 50, 0.05);
}

.step-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-edit-step {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.btn-edit-step:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.admin-img-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.admin-img-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fdfdfd;
}

.admin-img-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.admin-img-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.btn-remove-img {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.save-success-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #15803d;
  background-color: #f0fdf4;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid #bbf7d0;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.1);
  animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
}

.btn-save,
.btn-cancel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-save {
  background-color: var(--primary-color);
  color: white;
}

.btn-save:hover {
  background-color: #3d5436;
  transform: translateY(-2px);
}

.btn-save:disabled,
.btn-cancel:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spin-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.btn-cancel {
  background-color: #eee;
  color: #666;
}

.btn-cancel:hover {
  background-color: #e5e5e5;
}

/* List Styles */
.admin-event-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 5px;
}

.admin-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  background: #fcfcfc;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.admin-event-item:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transform: translateX(5px);
}

.admin-event-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: #fdfdfd;
}

.admin-event-img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.admin-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.admin-event-details {
  flex: 1;
}

.admin-event-details h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #333;
}

.admin-event-details p {
  font-size: 0.85rem;
  color: #888;
}

.admin-event-actions {
  display: flex;
  gap: 8px;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-icon.edit {
  background-color: #f0f7ff;
  color: #3b82f6;
}

.btn-icon.edit:hover {
  background-color: #dbeafe;
}

.btn-icon.delete {
  background-color: #fff1f2;
  color: #e11d48;
}

.btn-icon.delete:hover {
  background-color: #ffe4e6;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .admin-page {
    padding: 60px 0;
  }

  .cms-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .admin-header h1 {
    font-size: 2.2rem;
  }

  .mobile-tabs-toggle {
    display: flex;
  }

  .logout-desktop {
    display: none;
  }

  .admin-tabs {
    display: none;
    /* Drawer mode */
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1600;
    padding: 100px 20px 40px;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    transition: left 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-y: auto;
    gap: 10px;
  }

  .admin-tabs.mobile-show {
    display: flex;
    left: 0;
  }

  .admin-tabs button {
    width: 100%;
    justify-content: flex-start !important;
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 14px;
    background: #f9f9f9;
    border: 1px solid transparent;
  }

  .admin-tabs button.active {
    background: #fdf2f0;
    border-color: rgba(211, 118, 50, 0.2);
  }

  .mobile-logout {
    display: flex;
    margin-top: auto;
    background: #fff5f5 !important;
    color: #ff5e5e !important;
    border: 1px solid #fee2e2 !important;
    font-weight: 700;
  }

  .card {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .itinerary-inputs {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
    background: #fafafa;
    border-radius: 12px;
  }

  .form-actions {
    flex-direction: column-reverse;
    gap: 12px;
    width: 100%;
  }

  .btn-save,
  .btn-cancel {
    width: 100%;
    justify-content: center;
  }

  .admin-event-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .admin-event-actions {
    width: 100%;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-inputs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .itinerary-inputs.inclusion-row,
  .itinerary-inputs.gallery-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .admin-header h1 {
    font-size: 1.8rem;
  }

  .admin-header p {
    font-size: 0.95rem;
  }

  .card h2 {
    font-size: 1.25rem;
  }

  .save-success-msg {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.admin-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.app-meta {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4px;
}

/* Admin Profile Command Center */
.admin-profile-command-center {
  padding: 10px;
}

.command-header {
  margin-bottom: 20px;
}

.btn-back-text {
  background: none;
  border: none;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.btn-back-text:hover {
  color: #1e293b;
}

.command-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.p-user-meta-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.p-user-avatar img,
.avatar-letter {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-letter {
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #64748b;
}

.p-user-info h3 {
  font-size: 1.2rem;
  color: #1e293b;
  margin: 0;
}

.p-user-info p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 2px 0 8px;
}

.p-level-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f9ff;
  color: #0369a1;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.p-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.s-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
}

.s-val {
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 700;
}

.manual-impact-form {
  background: #f8fafc;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.manual-impact-form h4 {
  color: #1e293b;
  margin-bottom: 15px;
}

.impact-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.command-history {
  background: white;
  padding: 25px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  height: max-content;
}

.command-history h4 {
  margin-bottom: 20px;
  color: #1e293b;
}

.mini-activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-act-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.act-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.act-main strong {
  font-size: 0.95rem;
  color: #1e293b;
}

.act-main span {
  font-size: 0.8rem;
  color: #64748b;
}

.act-points {
  font-weight: 700;
  font-size: 0.9rem;
}

.act-points.pos {
  color: #10b981;
}

.act-points.neg {
  color: #f43f5e;
}

.btn-del-mini {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}

.btn-del-mini:hover {
  color: #f43f5e;
}

@media (max-width: 992px) {
  .command-grid {
    grid-template-columns: 1fr;
  }
}

.image-upload-box {
  width: 100%;
  height: 150px;
  border: 2px dashed #eee;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.image-upload-box:hover {
  border-color: var(--primary-color);
  background: #f0f4ef;
}

.image-upload-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-upload-box span {
  color: #888;
  font-size: 0.9rem;
}

.mini-act-main {
  display: flex;
  flex-direction: column;
}

.mini-act-date {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* --- NEW FULL SCREEN DETAIL VIEWS --- */
.cms-layout-full {
  grid-column: span 2;
  width: 100%;
}

.cms-detail-view {
  animation: fadeIn 0.4s ease-out;
}

.detail-header {
  margin-bottom: 30px;
  padding: 0 10px;
}

.detail-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-title h1 {
  font-size: 2.2rem;
  margin: 0;
  color: #0f172a;
}

.detail-title p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 1.1rem;
}

.btn-back-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #64748b;
}

.btn-back-circle:hover {
  background: #f8fafc;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.detail-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  margin-bottom: 30px;
}

/* Profile Hero */
.profile-hero {
  background: linear-gradient(135deg, #fff 0%, #fdf2f0 100%);
}

.p-hero-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.p-hero-avatar {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.p-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-hero-info h2 {
  font-size: 1.8rem;
  margin: 0;
}

.p-hero-info p {
  color: #64748b;
  margin: 5px 0 15px;
}

.p-badges {
  display: flex;
  gap: 10px;
}

.p-badge {
  padding: 6px 12px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.p-badge.points {
  background: #fdf2f0;
  color: var(--primary-color);
  border-color: #fce4e0;
}

/* Forms in Detail */
.btn-save-large {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-save-large:hover {
  background: #bd6a2d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(211, 118, 50, 0.2);
}

/* Timeline */
.activity-timeline {
  margin-top: 20px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 25px;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7.5px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: #e2e8f0;
}

.timeline-item:last-child::after {
  display: none;
}

.time-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid white;
  box-shadow: 0 0 0 1px #e2e8f0;
  z-index: 1;
}

.time-content {
  flex: 1;
}

.time-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time-header strong {
  color: #1e293b;
}

.time-header .pts {
  color: #10b981;
  font-weight: 700;
}

.time-content .date {
  font-size: 0.8rem;
  color: #94a3b8;
  display: block;
  margin-top: 4px;
}

/* Analytics Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box-large {
  background: white;
  padding: 25px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  text-align: center;
}

.stat-box-large .s-val {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box-large .s-label {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.stat-box-large.success .s-val {
  color: #10b981;
}

.stat-box-large.pending .s-val {
  color: #f59e0b;
}

/* Roster Table */
.roster-table {
  width: 100%;
  border-collapse: collapse;
}

.roster-table th {
  text-align: left;
  padding: 15px;
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #f1f5f9;
}

.roster-table td {
  padding: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.p-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-cell img,
.p-letter {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.p-letter {
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #64748b;
}

.p-cell strong {
  display: block;
  font-size: 0.95rem;
  color: #1e293b;
}

.p-cell small {
  color: #94a3b8;
  font-size: 0.8rem;
}

.status-pill {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pill.confirmed {
  background: #fffbeb;
  color: #b45309;
}

.status-pill.used {
  background: #f0fdf4;
  color: #15803d;
}

.checkin-badge {
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

/* Event Mini Preview */
.event-mini-preview {
  padding: 0;
  overflow: hidden;
}

.event-mini-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-mini-preview .e-info {
  padding: 25px;
}

.event-mini-preview h3 {
  margin: 0 0 15px;
  font-size: 1.3rem;
}

.event-mini-preview p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  margin: 8px 0;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }
}

.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.admin-bookings-modal {
  background: white;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.4rem;
  color: #1e293b;
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}

.bookings-table-container {
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
}

.bookings-table th {
  background: #f8fafc;
  text-align: left;
  padding: 15px 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
}

.bookings-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.attendee-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.a-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.a-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-info {
  display: flex;
  flex-direction: column;
}

.a-name {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.95rem;
}

.a-email {
  font-size: 0.8rem;
  color: #94a3b8;
}

.status-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pill.confirmed {
  background: #e0f2fe;
  color: #0369a1;
}

.status-pill.used {
  background: #dcfce7;
  color: #15803d;
}

.status-pill.pending {
  background: #fef3c7;
  color: #92400e;
}

.checkin-time {
  font-size: 0.85rem;
  color: #1e293b;
  font-weight: 500;
}

.not-visited {
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
}

.empty-state-box {
  text-align: center;
  padding: 60px 0;
  color: #94a3b8;
}

.loader-box {
  text-align: center;
  padding: 40px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 600px) {
  .admin-bookings-modal {
    max-height: 95vh;
    border-radius: 0;
  }

  .bookings-table th:nth-child(3),
  .bookings-table td:nth-child(3) {
    display: none;
  }
}

.admin-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  animation: fadeIn 0.4s ease;
}

.success-content {
  text-align: center;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon-wrapper {
  color: #10b981;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.success-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.success-content p {
  color: #64748b;
  font-size: 1.1rem;
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.admin-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  animation: fadeIn 0.4s ease;
}

.success-content {
  text-align: center;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon-wrapper {
  color: #10b981;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.success-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.success-content p {
  color: #64748b;
  font-size: 1.1rem;
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Candidate Detail View Premium */
.detail-card-premium {
    padding: 0 !important;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
}

.candidate-detail-body {
    padding: 40px;
}

.candidate-header-info {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.candidate-avatar-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #f97316);
    color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(211, 118, 50, 0.2);
}

.candidate-main h1 {
    font-size: 2.2rem !important;
    margin-bottom: 8px !important;
    color: #0f172a !important;
}

.candidate-tags {
    display: flex;
    gap: 12px;
}

.c-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

.c-tag.job-title { background: #f0fdf4; color: #166534; }
.c-tag.date { background: #f8fafc; color: #64748b; border: 1px solid #e2e8f0; }

.candidate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.c-info-box {
    background: #f8fafc;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.c-info-box label, .candidate-message-box label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.c-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 600;
}

.btn-resume-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-resume-view:hover {
    background: var(--primary-color);
    color: white;
}

.candidate-message-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    margin-bottom: 30px;
}

.candidate-message-box p {
    color: #475569;
    line-height: 1.7;
    white-space: pre-line;
    font-size: 1.05rem;
}

.candidate-actions {
    display: flex;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.btn-archive {
    flex: 1;
    background: #fef2f2;
    color: #991b1b;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-archive:hover { 
    background: #fee2e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 27, 27, 0.1);
}



.btn-close-detail {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

.btn-close-detail:hover { background: #e2e8f0; color: #0f172a; }

.message-header-info { margin-bottom: 30px; }
.message-header-info h2 { font-size: 1.8rem !important; margin-bottom: 5px !important; }
.message-header-info p { color: #64748b; font-weight: 600; }

.empty-selection-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 30px;
    text-align: center;
    padding: 40px;
    color: #94a3b8;
}

.placeholder-content svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.placeholder-content h3 {
    color: #475569;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.placeholder-content p {
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

/* User Activity History Premium Styles */
.booking-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
}

.history-item-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.history-item-premium:hover {
    border-color: #cbd5e1;
    transform: translateX(5px);
}

.h-img, .h-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    flex-shrink: 0;
}

.h-icon-circle {
    background: #fff7ed;
    color: #ea580c;
}

.h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-info {
    flex-grow: 1;
}

.h-info h4 {
    margin: 0 0 2px 0 !important;
    font-size: 0.95rem !important;
    color: #1e293b;
}

.h-info p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    color: #64748b;
}

.h-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.h-status-badge {
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.h-status-badge.confirmed { background: #dcfce7; color: #15803d; }
.h-status-badge.pending { background: #fef9c3; color: #a16207; }
.h-status-badge.used { background: #f1f5f9; color: #64748b; }

.h-date {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Draft Buttons */
.btn-draft, .btn-draft-load {
    background: #f1f5f9;
    color: #475569;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-draft:hover { background: #e2e8f0; color: #1e293b; }
.btn-draft-load:hover { background: #dcfce7; color: #166534; }
.status-pill.confirmed { background: #f0fdf4; color: #16a34a; }
.status-pill.pending-verification { background: #fffbeb; color: #d97706; }
.status-pill.declined { background: #fef2f2; color: #dc2626; }
.status-pill.used { background: #f1f5f9; color: #64748b; }

.btn-approve {
    flex: 1;
    background-color: #22c55e;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-approve:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.btn-decline {
    flex: 1;
    background-color: transparent;
    color: #dc2626;
    border: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-decline:hover {
    color: #b91c1c;
    transform: translateY(-2px);
}

.btn-contact-email {
    flex: 1.5;
    background: #0f172a;
    color: white !important;
    border: none;
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-contact-email:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.admin-decline-modal {
    max-width: 500px;
    padding: 30px;
}

.admin-decline-modal h2 {
    color: #dc2626;
    margin-bottom: 10px;
}

.admin-decline-modal p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.admin-decline-modal textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.2s;
}

.admin-decline-modal textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-icon.duplicate {
  background-color: #fff7ed;
  color: #ea580c;
}

.btn-icon.duplicate:hover {
  background-color: #ffedd5;
}.aesthetic-picker-container {
  position: relative;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  width: 100%;
}

.picker-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background-color: #fff;
  border: 1.5px solid #eee;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  white-space: nowrap;
}

.picker-trigger:hover {
  border-color: #D37632;
  background-color: #fffaf7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.picker-trigger.active {
  border-color: #D37632;
  box-shadow: 0 0 0 4px rgba(211, 118, 50, 0.1);
  background-color: #fff;
}

.trigger-icon {
  color: #a0a0a0;
  transition: color 0.3s ease;
}

.picker-trigger:hover .trigger-icon,
.picker-trigger.active .trigger-icon {
  color: #D37632;
}

.picker-popover {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.1),
    0 5px 15px rgba(0,0,0,0.05);
  z-index: 10000;
  animation: popoverFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

/* ====================================
   Date Picker Popover Styles
   ==================================== */
.date-popover {
  width: 320px;
  padding: 24px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.current-month-year {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

.nav-btn {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: #fdf2f0;
  color: #D37632;
  border-color: #fdf2f0;
  transform: scale(1.05);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
}

.weekday {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day:not(.empty):hover {
  background: #fdf2f0;
  color: #D37632;
  transform: scale(1.1);
}

.calendar-day.selected {
  background: #D37632;
  color: white;
  box-shadow: 0 8px 16px rgba(211, 118, 50, 0.3);
  font-weight: 700;
  transform: scale(1.1);
}

.calendar-day.today {
  border: 1.5px solid #D37632;
  color: #D37632;
}

/* ====================================
   Time Picker Popover Styles
   ==================================== */
.time-popover {
  width: 320px;
}

.time-dial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}

.time-dial-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #1e293b;
}

.close-popover {
  background: #f1f5f9;
  border: none;
  color: #64748b;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-popover:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

.time-wheels-container {
  display: flex;
  padding: 20px 24px;
  height: 220px;
  gap: 12px;
  align-items: stretch;
  background: white;
  position: relative;
}

.time-wheels-container::before,
.time-wheels-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.time-wheels-container::before {
    top: 0;
    background: linear-gradient(180deg, white 0%, rgba(255,255,255,0) 100%);
}

.time-wheels-container::after {
    bottom: 0;
    background: linear-gradient(0deg, white 0%, rgba(255,255,255,0) 100%);
}

.time-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.column-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.wheels-scroll {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
}

.wheels-scroll::-webkit-scrollbar {
  display: none;
}

.wheel-item {
  padding: 10px 0;
  text-align: center;
  font-size: 1.15rem;
  color: #64748b;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.wheel-item:hover {
  background: #f8fafc;
  color: #1e293b;
}

.wheel-item.selected {
  background: #fdf2f0;
  color: #D37632;
  font-weight: 800;
  transform: scale(1.1);
}

.time-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e2e8f0;
  padding-top: 15px;
}

.time-spacer {
  width: 4px;
}

.time-popover-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
}

.current-selection-preview {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
}

.btn-confirm-time {
    background: #1e293b;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-confirm-time:hover {
    background: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* ====================================
   Mobile Responsive Styles
   ==================================== */
@media (max-width: 768px) {
  .picker-popover {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100vw !important;
    border-radius: 32px 32px 0 0;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .date-popover {
      padding: 32px 24px;
      height: 60vh;
  }

  .time-popover {
      height: auto;
  }
}
.privacy-page {
  background-color: #fafafa;
  min-height: 100vh;
}

.privacy-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  padding: 40px 0 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.privacy-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d5a43;
  margin-bottom: 6px;
  position: relative;
}

.privacy-hero .last-updated {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 40px 60px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.privacy-content section {
  margin-bottom: 50px;
}

.privacy-content section:last-child {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: #fdf2f0;
  color: #D37632;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.privacy-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.privacy-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.privacy-content li {
  padding: 14px 20px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 12px;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.privacy-content li::before {
  content: '→';
  color: #D37632;
  font-weight: 700;
}

.privacy-content li strong {
  color: #1e293b;
  min-width: 130px;
  display: inline-block;
}

.security-box {
  background: linear-gradient(135deg, #2d5a43 0%, #1e3a2d 100%);
  padding: 40px;
  border-radius: 20px;
  color: white;
  margin-top: 30px;
}

.security-box h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.security-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-card {
  background: #fdf2f0;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.contact-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a3a2a;
  margin-bottom: 4px;
}

.contact-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.btn-contact-privacy {
  background: #D37632;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-contact-privacy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(211, 118, 50, 0.2);
}

@media (max-width: 992px) {
  .privacy-container {
    margin: -40px 20px 80px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 60px 0 40px;
  }

  .privacy-hero h1 {
    font-size: 2.5rem;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  .privacy-content h2 {
    font-size: 1.4rem;
  }

  .security-box {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    margin: -15px 12px 40px;
    padding: 24px 18px;
  }

  .privacy-hero {
    padding: 50px 0 35px;
  }

  .privacy-hero h1 {
    font-size: 2rem;
  }
}.verify-page {
    min-height: 100vh;
    padding: 60px 20px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-background-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: 0;
}

.verify-page .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.v-loader-container {
    text-align: center;
    color: white;
}

.v-loader-container h2 {
    margin: 20px 0 10px;
    font-size: 1.8rem;
}

.v-loader-container p {
    opacity: 0.7;
}

.status-card-failed {
    background: white;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 30px 100px rgba(0,0,0,0.1);
    max-width: 450px;
    margin: 0 auto;
}

.fail-icon-box {
    color: #ef4444;
    margin-bottom: 25px;
}

.btn-return {
    display: inline-block;
    margin-top: 30px;
    background: #0f172a;
    color: white;
    padding: 14px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.v-pass-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
}

.v-pass-header {
    background: #0f172a;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(255,255,255,0.1);
}

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

.brand-logo {
    width: 36px;
    height: 36px;
    background: #d37632;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.2rem;
}

.brand-name {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.v-status-badge {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.status-valid {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.status-used {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.v-pass-body {
    padding: 40px;
}

.v-info-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
}

.v-user-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v-user-photo-box {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    overflow: hidden;
    background: #f8fafc;
    border: 4px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.v-user-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-user-details .label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.v-user-details h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #1e293b;
}

.v-user-details .sub-detail {
    font-size: 0.9rem;
    color: #64748b;
}

.v-ticket-stats {
    display: flex;
    gap: 30px;
}

.v-stat-node .label {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.v-stat-node .val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.v-event-info {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 20px;
}

.v-event-img {
    position: relative;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
}

.v-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #d37632;
    text-transform: uppercase;
    z-index: 2;
}

.v-event-title {
    font-size: 1.6rem;
    margin: 0 0 15px;
    color: #0f172a;
    line-height: 1.2;
}

.v-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.v-ngo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.85rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.v-ngo-row strong {
    color: #475569;
}

.v-pass-footer {
    padding: 30px 40px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.v-checkin-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.v-venue-notice {
    background: #fff9eb;
    border: 1px solid #fee08b;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #854d0e;
    font-size: 0.85rem;
    font-weight: 500;
}

.v-key-input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v-key-input-box input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
    background: white;
}

.v-key-input-box input:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}

.v-key-input-box input.input-error {
    border-color: #ef4444;
    background: #fef2f2;
}

.error-text {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 5px;
}

.v-btn-checkin {
    background: #0f172a;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.v-btn-checkin:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.v-btn-checkin:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.v-security-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.v-back-link {
    text-align: center;
    margin-top: 40px;
}

.v-back-link a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .v-pass-header, .v-info-primary, .v-pass-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .v-ticket-stats {
        justify-content: center;
    }
    .v-event-info {
        grid-template-columns: 1fr;
    }
    .v-user-profile {
        flex-direction: column;
    }
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.v-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.v-success-modal {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.v-success-icon-ring {
    width: 100px;
    height: 100px;
    background: #f0fdf4;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.05);
}

.v-success-modal h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 15px;
}

.v-success-modal p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.v-success-modal p strong {
    color: #0f172a;
}

.v-next-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.v-btn-next {
    background: #0f172a;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    transition: all 0.3s;
}

.v-btn-next:hover {
    transform: scale(1.05);
    background: #1e293b;
}

.v-hint {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

/* Premium ID Card Styles */
.v-user-photo-box.large {
    width: 140px;
    height: 140px;
    border-radius: 30px;
    border: 6px solid #f8fafc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.v-attendee-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-user-details-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v-ticket-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 6px;
    letter-spacing: 1px;
    width: fit-content;
}

.v-attendee-name {
    font-size: 2.2rem !important;
    font-family: var(--font-heading);
    color: #0f172a;
    margin: 0 !important;
    letter-spacing: -0.5px;
}

.v-details-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.v-detail-node {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.95rem;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.v-detail-node span {
    font-weight: 500;
}

.v-initials-avatar {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .v-user-photo-box.large {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    .v-user-details-premium {
        text-align: center;
        align-items: center;
    }
    .v-attendee-name {
        font-size: 1.8rem !important;
    }
}
/*$vite$:1*/