/* ===== ENHANCED HEADER STYLES ===== */

/* Logo and Branding Improvements */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.logo-container:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.05);
}

.logo-icon i {
  font-size: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.logo-icon:hover .logo-image {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary_color);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: -2px;
}

/* Mobile Header Optimization */
@media (max-width: 768px) {
  .logo-main {
    font-size: 20px;
  }
  
  .logo-tagline {
    font-size: 8px;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    background: transparent;
  }
  
  .logo-icon i {
    font-size: 16px;
  }
  
  .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Mobile Header Styles */
.mobile-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 1000;
}

.mobile-header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-header .navbar-brand {
  flex-grow: 1;
  margin-right: 0;
}

.mobile-header .btn-link {
  color: var(--primary_color);
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-header .btn-link:hover {
  background: rgba(var(--primary_color_rgb), 0.1);
  color: var(--primary_color);
}

.mobile-header .navbar-toggler {
  border: none;
  padding: 0.25rem;
  background: transparent;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-header .profileDropdown .dropdown-toggle {
  padding: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.mobile-header .header-profile-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary_color);
  transition: all 0.3s ease;
}

.mobile-header .header-profile-img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(254, 192, 9, 0.3);
}

.mobile-header .navbar-collapse {
  background: white;
  border-top: 1px solid #eee;
  margin-top: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-header .navbar-nav {
  width: 100%;
}

.mobile-header .nav-item {
  margin-bottom: 0.5rem;
}

.mobile-header .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #333;
  font-weight: 500;
}

.mobile-header .nav-link:hover,
.mobile-header .nav-link.active {
  background: rgba(var(--primary_color_rgb), 0.1);
  color: var(--primary_color);
}

.mobile-header .nav-link i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.mobile-header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  z-index: 1000;
  min-width: 200px;
}

.mobile-header .dropdown-item {
  padding: 0.75rem 1rem;
  border-radius: 0;
  color: #4a5568;
  font-size: 14px;
  display: block;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease;
}

.mobile-header .dropdown-item:hover,
.mobile-header .dropdown-item.active {
  background: rgba(var(--primary_color_rgb), 0.1);
  color: var(--primary_color);
}

.mobile-header .dropdown-item:focus {
  outline: none;
  background: rgba(var(--primary_color_rgb), 0.1);
  color: var(--primary_color);
}

/* Mobile dropdown positioning fixes */
@media (max-width: 768px) {
  .mobile-header .nav-item.dropdown {
    position: relative;
  }
  
  .mobile-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    min-width: 250px;
    max-width: calc(100vw - 2rem);
    margin-left: 0;
    margin-right: 0;
  }
  
  .mobile-header .dropdown-menu.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .mobile-header .dropdown-menu:not(.show) {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  
  .mobile-header .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }
}

/* Enhanced Hamburger Menu */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--primary_color);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Search Overlay */
.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-search-overlay.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.mobile-search-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  transform: translateY(50px);
  transition: all 0.3s ease;
}

.mobile-search-overlay.show .mobile-search-content {
  transform: translateY(0);
}

.mobile-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.mobile-search-header h4 {
  margin: 0;
  color: #333;
  font-weight: 600;
}

.close-mobile-search {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-mobile-search:hover {
  background: #f0f0f0;
  color: #333;
}

.mobile-search-form .search-field {
  margin-bottom: 1rem;
}

.mobile-search-form .search-field i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  z-index: 3;
}

.mobile-search-form .search-field .form-control {
  padding-left: 45px;
  height: 50px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-search-form .search-field .form-control:focus {
  border-color: var(--primary_color);
  box-shadow: 0 0 0 0.2rem rgba(254, 192, 9, 0.25);
}

/* Enhanced Header Visual Design */
.navbar-default.navbar-trans {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-default.navbar-trans.navbar-another {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

/* Enhanced Search Bar */
.search-location {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.search-location input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.search-location input:focus {
  outline: none;
  border-color: var(--primary_color);
  box-shadow: 0 0 0 0.2rem rgba(254, 192, 9, 0.25);
  background: white;
}

.search-location i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
}

/* Enhanced Navigation Links */
.navbar-nav .nav-link {
  position: relative;
  padding: 12px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 5px;
}

.navbar-nav .nav-link:hover {
  background: rgba(254, 192, 9, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  background: var(--primary_color);
  color: white;
  box-shadow: 0 4px 15px rgba(254, 192, 9, 0.3);
}

.navbar-nav .nav-link i {
  margin-right: 8px;
  font-size: 16px;
}

/* Enhanced Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 10px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.dropdown-item {
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 10px;
}

.dropdown-item:hover {
  background: rgba(254, 192, 9, 0.1);
  transform: translateX(5px);
}

.dropdown-item.active {
  background: var(--primary_color);
  color: white;
}

/* Profile Dropdown Enhancement */
.profileDropdown .dropdown-toggle {
  border: none;
  background: none;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.profileDropdown .dropdown-toggle:hover {
  background: rgba(254, 192, 9, 0.1);
  transform: scale(1.05);
}

.header-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--primary_color);
  object-fit: cover;
  transition: all 0.3s ease;
}

.header-profile-img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(254, 192, 9, 0.3);
}

/* Performance and UI Improvements */
.navbar-default {
  will-change: transform;
  transform: translateZ(0);
}

.navbar-nav .nav-link,
.dropdown-item,
.logo-container {
  will-change: transform;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus indicators for accessibility */
.nav-link:focus,
.dropdown-item:focus,
.search-location input:focus {
  outline: 2px solid var(--primary_color);
  outline-offset: 2px;
}

/* Performance and UI Enhancements */
.no-scroll {
  overflow: hidden;
}

.mobile-menu-open .navbar-collapse {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-top: 10px;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15) !important;
}

.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.search-location.focused input {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(254, 192, 9, 0.15);
}

.search-location.searching::after {
  content: '';
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary_color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* Smooth transitions for all interactive elements */
.navbar-nav .nav-link,
.dropdown-item,
.logo-container,
.search-location input,
.profileDropdown .dropdown-toggle {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced mobile responsiveness */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 12px;
    text-align: center;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(254, 192, 9, 0.1);
    transform: translateX(10px);
  }
  
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    background: rgba(254, 192, 9, 0.05);
    border-radius: 12px;
    margin: 10px 0;
  }
  
  .dropdown-item {
    margin: 5px 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .logo-container {
    gap: 6px;
  }
  
  .logo-main {
    font-size: 18px;
  }
  
  .logo-tagline {
    font-size: 7px;
  }
  
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .search-location {
    max-width: 100%;
  }
  
  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 12px 15px;
  }
}

/* Loading states */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Improved focus states */
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 192, 9, 0.25);
}

/* Smooth animations for better UX */
.animate-fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Enhanced visual feedback */
.navbar-nav .nav-link:active {
  transform: scale(0.95);
}

.dropdown-item:active {
  transform: scale(0.98);
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  .navbar-toggler,
  .nav-search,
  .profileDropdown .dropdown-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  
  .navbar-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== ENHANCED HOMEPAGE STYLES ===== */

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    /* Add spacing for desktop headers (top header + menu header) */
    margin-top: 140px; /* 68px (top header) + 72px (menu header) */
}

/* Mobile hero spacing */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 80px; /* Single mobile header height */
    }
}

.hero-slide {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

/* Hero background image class */
.hero-slide.bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 2rem 0;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary_color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Hero Search */
.hero-search-container {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto 3rem auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-field {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 3;
}

.search-field .form-control {
    padding-left: 45px;
    height: 50px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-field .form-control:focus {
    border-color: var(--primary_color);
    box-shadow: 0 0 0 0.2rem rgba(254, 192, 9, 0.25);
}

.btn-search {
    background: var(--primary_color);
    color: white;
    border: none;
    padding: 0 2rem;
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search:hover {
    background: #e6ac08;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 192, 9, 0.4);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary_color);
    border-color: white;
}

/* Hero Stats */
.hero-stats {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: -1px; /* Remove any gap */
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary_color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--primary_color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Card Styling */
.modern-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Event Cards */
.event-card {
    position: relative;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.btn-favorite {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
    text-decoration: none;
}

.btn-favorite:hover, .btn-favorite .fa-heart.active {
    background: #ff4757;
    color: white;
    transform: scale(1.1);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.badge-category {
    background: var(--primary_color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.urgency-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #ff4757;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: var(--primary_color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-time {
    color: #666;
    font-weight: normal;
    margin-left: auto;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.event-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: var(--primary_color);
    text-decoration: none;
}

.event-location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-pricing {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary_color);
}

.event-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.event-stats .stat-item {
    text-align: center;
    flex: 1;
}

.event-stats .stat-value {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.event-stats .stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-book {
    flex: 2;
    background: var(--primary_color);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-book:hover {
    background: #e6ac08;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 192, 9, 0.4);
    color: white;
    text-decoration: none;
}

.btn-details {
    flex: 1;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-details:hover {
    border-color: var(--primary_color);
    color: var(--primary_color);
    text-decoration: none;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

.feature-card {
    padding: 2rem 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light_primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary_color);
}

.feature-card:hover .feature-icon {
    background: var(--primary_color);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Categories Section */
.category-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-count {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-category {
    background: var(--primary_color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-category:hover {
    background: #e6ac08;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Blog Section */
.blog-card {
    position: relative;
}

.blog-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.blog-category-badge span {
    background: var(--primary_color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary_color);
    text-decoration: none;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.btn-read-more {
    color: var(--primary_color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: #e6ac08;
    text-decoration: none;
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: white;
    color: #333;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 70vh;
        padding: 2rem 0;
        /* Fix mobile background image zooming issues */
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    
    /* Mobile-specific hero background image fixes */
    .hero-slide.bg-image {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        /* Ensure the image covers the full area without excessive zooming */
        background-origin: border-box;
        background-clip: border-box;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-search-container {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem auto;
        max-width: 100%;
    }

    .search-input-group {
        flex-direction: column;
    }

    .search-field {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .btn-search {
        width: 100%;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .hero-slide {
        min-height: 60vh;
        /* Ensure images display properly on very small screens */
        background-size: cover;
        background-position: center center;
        background-attachment: scroll !important;
    }
    
    .hero-slide.bg-image {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll !important;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

/* ===== CONTACT PAGE DESIGN OPTIMIZATION ===== */

/* Optimize breadcrumb spacing - more compact */
.intro-single {
    padding: 3rem 0 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* Main contact section - compact and clean */
.contact {
    padding: 0.5rem 0 1.5rem 0;
}

/* Contact form styling - modern card design */
.contact .php-email-form {
    padding: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 2rem;
}

.contact .php-email-form .form-group {
    margin-bottom: 1.5rem;
}

.contact .php-email-form .form-control {
    border-radius: 12px;
    border: 2px solid #f1f3f4;
    padding: 1rem 1.25rem;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.contact .php-email-form .form-control:focus {
    border-color: var(--primary_color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary_color_rgb), 0.15);
    background: #fff;
    transform: translateY(-2px);
}

.contact .php-email-form .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Contact info section - modern card design */
.contact .col-md-5 {
    padding-left: 2rem;
}

.contact .icon-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.contact .icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact .icon-box-icon {
    background: linear-gradient(135deg, var(--primary_color), var(--light_primary_color));
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(var(--primary_color_rgb), 0.3);
}

.contact .icon-box-icon span {
    font-size: 28px;
    color: #fff;
}

.contact .icon-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Social links styling */
.contact .socials-footer .list-inline-item {
    margin: 0 0.5rem;
}

.contact .socials-footer .link-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary_color), var(--light_primary_color));
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(var(--primary_color_rgb), 0.3);
}

.contact .socials-footer .link-one:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary_color_rgb), 0.4);
    color: #fff;
}

.contact .socials-footer .link-one i {
    font-size: 18px;
}

/* Submit button styling */
.contact .btn-a {
    background: linear-gradient(135deg, var(--primary_color), var(--light_primary_color));
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary_color_rgb), 0.3);
}

.contact .btn-a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--primary_color_rgb), 0.4);
}

/* Section spacing optimization - minimal spacing */
.section-t8 {
    padding-top: 0.5rem !important;
}

.section-md-t3 {
    padding-top: 0.25rem !important;
}

.section-b2 {
    margin-bottom: 1rem !important;
}

/* Map section - when visible */
.contact-map {
    margin-bottom: 1rem;
    min-height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-map.map {
    height: 250px !important;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
}

/* Hide map section when API is not available */
.contact-map.map[style*="display: none"],
.contact-map[style*="display: none"] {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile optimizations - compact spacing */
@media (max-width: 768px) {
    .intro-single {
        padding: 2.5rem 0 0.5rem !important;
        margin-top: 80px !important;
        margin-bottom: 0.25rem !important;
    }

    .contact {
        padding: 0.25rem 0 1rem 0;
    }

    .contact .php-email-form {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact .col-md-5 {
        padding-left: 0 !important;
        margin-top: 1rem;
    }

    .contact .icon-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact .icon-box-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem auto;
    }

    .contact .icon-box-icon span {
        font-size: 24px;
    }

    .section-t8 {
        padding-top: 0.25rem !important;
    }

    .section-md-t3 {
        padding-top: 0.125rem !important;
    }
}

/* Very small screens - ultra compact */
@media (max-width: 480px) {
    .intro-single {
        padding: 2rem 0 0.25rem !important;
        margin-top: 80px !important;
        margin-bottom: 0.125rem !important;
    }

    .contact .php-email-form {
        padding: 1rem;
    }

    .contact .icon-box {
        padding: 1rem;
    }

    .contact .form-control {
        padding: 0.75rem 1rem;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }

    .event-actions {
        flex-direction: column;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .event-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        position: relative;
        margin-top: 2rem;
    }

    .hero-slide {
        min-height: 80vh;
    }
}

/* Background Patterns */
.bg-light {
    background: #f8f9fa !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.category-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects for Links */
a {
    transition: all 0.3s ease;
}

/* Button Improvements */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(254, 192, 9, 0.25);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary_color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6ac08;
}

/* Original styles preserved */
.owl-carousel .owl-item img{
    height:330px !important;
}
.property-single .owl-carousel .owl-item img{
    height:630px !important;
}
#org-carousel .owl-item img{
    width:190px !important;
    height:190px !important;
}
#org-carousel .card-shadow{
    border-radius: 50%;
    height: 190px;
    width: 190px;
    margin: 0 auto;
}
.ticket-section{
    margin-top: 100px;
}
.property-description p{
    text-align: justify;
}
.pl-4{
    padding-left:30px;
}
.card-box-a .img-box-a{
    min-height: 230px;
    max-height: 230px;
}
.card{
    border-radius: 8px;
    box-shadow: rgb(16 25 40 / 8%) 1px 6px 7px 6px;
    border:none;
}
.events .card-box-a .img-a{
    min-height: 300px;
    max-height: 300px;
}
.navbar-another{
    background: #fff !important;
    padding-top: 10px;
    padding-bottom: 10px;
    /* box-shadow: 1px 2px 12px rgb(100 100 100 / 20%); */
}
.navbar-another .nav-link, .navbar-another .nav-link{
    color: #111 !important;
}
.pagination-a svg{
    width:20px;
}
.pagination-a p{
    display: none;
}
.pagination-a .flex-1{
    display: none;
}
.pagination-a{
    text-align: right;
}
.pagination-a a,.pagination-a .border{
    border:none !important;
}
.pagination-a .shadow-sm{
    box-shadow: none !important;
}

.pagination-a span.px-4{
    background: var(--primary_color) !important;
    padding-right: 1rem!important;
    padding-left: 1rem!important;
    color:#333;
}


.tags,.search-tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
  }

  .tags li,.search-tags li {
    float: left;
  }
  .search-tags .search-tag{
    background: var(--primary_color);
    color: #fff;
    display: inline-block;
    border-radius: 30px;
    padding: 5px 20px;
    position: relative;
    margin: 0 30px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
  .tag {
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #999;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 30px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
  }

  .tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
  }

  .tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
  }

  .tag:hover {
    background-color: var(--primary_color);
    color: white;
  }

  .tag:hover::after {
     border-left-color: var(--primary_color);
  }

  /* ticket */



 .ticket {
    display: grid;
    grid-template-rows: auto 1fr auto;
    max-width: 24rem;
    margin: 0 auto;
}
.ticket__header, .ticket__body, .ticket__footer {
    padding: 1.25rem;
    background-color: #fff;
    border: 1px solid #e7e8e9;
    box-shadow: 0 2px 4px rgba(41, 54, 61, 0.25);
}
.single-ticket h5{
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.ticket__header {
    font-size: 1.5rem;
    border-top: 0.25rem solid var(--primary_color);
    border-bottom: none;
    box-shadow: none;
}
.ticket__wrapper {
    box-shadow: 0 2px 4px rgba(41, 54, 61, 0.25);
    border-radius: 0.375em 0.375em 0 0;
    overflow: hidden;
}
.ticket__divider {
    position: relative;
    height: 1rem;
    background-color: #fff;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.ticket__divider::after {
    content: '';
    position: absolute;
    height: 50%;
    width: 100%;
    top: 0;
    border-bottom: 2px dashed #e9ebed;
}
.ticket__notch {
    position: absolute;
    left: -0.5rem;
    width: 1rem;
    height: 1rem;
    overflow: hidden;
}
.ticket__notch::after {
    content: '';
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
    right: 100%;
    top: -50%;
    border: 0.5rem solid #fff;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(41, 54, 61, 0.25);
}
.ticket__notch--right {
    left: auto;
    right: -0.5rem;
}
.ticket__notch--right::after {
    right: 0;
}
.ticket__body {
    border-bottom: none;
    border-top: none;
}
.ticket__body > * + * {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ebed;
}
.ticket__section > * + * {
    margin-top: 0.25rem;
}
.ticket__section > h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.ticket__header {
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
}
.ticket__footer {
    border-top: 2px dashed #e9ebed;
    border-radius: 0 0 0.325rem 0.325rem;
    text-align: right;
}
article{
    /* display: inline-block !important; */
}
.ticket__section p span{
    font-weight: 500;
    color: #222;
}
.btn-primary{
    background:  var(--primary_color);
    border-color:var(--primary_color);
}
.btn-primary:hover{
    background:  var(--primary_color);
    border-color:var(--primary_color);
}
.empty-state img{
    width: 280px;
}
.rating i{
    font-size: 22px;
    color: #999;
}
.rating .active{
    color:#fec009;
}
.mt-8{
    margin-top: 80px;
}
.select2-container .select2-selection--single{
    height:45px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding-top:8px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top:8px !important;
}
.select2-container--default .select2-selection--single{
    border: 1px solid #ced4da;
}
.form-control-lg{
    font-size: 17px;
}
.list-inline-item:not(:last-child){
    margin-right: 2rem;
}

/* login */

.dyOnPt {
    display: flex;
    flex-direction: column;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-shrink: 0;
    margin-top: 30px;
    padding-bottom: 40px;
}
.eVYhre {
    position: relative;
    width: 100%;
    margin: 0px auto 40px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    max-width: 456px;
}
.daXbYU {
    margin: 16px 0px 12px 16px;
    width: 40px;
    position: initial;
    padding: 0px;
    top: unset;
    cursor: pointer;
}
.oZWmv {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    height: auto;
    width: 140px;
}
.oZWmv img{
     width: 140px;
}
.fogDtz {
    border-radius: 8px;
    box-shadow: rgb(16 25 40 / 13%) 0px 4px 8px 0px;
    background: white;
    overflow: hidden;
    padding: 40px 0px 24px;
    margin: 0px auto 24px;
    display: flex;
    flex-direction: column;
    padding: 24px 40px;
    max-width: 456px;
    width: 100%;
}

.jTZzYs {
    letter-spacing: 0px;
    margin: 0px;
    min-width: 0px;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    color: rgb(16, 25, 40);
    padding: 0px 0px 24px;
}
.NGrUbJBA._3cNt_ILG {
    grid-row-gap: 24px;
}
.NGrUbJBA._1FaKA6Nk {
    grid-column-gap: 16px;
}
.NGrUbJBA._1Z8A3Tz5 {
    grid-template-columns: repeat(12, var(--itemSize));
}
._1RLMtIP3 {
    display: flex;
    flex-direction: column;
    font-family: muli, sans-serif;
    box-sizing: border-box;
    font-variant: normal;
    font-style: normal;
}
.Qso_pkui {
    grid-column-start: span 12;
}
._1RLMtIP3 ._2iCrTJcD {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 0 5px 0;
}
._2x_Fz5Ot {
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    text-align: left;
    flex-grow: 1;
    color: #101928;
}
._2fessCXR.p2xx3nlH .RJT7RW5k {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 16px 12px 16px;
}
._2fessCXR .RJT7RW5k {
    font-family: muli, sans-serif;
    color: #101928;
    background-color: #ffffff;
    margin: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}
._2fessCXR {
    position: relative;
    display: flex;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #d5d7da;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}
._2fessCXR.p2xx3nlH {
    height: 48px;
    min-height: 48px;
}
._9t1fKU5Y._2UdNcEai {
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
}
.styled__ButtonWrapper-sc-56doij-3 {
    letter-spacing: 0px;
    margin-bottom: 10px;
    width:100%;
    font-size: 17px;

    display: block;

    padding: 11px 15px;
    border-radius: 4px;
    min-height: 48px;
    background: rgb(16, 25, 40);
    position: relative;
    color: #fff;
    transition: background 300ms ease 0s, border 300ms ease 0s, color 300ms ease 0s;
}
.nWXFK{
    letter-spacing: 0px;
    margin: 0px 0px 15px;
    min-width: 0px;
    font-size: 22px;
    font-weight: 800;
    line-height: 32px;
    text-align: center;
    color: rgb(16, 25, 40);
}
._2OcwfRx4{
    color:red;
}
.hFwlVf{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.dNmkeH{
    letter-spacing: 0px;
    margin: 0px 0px 8px;
    min-width: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: center;
    color: rgb(135, 140, 147);
}
.header-profile-img{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary_color);
    transition: all 0.3s ease;
}
.profileDropdown .dropdown-toggle::after{
    display:none;
}
.single-ticket .ticket__section{
    text-align: center !important;
}
.single-ticket .ticket__section h2{
    font-size: 24px;
    font-weight: 600;
    color: #333;
}
.single-ticket .ticket__header{
    font-size: 1.3rem;
    display: block;
    text-align: center;
}
.pro-qty .qtybtn{
    border: 1px solid #ddd !important;
    padding: 5px 15px;
    font-size: 20px;
    border-radius: 2px;
    cursor: pointer;
}
.pro-qty input{
    border: none;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    width: 80px;
}
.checkout-right img{
    width: 110px;
    height: 100px;
    margin: -50px auto 0px;
    border-radius: 5px;
    box-shadow: rgb(16 25 40 / 8%) 0px 4px 8px 0px;
}
.event-top{
    border-bottom: 1px solid #ddd;
}
.event-middle{
    padding:25px 30px;

    border-bottom: 1px solid #ddd;
}
.middle{
    display: flex;
    justify-content: space-between;
}
.event-middle p{
    font-weight: 500;
}
.event-total{
    padding:15px 30px;
    display: flex;
    justify-content: space-between;
}
.event-total p{
    font-weight:700;
    font-size: 20px;
}
.btn-continue{
    float:right;
}
.btn-continue i{
    font-weight: 800;
    font-size: 18px;
}

.chk-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.chk-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.chk-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chk-container input:checked ~ .checkmark {
  background-color: var(--primary_color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chk-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.chk-container .checkmark:after {
  left: 9px;
  top: 2px;
  width: 8px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-apply{
    float: right;
    font-weight: 600;
    color: var(--primary_color);
    font-size: 15px !important;
}
.coupon-data{
    background: var(--light_primary_color);
    border: 2px dashed var(--primary_color);
    padding: 5px 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.coupon-data span{
    font-size: 14px;
}
.category-section .card-header-b{
    position: absolute;
    bottom: 0px;
}
.category-section .card-header-b .title-2 a{
    color:#fff;
}
.category-section .img-box-b{
    height:200px;
}
.category-section .img-box-b img{
    height:200px;
}
.category-section .carousel-item-c{
    margin-bottom: 26px;
}
.bg-gray{
    background: #f1f3f7;
}
.event-section .img-box-a img{
    height: 230px;
}
@media screen and (min-width: 768px)
{
    .jTZzYs {
        font-size: 24px;
        font-weight: 800;
        line-height: 32px;
    }
    .iPBaVu {
        margin: unset;
    }
}

/* second header */
.fixed-top{
    z-index: 1000;
}
.menu-header{
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 3px 0px !important;
    border-top: 1px solid #eee;
}
.hide{
    display: none;
}
.show{
    display:block;
}
.date{
    background-color: #fff !important;
}
.search-location input{
    padding: .625rem 2rem 0.6255rem 0.75rem;
    transition: all .2s cubic-bezier(.68,-.55,.265,1.55);
    color: #8898aa;
    border: 1px solid #f1f3f7;
    border-radius: .25rem;
    background-clip: padding-box;
    background-color: #f1f3f7;
    min-width: 400px;

}
.news-single .img-fluid{
    height:530px;
}
.search-location{
    position: relative;
}
.search-location input:focus{
    outline: none;
}
.paypal-button-section{
    margin: 0 auto;
    width: 60%;
}
.search-location i{
    position: absolute;
    color: #ccc;
    z-index: 9;
    width: 24px;
    text-align: center;
    padding: 4px 0;
    top: 7px;
    right: 7px;
    left: auto;
    font-size: 23px;
}
.navbar-default .justify-content-center{
    margin-right: 11px;
    justify-content: flex-end !important;
}
.blog-section .img-box-b img{
    height: 200px !important;
}
.blog-section .title-2{
    text-align: left;
    line-height: 18px;
    margin-bottom: 5px;
}
.blog-section .card-header-b{
    padding-left: 5px;
    padding-right:5px;
}
.blog-section .card-header-b .title-2 a{
    font-size: 16px;
    font-weight: 400;
}
.blog-section .card-category-b{
    text-align: left;
}
.blog-section .card-category-b span{
    font-size: 12px;
}
.blog-section .card-category-b span i{
    padding-right: 6px;
}
.blog-section .date-b{
    padding-left: 8px;
}
.blog-section .date-b i{
    font-weight: 800;
}
.blog-section .card-shadow:before{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 28%, rgba(0, 0, 0, 0.65) 100%);
}
.grid .blog-section .card-box-b{
    margin-bottom: 0px;
}
.grid .blog-section .img-box-b img{
    height: 250px !important;
}
.grid .category-section .img-box-b,
.grid .category-section .img-box-b img{
    height: 260px;
}
.grid-option p{
    display: inline-block;
    float: left;
    font-size: 16px;
}
.stripe-button-el span{
    background: var(--primary_color) !important;
    text-shadow: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    box-shadow: none !important;

}
.single-order-top .right-data{
    display: flex;
    justify-content: space-evenly;
}
.order-rate{
    display: inline-block;
    margin-left: 10px;
}
.order-rate i{
    font-size: 17px;
}
.right-data button, .right-data a{
    padding-bottom: 0px;
}
.right-data button i, .right-data a i{
    color: #eee;
    font-size: 20px;
}
.rating i{
    color:#d2d2d2;
}
.payment-data p span{
    color:#ddd;
}
.right-data p{
    font-size: 14px;
    text-align: center;
}
.stripe-button-el{
    background: var(--primary_color) !important;
    font-family: inherit !important;
    width: 100%;

    border-radius: 0 !important;
    padding: .7rem 1rem !important;
    letter-spacing: .05rem;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

/* chips */


  .chip-group{
    display:flex;
    flex-wrap:wrap;
    float: left;
    margin-bottom: 30px;
  }

  .chip > * {
    margin-right:2px;
    margin-left:2px;
    padding: 0px 10px;
    color: #fff;
  }

  .chip button{
    border:none;
    margin-top:0;
    margin-bottom:0;
    padding:0;
    background:none;
    display:inline-flex;
  }
  .chip {
    transition: all 0.3s ease-in-out;
    background-color: var(--primary_color);
    border-radius: 30px;
    border: 1px solid var(--primary_color);
    display: inline-flex;
    align-items:center;
    padding: 4px 6px 4px 6px;
    margin-right:6px;
    margin-bottom:6px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.dropdown-menu{
    z-index: 1076 !important;
}
.card-register{
    max-width: 600px !important;
}
.profile-top-section{
    height: 400px;
    background-position: center;
    background-size: cover;
    position: relative;
}
.profile-overly{
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0px;
    background: var(--primary_color);
    opacity: .2;
}
.profile-left{
    background: var(--profile_primary_color);
    padding: 0px 20px 20px;
}
.profile-left .avatar{
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: -70px;
    box-shadow: 0 8px 20px -9px rgb(0 0 0 / 55%);
}
.user-description h4{
    font-size: 20px;
    color: #19457d;
}
.detail-label{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
}
.detail-data{
    font-size: 20px;
}
.profile-right{
    padding: 20px 0px 20px 40px;
}
.profile-right .nav-pills{
    border-bottom: 1px solid #eee;
}
.fav-section{
    position: absolute;
    right: 22px;
    left: auto;
    top: 5px;
    z-index: 3;
}
.fav-section i{
    color: #eee;
    font-size: 24px;
}
.fav-section .active{
    color: #ef3f3f;
}

.blog-section .fav-section{
    right: 10px;
}
#saved-event .card-header-a .card-title-a{
    font-size: 14px;
}
#saved-event .card-box-a .price-a,
#saved-event .card-box-b .price-a{
    font-size: 11px;
}
#saved-event .fav-section i{
    font-size: 20px;
}
#saved-event .card-box-a .img-box-a{
    min-height: 200px;
    max-height: 200px;
}
#saved-event .card-box-a,
#saved-blog .card-box-b{
    border-radius: 10px;
    box-shadow: 0 8px 20px -9px rgb(0 0 0 / 55%);
}
.profile-right .nav-link{
    padding: 0.5rem 3rem;
}
.detail-bio{
    text-align: justify;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primary_color) ;
}
.org-list .avatar{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 80px !important;
    height: 80px;
    box-shadow: 0 8px 20px -9px rgb(0 0 0 / 55%);
}
.org-list h5{
    font-size: 19px;
}
.org-list{
    border-bottom:1px solid #eee;
}
.bio-control {
    background: none;
    border: none;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary_color);
    width: 100%;
}
input:focus {
    outline:none;
}
.btn.focus, .btn:focus{
    box-shadow:none;
}
.btn-bio{
    font-size: 16px;
    color: #555;
    font-weight: 500;
    border: 1px solid #888;
}
.profile-left-link a{
    font-size: 17px;
    color: #19457d;
    font-weight: 500;
}
.profile-image{
    position: relative;
}
.edit-profile-img{
    position: absolute;
    right: 90px;
    top: 50px;
}
.edit-profile-img span{
    background: #1b1b1bb3;
    padding: 6px 9px;
    cursor: pointer;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px -9px rgb(0 0 0 / 55%);
}
.edit-profile-img span i{
    font-size: 15px;
}
.icon-title{
    font-size: 21px;
}
.map{
    width: 100%;
    height:400px;
    border-radius: 10px;
    border:1px solid #eee;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.event-data{
    border-bottom: 1px solid #eee;
    position: relative;
    padding-top:10px;
    cursor: pointer;
}
.event-data:hover{
    background-color: #f1f3f7;
    box-shadow: rgb(60 66 77 / 16%) 0px 4px 8px 0px;
    border-radius: 10px;
}
.order-left .active{
    transition: background-color 300ms ease 0s, transform 300ms ease 0s;
    background-color: #f1f3f7;
    box-shadow: rgb(60 66 77 / 16%) 0px 4px 8px 0px;
    border-radius: 10px;
}
.event-data img{
    width: 55px;
    height:55px;
    margin-top: 5px;
    margin-left: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.event-data .event-date{
    font-size: 15px;
}
.event-data p{
    font-size: 15px;
}
.order-left{
    height: 600px;
    overflow-y: scroll;
}
.single-order-top{
    background-color: #101928;
    box-shadow: rgb(16 25 40 / 8%) 0px 4px 8px 0px;
    padding: 30px 40px 80px;
    border-radius: 5px 5px 10px 10px;
    -webkit-border-radius: 5px 5px 10px 10px;
    -moz-border-radius: 5px 5px 10px 10px;
    -ms-border-radius: 5px 5px 10px 10px;
    -o-border-radius: 5px 5px 10px 10px;
}
.single-order-top h2{
    color:#fff;
    letter-spacing: 0px;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}
.single-order-top .badge{
    color:#fff;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .5px;
    margin-bottom: 20px;
}
.single-order-top h6{
    color:#fff;
    font-size: 17px;
}
.single-order-top p{
    color: #878c93;
}
.single-order-top img{
    height: 70px;
    width: 80px !important;

    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}
.order-bottom{
    background: #f1f3f7;
    margin: auto 10%;
    border-radius: 10px;
    margin-top: -55px;
    padding: 20px;
    box-shadow: 1px 2px 15px rgb(100 100 100 / 18%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.summary-list{
    box-shadow: 1px 2px 15px rgb(100 100 100 / 13%);
    padding: 2rem!important;
}
.text-primary{
    color:var(--primary_color) !important;
}
.summery-top{
    border-bottom: 1px solid #eee;
}
.org-img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.summery-org p{
    font-size: 20px;
    font-weight: 500;
}
.summery-top .event-date-time{
    display: block;
    line-height: 30px;
    font-weight: 500;
    font-size: 17px;
}
.order-ticket-detail{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}
.event-data .badge{
    font-weight: 500;
}
.order-total{
    display: flex;
    justify-content: space-between;
}
.order-left h5 button{
    border: none;
    background: #f1f3f7;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 5px;
    color: #050761;
    font-weight: 600;
}
.order-left h5{
    color: #050761;
}
.order-left::-webkit-scrollbar-track{
    background-color: #eee;
}
.order-left::-webkit-scrollbar{
	width: 6px;
    border-radius:3px ;
	background-color: #eee;
}
.order-left::-webkit-scrollbar-thumb{
	background-color: #ddd;
    border-radius:3px ;
}
.box-shadow{
    box-shadow: 0 3px 8px rgb(0 0 0 / 16%), 0 3px 8px rgb(0 0 0 / 23%);
}
.radius-10{
    border-radius: 10px;
}

/* ===== EVENT DETAILS PAGE STYLES ===== */

/* Event Hero Section */
.event-hero-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.modern-alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    border-left: 4px solid #28a745;
}

.modern-alert i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

/* Event Gallery */
.event-gallery-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.main-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-event-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.btn-gallery-control {
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gallery-control:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Event Thumbnails */
.event-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    overflow-x: auto;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--primary_color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover {
    transform: scale(1.1);
    border-color: var(--primary_color);
}

/* Event Quick Info Card */
.event-quick-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.event-status-badge {
    text-align: center;
    margin-bottom: 1.5rem;
}

.event-status-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.event-pricing-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary_color);
    margin-bottom: 0.5rem;
}

.price-free {
    color: #28a745;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Quick Stats */
.event-quick-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.quick-stat-item {
    text-align: center;
    flex: 1;
}

/* Tickets Section */
.tickets-section {
    background: #f8f9fa;
}

.ticket-nav-container {
    margin-bottom: 3rem;
}

.ticket-nav {
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: inline-flex;
    margin: 0 auto;
}

.ticket-nav .nav-link {
    border-radius: 25px;
    padding: 1rem 2rem;
    color: #666;
    font-weight: 600;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-nav .nav-link.active {
    background: var(--primary_color);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ticket-count {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Modern Ticket Cards */
.modern-ticket-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modern-ticket-card.free-ticket {
    border: 2px solid #28a745;
}

.ticket-header {
    background: linear-gradient(135deg, var(--primary_color), #667eea);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.free-ticket .ticket-header {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.ticket-type-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ticket-price {
    text-align: right;
}

.currency {
    font-size: 1rem;
    opacity: 0.8;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
}

.free-price .free-label {
    font-size: 1.5rem;
    font-weight: 700;
}

.ticket-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ticket-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.ticket-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.ticket-details {
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-value {
    font-weight: 600;
    color: #333;
    text-align: right;
}

.availability {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.urgency-indicator {
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.ticket-footer {
    padding: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.ticket-book-btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ticket-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-sold-out {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    cursor: not-allowed;
}

/* Empty State */
.empty-state-modern {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #6c757d;
    font-size: 2rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-description {
    color: #6c757d;
    font-size: 1rem;
}

/* ===== EVENTS LISTING PAGE STYLES ===== */

/* Events Header */
.events-listing-section {
    background: white;
}

.events-header {
    margin-bottom: 3rem;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.results-count {
    color: var(--primary_color);
}

.results-subtitle {
    color: #666;
    margin: 0;
}

/* Events Controls */
.events-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.view-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.25rem;
}

.btn-view {
    background: transparent;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-view.active {
    background: var(--primary_color);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sort-dropdown select {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    background: white;
    color: #333;
    min-width: 180px;
}

.filter-dropdown .btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.filter-menu {
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
    padding: 1rem 0;
}

.filter-menu .dropdown-header {
    font-weight: 700;
    color: #333;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

.filter-menu .dropdown-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.filter-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary_color);
}

.filter-menu .dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Active Filters */
.active-filters {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.filters-label {
    font-weight: 600;
    color: #333;
}

.btn-clear-all {
    background: none;
    border: none;
    color: #dc3545;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-clear-all:hover {
    color: #c82333;
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-chip {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.filter-chip.category-chip {
    border-color: var(--primary_color);
    background: var(--light_primary_color);
}

.filter-chip.type-chip {
    border-color: #17a2b8;
    background: rgba(23, 162, 184, 0.1);
}

.filter-chip.search-chip {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.chip-label {
    font-weight: 600;
    color: #333;
}

.chip-remove {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chip-remove:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Events Grid Enhancements */
.events-grid {
    margin-bottom: 3rem;
}

.event-item {
    transition: all 0.3s ease;
}

/* List View Styles */
.list-view .event-item {
    margin-bottom: 1.5rem;
}

.list-view .event-card {
    display: flex;
    flex-direction: row;
    height: auto;
}

.list-view .event-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
}

.list-view .event-content {
    flex: 1;
    padding: 2rem;
}

.list-view .event-stats {
    justify-content: flex-start;
    gap: 2rem;
}

.list-view .event-actions {
    justify-content: flex-start;
}

/* Event Type Badge */
.event-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}

.event-type-badge .badge {
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
}

/* Sold Out Badge */
.sold-out-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

/* Enhanced Event Actions */
.event-actions .btn-book.sold-out {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

.event-actions .btn-book.sold-out:hover {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

/* Pagination */
.events-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .view-toggle {
        justify-content: center;
    }

    .sort-dropdown select {
        min-width: 100%;
    }

    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .list-view .event-card {
        flex-direction: column;
    }

    .list-view .event-image {
        width: 100%;
        height: 250px;
    }

    .results-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   MODERN AUTH PAGES STYLING
   ======================================== */

/* Auth Layout */
.dyOnPt {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 1rem;
}

.eVYhre {
    position: relative;
    width: 100%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
}

.oZWmv {
    margin: 0 auto;
}

.oZWmv img {
    width: 140px;
    height: auto;
}

/* Modern Auth Card */
.modern-auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin: 0 auto 2rem;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Register Card - Wider for better form layout */
.register-card {
    max-width: 600px;
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fec009 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(254, 192, 9, 0.3);
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* Form Styling */
.auth-form {
    margin-bottom: 2rem;
}

/* Form Row Layout */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    height: 50px;
    box-sizing: border-box;
}

.input-wrapper .form-control:focus {
    outline: none;
    border-color: #fec009;
    box-shadow: 0 0 0 3px rgba(254, 192, 9, 0.1);
    background: white;
}

.input-wrapper .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #6c757d;
    z-index: 2;
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #fec009;
    background: rgba(254, 192, 9, 0.1);
}

/* Error Messages */
.error-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border-left: 3px solid #dc3545;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6c757d;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.forgot-link {
    color: #fec009;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: #e6ac08;
    text-decoration: underline;
}

/* Auth Buttons */
.btn-auth-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fec009 0%, #f39c12 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 192, 9, 0.3);
    cursor: pointer;
}

.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 192, 9, 0.4);
    background: linear-gradient(135deg, #e6ac08 0%, #d68910 100%);
}

.btn-auth-primary:active {
    transform: translateY(0);
}

/* Auth Divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
}

.auth-footer-text {
    color: #6c757d;
    margin: 0;
}

.auth-link {
    color: #fec009;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: #e6ac08;
    text-decoration: underline;
}

/* Organizer Card */
.organizer-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border: none;
    max-width: 320px;
    padding: 1.5rem !important;
}

.organizer-header {
    text-align: center;
    margin-bottom: 1rem;
}

.organizer-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
}

.organizer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.organizer-subtitle {
    opacity: 0.9;
    font-size: 0.85rem;
    margin: 0;
}

.organizer-features {
    margin-bottom: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

.feature-item i {
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.btn-organizer {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-organizer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #2c3e50;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dyOnPt {
        padding: 1rem 0.5rem;
    }

    .modern-auth-card {
        padding: 2rem 1.5rem;
        margin: 0 auto 1rem;
    }

    .auth-title {
        font-size: 1.75rem;
    }

    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .organizer-card {
        max-width: 100%;
    }

    .organizer-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .eVYhre {
        flex-direction: column;
        gap: 1rem;
    }

    .modern-auth-card {
        padding: 1.5rem 1rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .input-wrapper .form-control {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }

    .input-icon {
        left: 0.875rem;
    }

    /* Stack form rows on mobile */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 1.5rem;
    }

    .password-toggle {
        right: 0.875rem;
    }
}

/* Back Button Styling */
.hFwlVf {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hFwlVf:hover {
    transform: scale(1.1);
}

/* Loading States */
.btn-auth-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-organizer:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Focus States for Accessibility */
.btn-auth-primary:focus,
.btn-organizer:focus,
.forgot-link:focus,
.auth-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.input-wrapper .form-control:focus {
    outline: none;
}

/* Animation for form validation */
.form-control.is-invalid {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
