/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #222222;
  background-color: #ffffff;
}

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

/* Header Styles */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-bar {
  background-color: #047857;
  color: #ffffff;
  padding: 8px 0;
  font-size: 14px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  font-size: 12px;
}

.mpesa-till {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
}

.main-header {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo h1 a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
}

.logo .tagline {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.main-nav i {
  margin-right: 0.5rem;
}

.main-navigation {
  background-color: #047857;
  padding: 0;
}

.nav-content {
  display: flex;
  align-items: center;
  position: relative;
}

.back-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.back-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 20px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 4px solid #ffffff;
}

.auth-links {
  margin-left: auto;
  display: flex;
}

.auth-links a {
  padding: 16px 15px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  padding: 16px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Homepage Styles */
.homepage {
  background-color: #ffffff;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,64L48,80C96,96,192,128,288,144C384,160,480,160,576,144C672,128,768,96,864,112C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
}

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

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-search-form {
  margin-top: 30px;
}

.search-box {
  display: flex;
  gap: 10px;
  background: white;
  border-radius: 50px;
  padding: 8px 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 15px;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* QUICK FILTERS */
.quick-filters {
  background: white;
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
}

.filter-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
}

.filter-tag:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.filter-tag i {
  font-size: 14px;
}

/* FEATURED EVENTS SECTION */
.featured-events-section {
  padding: 60px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.view-all-link {
  display: inline-block;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 15px;
}

.view-all-link:hover {
  gap: 10px;
  transform: translateX(5px);
}

.view-all-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.view-all-link:hover i {
  transform: translateX(3px);
}

/* EVENTS GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.event-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.event-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 48px;
}

.event-badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

.badge-hot,
.badge-popular {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-hot {
  background: #e74c3c;
  color: white;
}

.badge-popular {
  background: #f39c12;
  color: white;
}

.event-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
}

.event-organiser-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
}

.event-organiser-info i {
  color: #667eea;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #555;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item i {
  color: #667eea;
  width: 14px;
}

.event-description {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-top: auto;
}

.ticket-available {
  font-size: 12px;
  color: #667eea;
  font-weight: 600;
}

.no-events {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

/* CATEGORIES SECTION */
.categories-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.categories-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.category-card-modern {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

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

.category-icon-modern {
  font-size: 40px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.3s;
}

.category-card-modern:hover .category-icon-modern {
  transform: scale(1.1);
}

.category-card-modern h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.category-arrow {
  font-size: 18px;
  color: #667eea;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s;
}

.category-card-modern:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-secondary {
  background: white;
  color: #667eea;
  font-weight: 600;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 16px;
  border-radius: 50px;
}

/* STATS SECTION */
.stats-section {
  padding: 60px 0;
  background: white;
  border-top: 1px solid #f0f0f0;
}

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

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.categories-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #047857, #e7f9f4);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.title-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e7f9f4, #047857);
  border-radius: 2px;
  animation: snake-move 3s ease-in-out infinite;
}

@keyframes snake-move {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

/* Category Grid - Exact 4x4 layout from image */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 80px;
}

.category-card:hover {
  box-shadow: 0 8px 25px rgba(4, 120, 87, 0.15);
  transform: translateY(-2px);
  border-color: #047857;
  background-color: #e7f9f4;
}

.category-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  border: 2px solid #047857;
}

.category-icon svg {
  width: 32px;
  height: 32px;
}

.category-info {
  flex: 1;
}

.category-title {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 4px;
  line-height: 1.3;
}

.category-description {
  font-size: 13px;
  color: #555555;
  line-height: 1.4;
}

.category-arrow {
  flex-shrink: 0;
  color: #047857;
  font-size: 16px;
}

/* Popular Section */
.popular-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

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

.document-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.document-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.doc-icon {
  width: 48px;
  height: 48px;
  background-color: #e7f9f4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  font-size: 20px;
}

.doc-info {
  flex: 1;
}

.doc-title {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 4px;
  line-height: 1.3;
}

.doc-category {
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
}

.doc-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.doc-price {
  color: #047857;
  font-weight: 600;
}

.doc-hits {
  color: #888888;
}

.doc-link {
  width: 36px;
  height: 36px;
  background-color: #047857;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.doc-link:hover {
  background-color: #065f46;
  transform: scale(1.1);
}

/* Authentication Forms */
.auth-container {
  max-width: 500px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: #666;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e1e1;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3498db;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-full {
  width: 100%;
}

.btn-secondary {
  background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.btn-danger {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Messages */
.message {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Dashboard Styles */
.dashboard-header {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-card i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #666;
}

/* Tables */
.table-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
}

.table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}

.table tr:hover {
  background-color: #f8f9fa;
}

/* Footer */
.main-footer {
  background-color: #2c3e50;
  color: white;
  padding: 2rem 0 1rem;
  margin-top: 3rem;
}

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

/* Additional Header Styles for header.php */

/* Header Top Section */
.header-top {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo h1 a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  font-size: 1.8rem;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Button Styles - Missing from original CSS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Small Button Variant */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-primary:hover {
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Logout Button */
.btn-logout {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-logout:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .top-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-menu-btn {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
}
/* Complete Footer Styles for footer.php */

.site-footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #3498db;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-methods span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.payment-methods span i {
  font-size: 1.5rem;
}

.payment-methods span:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .payment-methods {
    flex-direction: column;
    gap: 0.5rem;
  }

  .payment-methods span {
    width: 100%;
    justify-content: center;
  }
}
/* Event Detail Page Styles */

.event-detail {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.back-link:hover {
  color: #764ba2;
  gap: 12px;
}

.event-hero {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.event-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-banner-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 80px;
}

.event-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

.event-info {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.event-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.event-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-organiser {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

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

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.detail-item i {
  font-size: 24px;
  color: #667eea;
  margin-top: 5px;
}

.detail-item .label {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-item .value {
  font-size: 15px;
  color: #222;
  font-weight: 500;
}

.event-info .event-description {
  margin-top: 30px;
}

.event-info .event-description h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.event-info .event-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Booking Sidebar */
.booking-sidebar {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.booking-sidebar h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.alert {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

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

.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ticket-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.ticket-option:hover {
  border-color: #667eea;
  background: #f5f7ff;
}

.ticket-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.ticket-info .price {
  font-size: 18px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 5px;
}

.ticket-info .availability {
  font-size: 13px;
}

.available {
  color: #28a745;
  font-weight: 600;
}

.sold-out {
  color: #dc3545;
  font-weight: 600;
}

.ticket-quantity {
  min-width: 80px;
}

.quantity-select {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #e1e1e1;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s;
}

.quantity-select:focus {
  outline: none;
  border-color: #667eea;
}

.quantity-select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.price-summary {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-top: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  color: #555;
}

.summary-row.total {
  border-top: 2px solid #e1e1e1;
  margin-top: 10px;
  padding-top: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .event-content {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .event-hero {
    height: 300px;
  }

  .event-header h1 {
    font-size: 24px;
  }

  .event-details-grid {
    grid-template-columns: 1fr;
  }

  .ticket-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .ticket-quantity {
    width: 100%;
  }
}
/* Events Listing Page Styles */

.events-listing {
  padding: 40px 0;
  background-color: #f9f9f9;
  min-height: calc(100vh - 200px);
}

/* Listing Header */
.listing-header {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.listing-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
}

/* Filter Form */
.filters {
  width: 100%;
}

.filter-form {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-form input[type="text"],
.filter-form select {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  background-color: white;
}

.filter-form input[type="text"]:focus,
.filter-form select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-form input[type="text"]::placeholder {
  color: #999;
}

.filter-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.filter-form .btn {
  padding: 12px 30px;
  white-space: nowrap;
}

/* Events Grid - Reusing from homepage but with adjustments */
.events-listing .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.events-listing .event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.events-listing .event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Event Image */
.events-listing .event-image,
.events-listing .event-image-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events-listing .event-card:hover .event-image {
  transform: scale(1.05);
}

.events-listing .event-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 60px;
}

/* Event Details */
.event-details {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
  min-height: 50px;
}

.event-organiser {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 15px;
}

.event-date,
.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.event-date i,
.event-location i {
  color: #667eea;
  width: 16px;
}

.event-details .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
}

/* No Results State */
.no-results {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.no-results i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-results h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.no-results p {
  font-size: 16px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .events-listing .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .events-listing {
    padding: 30px 0;
  }

  .listing-header {
    padding: 20px;
  }

  .listing-header h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .filter-form {
    flex-direction: column;
  }

  .filter-form input[type="text"],
  .filter-form select {
    width: 100%;
    min-width: 100%;
  }

  .filter-form .btn {
    width: 100%;
  }

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

  .event-details h3 {
    font-size: 16px;
    min-height: auto;
  }

  .no-results {
    padding: 60px 20px;
  }

  .no-results i {
    font-size: 60px;
  }

  .no-results h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .listing-header {
    padding: 15px;
  }

  .listing-header h1 {
    font-size: 22px;
  }

  .events-listing .event-image,
  .events-listing .event-image-placeholder {
    height: 180px;
  }

  .event-details {
    padding: 15px;
  }
}

/* Loading State (Optional - if you add lazy loading) */
.events-grid.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Pagination Styles (if you add pagination later) */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  color: #555;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.pagination a:hover {
  border-color: #667eea;
  color: #667eea;
  background-color: #f5f7ff;
}

.pagination span.current {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.pagination a.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Filter Tags (if you want to show active filters) */
.active-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.filter-tag-active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: #667eea;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.filter-tag-active button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin-left: 5px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.filter-tag-active button:hover {
  opacity: 1;
}

/* Sort Options (if you add sorting) */
.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sort-options label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.sort-options select {
  padding: 8px 15px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* Results Count */
.results-count {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.results-count strong {
  color: #222;
  font-weight: 700;
}

/* Updated header to match dark navy design from screenshot */
.site-header-eventify {
  background-color: #3d4a5c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-eventify a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

.logo-eventify i {
  font-size: 24px;
  color: #fbbf24;
}

.main-nav-eventify {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav-eventify a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav-eventify a:hover,
.main-nav-eventify a.active {
  color: #fbbf24;
}

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

.btn-create-event-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-create-event-header:before {
  content: "\f303";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.btn-create-event-header:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link-header {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  transition: color 0.3s;
}

.nav-link-header:hover {
  color: #fbbf24;
}

.btn-login-header {
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-login-header:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-signup-header {
  background-color: #fbbf24;
  color: #1f2937;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-signup-header:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
}

/* Hero section to match screenshot design */
.hero-eventify {
  background-color: #3d4a5c;
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 74, 92, 0.9), rgba(31, 41, 55, 0.9));
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Search bar styling to match screenshot */
.hero-search-modern {
  max-width: 600px;
  margin: 0 auto;
}

.search-input-wrapper {
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-icon-left {
  padding: 1rem;
  color: #9ca3af;
  background: #ffffff;
  display: flex;
  align-items: center;
}

.search-input-modern {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem;
  font-size: 15px;
  color: #1f2937;
}

.search-input-modern::placeholder {
  color: #9ca3af;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: none;
  border-left: 1px solid #e5e7eb;
  padding: 0 1.5rem;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.location-btn:hover {
  background-color: #f9fafb;
}

.location-btn i {
  color: #6b7280;
}

.search-btn-modern {
  background-color: #3d4a5c;
  color: #ffffff;
  border: none;
  padding: 0 2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-btn-modern:hover {
  background-color: #2d3a4c;
}

/* Events page with sidebar layout matching screenshot */
.events-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 30px 0;
  background-color: #f9fafb;
}

/* Filters Sidebar */
.filters-sidebar {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 90px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.filters-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.sort-by-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
}

.sort-dropdown {
  padding: 4px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 13px;
  background: #ffffff;
  cursor: pointer;
}

.filter-section {
  margin-bottom: 25px;
}

.filter-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #3d4a5c;
}

.filter-option label {
  cursor: pointer;
  flex: 1;
}

.more-link {
  font-size: 13px;
  color: #3d4a5c;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

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

/* Event cards grid matching screenshot layout */
.events-content {
  min-height: 600px;
}

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

.event-card-modern {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.event-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

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

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

.event-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 48px;
}

.event-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.event-wishlist-btn:hover {
  transform: scale(1.1);
  background: #fee2e2;
}

.event-wishlist-btn i {
  font-size: 18px;
  color: #ef4444;
}

.event-category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-educational {
  background-color: #fed7aa;
  color: #92400e;
}

.badge-entertainment {
  background-color: #fde68a;
  color: #78350f;
}

.badge-cultural {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-sports {
  background-color: #bbf7d0;
  color: #166534;
}

.event-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title-modern {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.event-info-item i {
  font-size: 12px;
  color: #9ca3af;
}

.event-footer-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.event-attendees {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.event-attendees i {
  font-size: 12px;
}

.btn-view-event {
  padding: 8px 16px;
  background-color: #3d4a5c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-view-event:hover {
  background-color: #2d3a4c;
  transform: translateY(-2px);
}

/* Footer styling to match screenshot */
.site-footer-eventify {
  background-color: #1f2937;
  color: #ffffff;
}

.newsletter-section {
  background-color: #374151;
  padding: 2.5rem 0;
}

.newsletter-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-wrapper h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.newsletter-wrapper p {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #4b5563;
  border-radius: 8px;
  background: #1f2937;
  color: #ffffff;
  font-size: 14px;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-btn {
  padding: 12px 28px;
  background-color: #fbbf24;
  color: #1f2937;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background-color: #f59e0b;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-grid-eventify {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-col-eventify h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-col-eventify ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-eventify ul li {
  margin-bottom: 0.75rem;
}

.footer-col-eventify ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col-eventify ul li a:hover {
  color: #fbbf24;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: #fbbf24;
  color: #1f2937;
}

.app-download-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: #374151;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}

.app-badge:hover {
  background-color: #4b5563;
}

.app-badge i {
  font-size: 20px;
}

.footer-bottom-eventify {
  border-top: 1px solid #374151;
  padding: 1.5rem 0;
}

.footer-bottom-eventify p {
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

/* Auth page styling to match screenshot */
.auth-page {
  background-color: #f9fafb;
  padding: 3rem 0;
  min-height: calc(100vh - 300px);
}

.auth-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.auth-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.auth-card h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: #3d4a5c;
  box-shadow: 0 0 0 3px rgba(61, 74, 92, 0.1);
}

.btn-block {
  width: 100%;
  padding: 14px;
  background-color: #3d4a5c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.btn-block:hover {
  background-color: #2d3a4c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 74, 92, 0.3);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 14px;
  color: #6b7280;
}

.auth-footer a {
  color: #3d4a5c;
  text-decoration: none;
  font-weight: 600;
}

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

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 14px;
}

.alert-danger {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .events-page-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: static;
  }

  .events-grid-modern {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .main-nav-eventify {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #3d4a5c;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .main-nav-eventify.active {
    display: flex;
  }

  .main-nav-eventify a {
    padding: 1rem 2rem;
    width: 100%;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 28px;
  }

  .categories-circle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .events-grid-modern {
    grid-template-columns: 1fr;
  }

  .organiser-cta-content {
    flex-direction: column;
    text-align: center;
  }

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

  .auth-card {
    padding: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-grid-eventify {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 24px;
  }

  .auth-card h1 {
    font-size: 24px;
  }
}
/* EXPLORE CATEGORIES SECTION */
.categories-explore {
  padding: 60px 0;
  background-color: #ffffff;
}

.categories-explore .section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.categories-circle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}

.category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.category-circle-item:hover {
  transform: translateY(-5px);
}

.category-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-circle:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.category-circle i {
  font-size: 40px;
  color: #ffffff;
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  line-height: 1.3;
}

/* SECTION TITLE LEFT */
.section-title-left {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
}

/* EVENT DATE BADGE */
.event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 50px;
}

.badge-month {
  background-color: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-day {
  background-color: #ffffff;
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 8px;
}

/* POPULAR/ONLINE/TRENDING EVENTS SECTIONS */
.popular-events-section,
.online-events-section,
.trending-events-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.online-events-section {
  background-color: #f9fafb;
}

/* SEE MOREBUTTON */
.btn-see-more {
  display: inline-block;
  padding: 12px 40px;
  background-color: transparent;
  color: #3d4a5c;
  text-decoration: none;
  border: 2px solid #3d4a5c;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-see-more:hover {
  background-color: #3d4a5c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 74, 92, 0.3);
}

/* CTA BANNER YELLOW */
.cta-banner-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 60px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-yellow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-banner-content p {
  font-size: 18px;
  color: #374151;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: #1f2937;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-get-started:hover {
  background-color: #374151;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ORGANISER CTA SECTION */
.organiser-cta-section {
  background-color: #1f2937;
  padding: 40px 0;
  margin-top: 60px;
}

.organiser-cta-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.organiser-cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #1f2937;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.organiser-cta-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.organiser-cta-text p {
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

.organiser-cta-action .btn-create-event {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1f2937;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.organiser-cta-action .btn-create-event:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.organiser-cta-action .btn-create-event i {
  font-size: 18px;
}

/* EVENT DETAIL PAGE STYLES */
.event-detail-page {
  padding: 20px 0 40px;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.back-link-event {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  color: #1f2937;
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.3s;
  font-size: 20px;
}

.back-link-event:hover {
  color: #fbbf24;
  transform: translateX(-3px);
}

.event-detail-hero {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-detail-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-detail-banner-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 60px;
}

.event-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

.event-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  flex: 1;
}

.event-actions {
  display: flex;
  gap: 8px;
}

.event-action-btn {
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #1f2937;
  font-size: 20px;
}

.event-action-btn:hover {
  color: #fbbf24;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.event-detail-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-info-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.event-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.event-datetime {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #374151;
}

.event-datetime i {
  font-size: 16px;
  color: #6b7280;
  width: 20px;
}

.add-calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3d4a5c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  transition: color 0.3s;
}

.add-calendar-link:hover {
  color: #fbbf24;
}

.event-location-address {
  font-size: 14px;
  color: #374151;
  margin-bottom: 16px;
  line-height: 1.6;
}

.event-map {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}

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

.event-host-info {
  display: flex;
  gap: 14px;
  align-items: center;
}

.host-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  font-size: 28px;
  flex-shrink: 0;
}

.host-details {
  flex: 1;
}

.host-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.host-actions {
  display: flex;
  gap: 8px;
}

.btn-host-action,
.btn-host-action-primary {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #d1d5db;
}

.btn-host-action {
  background-color: #ffffff;
  color: #374151;
}

.btn-host-action:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.btn-host-action-primary {
  background-color: #1f2937;
  color: #ffffff;
  border-color: #1f2937;
}

.btn-host-action-primary:hover {
  background-color: #374151;
}

.event-description-content {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: #f3f4f6;
  color: #4b5563;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
}

.other-events-section {
  margin-top: 16px;
}

.other-events-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.other-events-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-event-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  position: relative;
}

.other-event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.other-event-card img,
.other-event-placeholder {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.other-event-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 28px;
}

.other-event-info {
  padding: 12px;
}

.other-event-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.other-event-info p {
  font-size: 12px;
  color: #6b7280;
}

/* SIDEBAR */
.event-detail-sidebar {
  position: sticky;
  top: 90px;
}

.ticket-info-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ticket-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.no-tickets {
  text-align: center;
  padding: 32px 16px;
  color: #9ca3af;
  font-size: 14px;
}

.ticket-type-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.ticket-type-info:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ticket-type-info i {
  font-size: 18px;
  color: #6b7280;
  margin-top: 2px;
}

.ticket-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticket-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.ticket-price {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.btn-buy-tickets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1f2937;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.btn-buy-tickets:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.5);
}

.btn-buy-tickets i {
  font-size: 16px;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .events-page-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: static;
  }

  .events-grid-modern {
    grid-template-columns: 1fr;
  }

  .organiser-cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

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

  .event-detail-sidebar {
    position: static;
  }

  .other-events-carousel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .event-detail-hero {
    height: 280px;
  }

  .event-detail-title {
    font-size: 24px;
  }

  .event-detail-header {
    flex-direction: column;
  }

  .event-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .event-info-card {
    padding: 20px;
  }

  .event-info-card h3 {
    font-size: 18px;
  }

  .host-actions {
    flex-direction: column;
  }

  .btn-host-action,
  .btn-host-action-primary {
    width: 100%;
  }

  .ticket-info-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .event-detail-hero {
    height: 220px;
    border-radius: 12px;
  }

  .event-detail-title {
    font-size: 20px;
  }

  .event-info-card {
    padding: 16px;
  }

  .other-events-carousel {
    gap: 16px;
  }
}
/* CHECKOUT PAGE STYLES */
.checkout-page {
  padding: 40px 0;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.container-checkout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
  align-items: start;
}

/* LEFT SIDE - ATTENDEE DETAILS */
.checkout-left {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.checkout-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
}

.event-checkout-info {
  background: #f9fafb;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #3d4a5c;
}

.event-checkout-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.event-checkout-info p {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.event-checkout-info i {
  color: #9ca3af;
}

.ticket-selection-box {
  border-top: 2px solid #e5e7eb;
  padding-top: 24px;
}

.ticket-selection-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

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

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

.attendee-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.attendee-form .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  background: #ffffff;
}

.attendee-form .form-control:focus {
  outline: none;
  border-color: #3d4a5c;
  box-shadow: 0 0 0 3px rgba(61, 74, 92, 0.1);
}

.attendee-form .form-control::placeholder {
  color: #9ca3af;
}

.phone-input-group {
  display: flex;
  gap: 12px;
}

.country-select {
  width: 140px;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}

.country-select:focus {
  outline: none;
  border-color: #3d4a5c;
  box-shadow: 0 0 0 3px rgba(61, 74, 92, 0.1);
}

.phone-input-group .form-control {
  flex: 1;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #3d4a5c;
}

.terms-checkbox label {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  cursor: pointer;
}

.terms-checkbox a {
  color: #3d4a5c;
  text-decoration: underline;
  font-weight: 600;
}

.terms-checkbox a:hover {
  color: #fbbf24;
}

.checkout-summary-mobile {
  display: none;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #4b5563;
}

.checkout-summary-mobile strong {
  color: #1f2937;
  font-size: 18px;
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background-color: #3d4a5c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-checkout:hover {
  background-color: #2d3a4c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 74, 92, 0.3);
}

/* RIGHT SIDE - ORDER SUMMARY */
.checkout-right {
  position: sticky;
  top: 90px;
}

.order-summary-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-summary-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
}

.summary-ticket-info {
  margin-bottom: 20px;
}

.summary-ticket-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #3d4a5c;
  margin-bottom: 12px;
}

.ticket-holder {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ticket-price-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #3d4a5c;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.summary-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 20px 0;
}

.summary-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #4b5563;
}

.summary-row.summary-total {
  padding-top: 12px;
  border-top: 2px solid #e5e7eb;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-top: 8px;
}

.total-amount {
  font-size: 20px;
  color: #16a34a;
}

.btn-pay-now {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-pay-now:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .container-checkout {
    grid-template-columns: 1fr;
  }

  .checkout-right {
    position: static;
  }

  .checkout-summary-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .order-details-card {
    padding: 24px 20px;
  }

  .order-item {
    flex-direction: column;
    gap: 8px;
  }

  .item-price {
    text-align: left;
  }

  .success-wrapper {
    padding: 32px 20px;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .btn {
    width: 100%;
  }
}

/*PAYMENT PAGE STYLES */
.payment-page {
  padding: 40px 0;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.payment-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.payment-header {
  margin-bottom: 24px;
}

.payment-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.payment-header .back-link:hover {
  color: #1f2937;
}

.payment-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.order-details-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
}

.order-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.order-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}

.status-pending {
  background-color: #fef3c7;
  color: #92400e;
}

.status-completed {
  background-color: #d1fae5;
  color: #065f46;
}

.status-failed {
  background-color: #fee2e2;
  color: #991b1b;
}

.order-items-list {
  margin-bottom: 24px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}

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

.item-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.item-details,
.item-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-details i,
.item-date i {
  font-size: 12px;
  color: #9ca3af;
}

.item-price {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  white-space: nowrap;
}

.order-summary {
  padding: 20px 0;
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4b5563;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-total {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #e5e7eb;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.total-amount {
  font-size: 24px;
  color: #16a34a;
}

.customer-info {
  background: #f9fafb;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4b5563;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row i {
  width: 20px;
  color: #9ca3af;
}

.btn-pay-paystack {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-pay-paystack:hover:not(:disabled) {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}

.btn-pay-paystack:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.payment-security-note {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.payment-security-note i {
  color: #16a34a;
}

/*PAYMENT SUCCESS PAGE */
.payment-success-page {
  padding: 60px 0;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.success-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.success-icon {
  font-size: 80px;
  color: #16a34a;
  margin-bottom: 24px;
}

.success-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.success-message {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.order-summary-success {
  background: #f9fafb;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  text-align: left;
}

.order-summary-success h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.order-summary-success p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 8px;
}

.order-summary-success p:last-child {
  margin-bottom: 0;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.success-actions .btn {
  padding: 12px 24px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .order-details-card {
    padding: 24px 20px;
  }

  .order-item {
    flex-direction: column;
    gap: 8px;
  }

  .item-price {
    text-align: left;
  }

  .success-wrapper {
    padding: 32px 20px;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .btn {
    width: 100%;
  }
}

/* START OF UPDATES */

/* Updated header styles to match Eventify design from images */
.site-header-eventify {
  background-color: #3d4a5c;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo-eventify a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.logo-eventify i {
  color: #f4c430;
  font-size: 28px;
}

.logo-eventify span {
  color: #f4c430;
}

.main-nav-eventify {
  display: flex;
  gap: 32px;
}

.main-nav-eventify a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  padding: 8px 0;
}

.main-nav-eventify a:hover,
.main-nav-eventify a.active {
  color: #f4c430;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-create-event-header,
.nav-link-header {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.btn-create-event-header:hover,
.nav-link-header:hover {
  color: #f4c430;
}

.btn-login-header {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-login-header:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-signup-header {
  background-color: #f4c430;
  color: #3d4a5c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-signup-header:hover {
  background-color: #e5b530;
  transform: translateY(-2px);
}

/* Hero section matching the colorful bokeh lights design */
.hero-eventify {
  position: relative;
  background: linear-gradient(135deg, rgba(128, 90, 213, 0.8), rgba(219, 112, 147, 0.8), rgba(255, 140, 66, 0.8));
  background-image: url("/assets/images/colorful-bokeh-lights-party.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 80px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.5), rgba(219, 112, 147, 0.5), rgba(255, 140, 66, 0.5));
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-text-center {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 32px;
}

/* Search bar with modern design */
.hero-search-modern {
  max-width: 700px;
  margin: 0 auto;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  gap: 8px;
}

.search-icon-left {
  color: #9ca3af;
  font-size: 18px;
  margin-left: 8px;
}

.search-input-modern {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 15px;
  color: #1f2937;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-left: 1px solid #e5e7eb;
  background: transparent;
  color: #1f2937;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.location-btn:hover {
  color: #3d4a5c;
}

.search-btn-modern {
  background: #3d4a5c;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.search-btn-modern:hover {
  background: #2d3a4c;
  transform: translateY(-2px);
}

/* Categories section with circle icons */
.categories-explore {
  padding: 60px 0;
  background: #f9fafb;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 40px;
}

.section-title-left {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 32px;
}

.categories-circle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.category-circle-item:hover {
  transform: translateY(-8px);
}

.category-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.category-circle-item:hover .category-circle {
  transform: scale(1.1);
}

.category-name {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: center;
}

/* Event cards with modern styling */
.popular-events-section,
.online-events-section,
.trending-events-section {
  padding: 60px 0;
}

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

.event-card-modern {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.event-card-modern:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.event-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.event-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 48px;
}

.event-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.event-wishlist-btn:hover {
  transform: scale(1.1);
  background: #fee2e2;
}

.event-wishlist-btn i {
  color: #ef4444;
  font-size: 18px;
}

.event-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #f4c430;
  color: #3d4a5c;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.badge-month {
  font-size: 11px;
  font-weight: 600;
}

.badge-day {
  font-size: 14px;
  font-weight: 700;
}

.event-category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-educational {
  background: #dbeafe;
  color: #1e40af;
}

.badge-entertainment {
  background: #fef3c7;
  color: #92400e;
}

.badge-cultural {
  background: #dcfce7;
  color: #166534;
}

.badge-sports {
  background: #fecaca;
  color: #991b1b;
}

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

.event-title-modern {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-modern:hover .event-title-modern {
  color: #2563eb;
}

.event-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #6b7280;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-info-item i {
  color: #9ca3af;
  width: 14px;
}

.event-footer-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.event-attendees {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-view-event {
  background: #3d4a5c;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-view-event:hover {
  background: #2d3a4c;
  transform: translateY(-2px);
}

.btn-see-more {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-see-more:hover {
  border-color: #3d4a5c;
  background: #3d4a5c;
  color: #ffffff;
}

/* CTA Banner with yellow gradient */
.cta-banner-yellow {
  background: linear-gradient(90deg, #fbbf24, #fcd34d);
  padding: 80px 0;
  text-align: center;
}

.cta-banner-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #3d4a5c;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 16px;
  color: #3d4a5c;
  margin-bottom: 32px;
}

.btn-get-started {
  display: inline-block;
  background: #3d4a5c;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-get-started:hover {
  background: #2d3a4c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 74, 92, 0.3);
}

/* Organiser CTA section */
.organiser-cta-section {
  background: #3d4a5c;
  padding: 60px 0;
}

.organiser-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.organiser-cta-icon i {
  font-size: 48px;
  color: #f4c430;
}

.organiser-cta-text {
  flex: 1;
}

.organiser-cta-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.organiser-cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-create-event {
  background: #f4c430;
  color: #3d4a5c;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-create-event:hover {
  background: #e5b530;
  transform: translateY(-2px);
}

/* Footer with newsletter section */
.site-footer-eventify {
  background: #2d3540;
  color: #ffffff;
}

.newsletter-section {
  background: #3d4a5c;
  padding: 60px 0;
}

.newsletter-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.newsletter-wrapper p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.newsletter-btn {
  background: #f4c430;
  color: #3d4a5c;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background: #e5b530;
  transform: translateY(-2px);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid-eventify {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col-eventify h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col-eventify ul {
  list-style: none;
  padding: 0;
}

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

.footer-col-eventify ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col-eventify ul li a:hover {
  color: #f4c430;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #f4c430;
  color: #3d4a5c;
  transform: translateY(-2px);
}

.app-download-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.2);
}

.app-badge i {
  font-size: 20px;
}

.footer-bottom-eventify {
  background: #1f2937;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom-eventify p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Events page with filters sidebar */
.events-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 40px 0;
}

.filters-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.filters-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.sort-by-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.sort-dropdown {
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.filter-section {
  margin-bottom: 32px;
}

.filter-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-option label {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.more-link {
  color: #2563eb;
  font-size: 14px;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
}

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

.events-content {
  min-height: 400px;
}

.no-results {
  text-align: center;
  padding: 80px 20px;
  color: #9ca3af;
}

.no-results i {
  font-size: 64px;
  margin-bottom: 20px;
}

.no-results h2 {
  font-size: 24px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 8px;
}

/* Event detail page */
.event-detail-page {
  padding: 40px 0;
}

.back-link-event {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.back-link-event:hover {
  color: #1f2937;
}

.event-detail-hero {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-detail-banner {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.event-detail-banner-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 80px;
}

.event-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.event-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  flex: 1;
}

.event-actions {
  display: flex;
  gap: 12px;
}

.event-action-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.event-action-btn:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

.event-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

.event-detail-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.event-info-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.event-info-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.event-datetime {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #374151;
}

.event-datetime i {
  color: #9ca3af;
  width: 20px;
}

.add-calendar-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-top: 8px;
}

.add-calendar-link:hover {
  text-decoration: underline;
}

.event-location-address {
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-map {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.event-host-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
}

.host-details {
  flex: 1;
}

.host-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.host-actions {
  display: flex;
  gap: 8px;
}

.btn-host-action {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-host-action:hover {
  border-color: #3d4a5c;
  background: #f9fafb;
}

.btn-host-action-primary {
  padding: 8px 16px;
  border: none;
  background: #3d4a5c;
  color: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-host-action-primary:hover {
  background: #2d3a4c;
  transform: translateY(-2px);
}

.event-description-content {
  color: #374151;
  font-size: 15px;
  line-height: 1.8;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.other-events-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.other-events-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-event-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s;
}

.other-event-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.other-event-card img,
.other-event-placeholder {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.other-event-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 32px;
}

.other-event-info {
  padding: 12px;
}

.other-event-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.3;
}

.other-event-info p {
  font-size: 12px;
  color: #6b7280;
}

/* SIDEBAR */
.event-detail-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.ticket-info-card {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 24px;
}

.ticket-info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.ticket-type-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.ticket-type-info i {
  color: #f59e0b;
  font-size: 20px;
  margin-top: 2px;
}

.ticket-details {
  flex: 1;
}

.ticket-name {
  display: block;
  font-size: 14px;
  color: #374151;
  margin-bottom: 4px;
}

.ticket-price {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.btn-buy-tickets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #f59e0b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-buy-tickets:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.no-tickets {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  padding: 20px 0;
}

/* Checkout page styling */
.checkout-page {
  padding: 40px 0;
  background: #f9fafb;
  min-height: calc(100vh - 200px);
}

.container-checkout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.checkout-left,
.checkout-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-left h2,
.checkout-right h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.event-checkout-info {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.event-checkout-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.event-checkout-info p {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-selection-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ticket-selection-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  padding: 12px 0;
  border-top: 2px solid #2563eb;
  border-bottom: 2px solid #2563eb;
  margin-bottom: 24px;
}

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

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-control {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-input-group {
  display: flex;
  gap: 8px;
}

.country-select {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  cursor: pointer;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.terms-checkbox label {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.terms-checkbox a {
  color: #2563eb;
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

.checkout-summary-mobile {
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #374151;
}

.btn-checkout {
  width: 100%;
  padding: 14px 24px;
  background: #3d4a5c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-checkout:hover {
  background: #2d3a4c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 74, 92, 0.3);
}

.order-summary-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
}

.summary-ticket-info {
  background: #dbeafe;
  border-left: 4px solid #2563eb;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.summary-ticket-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 12px;
}

.ticket-holder {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 12px;
}

.ticket-price-badge {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 24px 0;
}

.summary-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}

.summary-total {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  margin-top: 12px;
}

.total-amount {
  color: #059669;
}

.btn-pay-now {
  width: 100%;
  padding: 14px 24px;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-pay-now:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

/* Create event page */
.create-event-page {
  padding: 40px 0;
  background: #f9fafb;
  min-height: calc(100vh - 200px);
}

.page-title-create {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.progress-steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 40px 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d1d5db;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}

.progress-step.active .step-circle {
  background: #3d4a5c;
  color: #ffffff;
}

.step-label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.progress-step.active .step-label {
  color: #3d4a5c;
  font-weight: 600;
}

.progress-line {
  width: 80px;
  height: 2px;
  background: #d1d5db;
  margin: 0 -24px;
  margin-bottom: 32px;
}

.event-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 40px;
}

.form-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.required {
  color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-group {
  display: flex;
  gap: 24px;
  align-items: center;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #374151;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

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

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.btn-save-continue {
  padding: 14px 40px;
  background: #3d4a5c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-save-continue:hover {
  background: #2d3a4c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 74, 92, 0.3);
}

/* Auth pages */
.auth-page {
  padding: 60px 0;
  background: #f9fafb;
  min-height: calc(100vh - 200px);
}

.auth-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.auth-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.auth-card h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  text-align: center;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

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

.btn-primary {
  background: linear-gradient(135deg, #3d4a5c 0%, #2d3a4c 100%);
  color: #ffffff;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 74, 92, 0.3);
}

.btn-block {
  width: 100%;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.8;
}

.auth-footer a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

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

/* ABOUT PAGE STYLES */
.about-page {
  background-color: #ffffff;
}

.about-hero {
  background: linear-gradient(135deg, #3d4a5c 0%, #667eea 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-hero-content .lead {
  font-size: 20px;
  opacity: 0.95;
}

.about-section {
  padding: 80px 0;
}

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

.about-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.values-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.values-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

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

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

.btn-outline {
  background: transparent;
  border: 2px solid #3d4a5c;
  color: #3d4a5c;
}

.btn-outline:hover {
  background: #3d4a5c;
  color: #ffffff;
}

/* CONTACT PAGE STYLES */
.contact-page {
  background-color: #ffffff;
}

.contact-hero {
  background: linear-gradient(135deg, #3d4a5c 0%, #667eea 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-hero-content .lead {
  font-size: 20px;
  opacity: 0.95;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info-box h2,
.contact-form-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.contact-info-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 15px;
  color: #6b7280;
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail-content a:hover {
  color: #667eea;
}

.social-links h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  transform: translateY(-3px);
}

.contact-form-box {
  background: #f9fafb;
  padding: 40px;
  border-radius: 12px;
}

.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

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

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

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.required {
  color: #ef4444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-block {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3d4a5c 0%, #2d3a4c 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 74, 92, 0.3);
}

/* FAQ PAGE STYLES */
.faq-page {
  background-color: #ffffff;
}

.faq-hero {
  background: linear-gradient(135deg, #3d4a5c 0%, #667eea 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.faq-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-hero-content .lead {
  font-size: 20px;
  opacity: 0.95;
}

.faq-section {
  padding: 80px 0;
}

.faq-categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-category {
  padding: 10px 24px;
  background: #f3f4f6;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-category:hover {
  background: #e5e7eb;
}

.faq-category.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-color: transparent;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
  border-color: #667eea;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.faq-question i {
  font-size: 20px;
  color: #9ca3af;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #667eea;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.faq-cta {
  margin-top: 60px;
  text-align: center;
  background: #f9fafb;
  padding: 60px 40px;
  border-radius: 12px;
}

.faq-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 28px;
}

.faq-cta .btn-primary {
  padding: 14px 32px;
  font-size: 16px;
}

/* RESPONSIVE STYLES FOR NEW PAGES */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-content h1,
  .contact-hero-content h1,
  .faq-hero-content h1 {
    font-size: 36px;
  }

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

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

  .cta-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-categories {
    gap: 8px;
  }

  .faq-category {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* END OF UPDATES */
