/* Clean & Simple Seat Reservation Design */

/* Base Layout */
.form-wrapper {
  background: #f8fafc;
  min-height: 100vh;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

/* Hero Section - Keep it clean */
.hero-header {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 30px;
}

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

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.event-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.event-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-badge.seated {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #dcfce7;
}

.event-badge.general {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fef3c7;
}

.event-badge.event-category {
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #e0e7ff;
}

.event-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(45deg, #ef4444, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
}

/* Venue Section - Much Simpler */
.venue-hero-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
}

.section-header {
  text-align: center;
  padding: 30px 20px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.section-title-large {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-subtitle {
  color: #64748b;
  font-size: 1rem;
}

/* Simple Controls */
.venue-controls-compact {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.controls-compact {
  display: flex;
  gap: 8px;
}

.btn-control-compact {
  padding: 8px 16px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #374151;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-control-compact:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.view-status-compact {
  color: #16a34a;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Clean Venue Layout - Sidebar Initially Hidden */
.venue-main-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  /*min-height: 500px;*/
  position: relative;
  height: fit-content
}

.venue-display {
  background: white;
  position: relative;
  overflow: hidden;
  padding: 20px;
  transition: grid-template-columns 0.3s ease;
}

.venue-sidebar {
  background: #f8fafc;
  border-left: 1px solid #e5e7eb;
  padding: 20px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
}

.venue-sidebar.show {
  transform: translateX(0);
}

.venue-main-container.sidebar-open {
  grid-template-columns: 1fr 300px;
}

.venue-main-container.sidebar-open .venue-sidebar {
  position: static;
  transform: translateX(0);
  box-shadow: none;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 11;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #374151;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-toggle:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.sidebar-toggle.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.sidebar-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-subtitle {
  color: #64748b;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* Simple Legend */
.legend-section {
  margin-bottom: 20px;
}

.legend-section-title {
  font-weight: 600;
  color: #374151;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legend-items-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legend-item-sidebar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #4b5563;
  padding: 6px 0;
}

.legend-dot-sidebar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* SVG Venue */
#svgVenue {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: white;
  cursor: grab;
  /*border: 1px solid #e5e7eb;*/
}

#svgVenue.dragging {
  cursor: grabbing;
}

#svgVenue svg {
  width: 100%;
  height: 100%;
  background: white;
  transform-origin: center center;
}



/* General Admission - Clean */
.general-admission-interface {
  padding: 40px;
  text-align: center;
  background: white;
  border-radius: 12px;
  margin: 20px;
}

.ga-header h3 {
  color: #1e293b;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 600;
}

.ga-header p {
  color: #64748b;
  margin-bottom: 30px;
}

.ticket-selector {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover:not(:disabled) {
  border-color: #3b82f6;
  color: #3b82f6;
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-display {
  text-align: center;
  padding: 0 20px;
}

.quantity-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  display: block;
}

.quantity-label {
  color: #64748b;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-display {
  text-align: center;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #16a34a;
  display: block;
}

.price-per-ticket {
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Checkout Section - Fix Visibility Issues */
.checkout-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-top: 30px;
  display: block !important; /* Force display */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-section.hidden {
  display: none !important;
}

/* Make sure section header is visible */
.checkout-section .section-header {
  text-align: center;
  padding: 0 0 30px 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 30px;
  display: block;
}

.selection-panel, .price-panel, .customer-panel {
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.panel-header {
  padding: 20px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-title {
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.selection-count, .price-badge {
  background: #3b82f6;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.price-badge {
  background: #16a34a;
}

.selection-content, .price-content {
  padding: 20px;
}

.customer-form {
  padding: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  font-size: 0.9rem;
  display: block;
}

.required {
  color: #ef4444;
}

.form-input {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* Loading & Empty States */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  color: #64748b;
}

.spinner-icon i {
  font-size: 2rem;
  color: #3b82f6;
  animation: spin 1s linear infinite;
}

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

.empty-selection-state {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
}

.empty-icon i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-message h4 {
  color: #374151;
  margin-bottom: 8px;
}

/* Notifications */
.notification-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .venue-main-container {
    grid-template-columns: 1fr !important;
  }
  
  .venue-sidebar {
    position: fixed !important;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 20;
    width: 280px;
  }
  
  .venue-sidebar.show {
    transform: translateX(0);
  }
  
  .sidebar-toggle {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 21;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .controls-compact {
    flex-direction: column;
    gap: 8px;
  }
  
  .venue-display {
    height: 300px;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Hide old elements */
.seat-legend-container,
.venue-stage-indicator,
.stage-bar,
.stage-label {
  display: none !important;
}
/* Sector boundary and admin mode styles */
.sector-boundary {
    transition: stroke-opacity 0.3s ease, fill-opacity 0.3s ease;
}

.sector-boundary:hover {
    stroke-opacity: 1 !important;
    fill-opacity: 0.1 !important;
}

.sector-label {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    user-select: none;
    pointer-events: none;
}

/* Admin mode seat indicators */
.admin-mode .seat {
    transition: opacity 0.2s ease;
}

.admin-mode .seat-sold {
    opacity: 0.9;
}

.admin-mode .seat-reserved {
    opacity: 0.9;
}

.admin-mode .seat-subscribed {
    opacity: 0.9;
}

/* Enhanced seat tooltips for admin */
.admin-mode .seat[title]:hover::after {
    content: attr(title);
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: pre-line;
    z-index: 1000;
    pointer-events: none;
    max-width: 200px;
}

/* Sector boundary controls */
.sector-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    display: flex;
    gap: 8px;
}

.sector-toggle-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sector-toggle-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sector-toggle-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #2563eb;
}

/* Debug mode styles */
.debug-mode .sector-boundary {
    stroke: #ff0000 !important;
    stroke-width: 3 !important;
    stroke-dasharray: none !important;
}

.debug-mode .sector-label {
    font-size: 20px !important;
    fill: #ff0000 !important;
    stroke: white !important;
    stroke-width: 4 !important;
}


    .hero-header {
      position: relative;
      background: linear-gradient(135deg, #f0f4f8 0%, #e0e8f0 100%);
      color: #2d3748;
      padding: 20px 0;
      margin-bottom: 1.5rem;
      overflow: hidden;
    }

    .hero-backdrop {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
      opacity: 0.8;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .event-header-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    /* Event Title Area - Inline */
    .event-title-area {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex: 1;
      min-width: 0;
    }

    .event-category-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: #FFD700;
      color: #333;
      padding: 3px 8px;
      border-radius: 8px;
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      white-space: nowrap;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .event-main-title {
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1.1;
      margin: 0;
      color: #2d3748;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .event-type-indicator {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .event-type-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.3rem 0.6rem;
      border-radius: 12px;
      font-weight: 500;
      font-size: 0.7rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(226, 232, 240, 0.5);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      white-space: nowrap;
      transition: all 0.2s ease;
    }

    .event-type-badge:hover {
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .event-type-badge.seated-event {
      color: #059669;
      border-color: rgba(34, 197, 94, 0.3);
    }

    .event-type-badge.general-event {
      color: #2563eb;
      border-color: rgba(59, 130, 246, 0.3);
    }

    /* Event Details Grid - Inline Small */
    .event-details-grid {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .detail-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(226, 232, 240, 0.5);
      border-radius: 8px;
      padding: 0.5rem 0.75rem;
      transition: all 0.2s ease;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }

    .detail-card:hover {
      background: rgba(255, 255, 255, 0.95);
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border-color: rgba(239, 68, 68, 0.3);
    }

    .detail-icon {
      background: linear-gradient(45deg, #ef4444, #dc2626);
      color: white;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      box-shadow: 0 1px 4px rgba(239, 68, 68, 0.3);
      flex-shrink: 0;
    }

    .detail-content {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .detail-label {
      font-size: 0.6rem;
      color: #64748b;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      line-height: 1;
    }

    .detail-value {
      font-size: 0.8rem;
      font-weight: 600;
      line-height: 1.1;
      color: #1e293b;
    }

    .detail-address {
      font-size: 0.6rem;
      color: #64748b;
      margin-top: 0.1rem;
      line-height: 1.1;
    }

    /* Venue Location Map Section (GEOGRAPHICAL MAP - SEPARATE FROM SEAT MAP) */
    .venue-location-section {
      background: #f8fafc;
      border-radius: 1rem;
      padding: 2rem;
      margin-bottom: 2rem;
      border: 1px solid #e2e8f0;
    }

    .location-map-container {
      position: relative;
      margin-top: 1.5rem;
    }

    .venue-location-wrapper {
      position: relative;
      height: 400px;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .venue-location-map {
      width: 100%;
      height: 100%;
      border-radius: 1rem;
    }

    .location-overlay {
      position: absolute;
      top: 1rem;
      left: 1rem;
      right: 1rem;
      z-index: 1000;
      pointer-events: none;
    }

    .venue-location-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      pointer-events: auto;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .venue-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 0.5rem;
    }

    .venue-address {
      font-size: 0.875rem;
      color: #64748b;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .location-actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .btn-location-action {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: #3b82f6;
      color: white;
      border: none;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .btn-location-action:hover {
      background: #2563eb;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

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

    /* Custom Map Marker Styles */
    .custom-venue-marker {
      background: none;
      border: none;
    }

    .venue-marker-inner {
      width: 40px;
      height: 40px;
      background: #3b82f6;
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
      border: 3px solid white;
    }

    .venue-marker-inner i {
      color: white;
      font-size: 18px;
      transform: rotate(45deg);
    }

    /* Map Popup Styles */
    .venue-popup {
      text-align: center;
      padding: 0.5rem;
    }

    .venue-popup h4 {
      margin: 0 0 0.5rem 0;
      color: #1e293b;
      font-weight: 600;
    }

    .venue-popup p {
      margin: 0 0 1rem 0;
      color: #64748b;
      font-size: 0.875rem;
    }

    .popup-actions {
      display: flex;
      justify-content: center;

    }.popup-actions a {

      color: white;
    }

    .popup-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: #3b82f6;
      color: white;
      text-decoration: none;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      transition: background 0.2s ease;
    }

    .popup-link:hover {
      background: #2563eb;
    }
    .trust-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      border-color: rgba(59, 130, 246, 0.3);
    }
    
    .trust-item:hover .trust-icon-bg {
      transform: scale(1.1);
      box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    }
    
    .trust-item:nth-child(2):hover .trust-icon-bg {
      box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    }
    
    .trust-item:nth-child(3):hover .trust-icon-bg {
      box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    }
    
    .help-notice:hover {
      background: rgba(239, 68, 68, 0.08);
      border-color: rgba(239, 68, 68, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(239, 68, 68, 0.1);
    }
    
    @media (max-width: 768px) {
      .trust-section {
        padding: 2.5rem 0 !important;
        margin: 2rem 0 !important;
        border-radius: 1rem !important;
      }
      
      .container {
        padding: 0 1rem !important;
      }
      
      .trust-main-title {
        font-size: 2rem !important;
      }
      
      .trust-indicators {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
      }
      
      .trust-item {
        padding: 1.5rem !important;
      }
      
      .trust-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 1rem !important;
      }
      
      .trust-icon {
        font-size: 1.5rem !important;
      }
      
      .help-notice {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem !important;
      }
    }
    /* Responsive Design - Single Line Compact */
    @media (max-width: 1024px) {
      .event-header-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      
      .event-title-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      
      .event-main-title {
        font-size: 1.6rem;
        white-space: normal;
      }
    }

    @media (max-width: 768px) {
      .hero-header {
        padding: 15px 0;
      }

      .hero-content {
        padding: 0 1rem;
      }

      .event-header-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .event-title-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
      }

      .event-main-title {
        font-size: 1.4rem;
        white-space: normal;
      }

      .event-type-indicator {
        gap: 0.4rem;
      }

      .event-type-badge, .capacity-indicator {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
      }

      .event-details-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
      }

      .detail-card {
        padding: 0.4rem 0.6rem;
        width: 100%;
        justify-content: flex-start;
      }

      .detail-icon {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.6rem;
      }

      .detail-value {
        font-size: 0.75rem;
      }

      .detail-label {
        font-size: 0.55rem;
      }

      .venue-map-section {
        padding: 1rem;
        margin: 0 -1rem 2rem -1rem;
        border-radius: 0;
      }

      .venue-map-wrapper {
        height: 300px;
      }

      .map-overlay {
        position: static;
        margin-bottom: 1rem;
      }

      .venue-info-card {
        position: relative;
        margin-bottom: 1rem;
        padding: 1rem;
      }

      .map-actions {
        justify-content: center;
      }
    }

    /* Section Headers Enhancement */
    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-title-large {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 0.5rem;
    }

    .section-icon-large {
      color: #3b82f6;
    }

    .section-subtitle {
      color: #64748b;
      font-size: 1.125rem;
      margin: 0;
    }