/* 
 * TopEventHub - Premier Irish Betting Directory
 * Modern Coral & Midnight Design with Unique Structure
 */

/* ====================================
   1. ROOT VARIABLES & RESET
   ==================================== */
:root {
  --topeventhub-coral: #D85A4A;
  --topeventhub-coral-dark: #B94A3D;
  --topeventhub-coral-light: #E67A6C;
  --topeventhub-midnight: #1A2B47;
  --topeventhub-midnight-light: #2A3F5F;
  --topeventhub-teal: #2A9D8F;
  --topeventhub-teal-dark: #218578;
  --topeventhub-sand: #F4EDE4;
  --topeventhub-sand-dark: #E8DFD3;
  --topeventhub-charcoal: #2D3436;
  --topeventhub-gray: #636E72;
  --topeventhub-gray-light: #B2BEC3;
  --topeventhub-white: #ffffff;
  --topeventhub-border-radius: 12px;
  --topeventhub-border-radius-sm: 8px;
  --topeventhub-border-radius-lg: 20px;
  --topeventhub-transition: all 0.3s ease;
  --topeventhub-shadow: 0 4px 20px rgba(26, 43, 71, 0.08);
  --topeventhub-shadow-lg: 0 12px 40px rgba(26, 43, 71, 0.12);
  --topeventhub-shadow-xl: 0 20px 60px rgba(26, 43, 71, 0.16);
}

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

html {
  scroll-behavior: smooth;
  font-size: 112%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--topeventhub-charcoal);
  background-color: var(--topeventhub-sand);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--topeventhub-transition);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ====================================
   2. HEADER & NAVIGATION
   ==================================== */
.topeventhub-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--topeventhub-midnight);
  transition: var(--topeventhub-transition);
}

.topeventhub-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.topeventhub-nav {
  padding: 0;
}

.topeventhub-nav-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topeventhub-nav-brand {
  display: flex;
  align-items: center;
}

.topeventhub-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.topeventhub-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--topeventhub-border-radius-sm);
}

.topeventhub-brand-name {
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--topeventhub-white);
}

.topeventhub-brand-name span {
  color: var(--topeventhub-coral);
}

.topeventhub-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  border-radius: var(--topeventhub-border-radius-sm);
}

.topeventhub-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.topeventhub-hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--topeventhub-coral);
  border-radius: 3px;
  transition: var(--topeventhub-transition);
}

.topeventhub-hamburger.active .topeventhub-hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.topeventhub-hamburger.active .topeventhub-hamburger-line:nth-child(2) {
  opacity: 0;
}

.topeventhub-hamburger.active .topeventhub-hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.topeventhub-nav-menu {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.topeventhub-nav-item {
  padding: 0.65rem 1.15rem;
  border-radius: var(--topeventhub-border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--topeventhub-transition);
  color: rgba(255, 255, 255, 0.75);
}

.topeventhub-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--topeventhub-white);
}

.topeventhub-nav-item.topeventhub-nav-active {
  color: var(--topeventhub-coral);
  background: rgba(216, 90, 74, 0.1);
}

.topeventhub-nav-item.topeventhub-nav-cta {
  background: var(--topeventhub-coral);
  color: var(--topeventhub-white);
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.topeventhub-nav-item.topeventhub-nav-cta:hover {
  background: var(--topeventhub-coral-dark);
  transform: translateY(-2px);
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .topeventhub-hamburger {
    display: none !important;
  }
  
  .topeventhub-nav-menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .topeventhub-hamburger {
    display: flex;
  }
  
  .topeventhub-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--topeventhub-midnight);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.25rem 2rem;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.35s ease;
  }
  
  .topeventhub-nav-menu.open {
    right: 0;
  }
  
  .topeventhub-nav-item {
    padding: 1rem 1.15rem;
    text-align: center;
    border-radius: var(--topeventhub-border-radius-sm);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .topeventhub-nav-item.topeventhub-nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ====================================
   3. MAIN CONTENT
   ==================================== */
.topeventhub-main {
  min-height: calc(100vh - 320px);
}

/* ====================================
   4. HERO SECTION - DIAGONAL SPLIT
   ==================================== */
.topeventhub-hero {
  background: var(--topeventhub-midnight);
  color: var(--topeventhub-white);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.topeventhub-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(216, 90, 74, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 157, 143, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.topeventhub-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--topeventhub-sand);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.topeventhub-hero-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 4.5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.topeventhub-hero-content {
  animation: topeventhubSlideIn 0.8s ease;
}

.topeventhub-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42, 157, 143, 0.2);
  color: var(--topeventhub-teal);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topeventhub-hero-label i {
  font-size: 0.9rem;
}

.topeventhub-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.topeventhub-hero-title em {
  font-style: normal;
  color: var(--topeventhub-coral);
}

.topeventhub-hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  opacity: 0.88;
  font-weight: 400;
  max-width: 520px;
}

.topeventhub-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topeventhub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--topeventhub-border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--topeventhub-transition);
  border: none;
  cursor: pointer;
}

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

.topeventhub-btn-primary:hover {
  background: var(--topeventhub-coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(216, 90, 74, 0.35);
}

.topeventhub-btn-outline {
  background: transparent;
  color: var(--topeventhub-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.topeventhub-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.topeventhub-hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.topeventhub-hero-feature {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--topeventhub-border-radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--topeventhub-transition);
}

.topeventhub-hero-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-6px);
  border-color: var(--topeventhub-coral);
}

.topeventhub-hero-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--topeventhub-coral);
  border-radius: var(--topeventhub-border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--topeventhub-white);
  flex-shrink: 0;
}

.topeventhub-hero-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.topeventhub-hero-feature p {
  font-size: 0.88rem;
  opacity: 0.75;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .topeventhub-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 3.5rem 1.5rem 5rem;
  }
  
  .topeventhub-hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .topeventhub-hero-actions {
    justify-content: center;
  }
  
  .topeventhub-hero-features {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .topeventhub-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .topeventhub-hero-container {
    padding: 2.5rem 1.25rem 4rem;
  }
  
  .topeventhub-hero-title {
    font-size: 2rem;
  }
  
  .topeventhub-hero-desc {
    font-size: 1rem;
  }
  
  .topeventhub-btn {
    width: 100%;
    justify-content: center;
  }
  
  .topeventhub-hero-feature {
    padding: 1rem 1.15rem;
  }
}

/* ====================================
   5. PLATFORMS SECTION - HORIZONTAL CARDS
   ==================================== */
.topeventhub-platforms {
  padding: 4.5rem 2rem 5rem;
  background: var(--topeventhub-sand);
}

.topeventhub-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.topeventhub-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--topeventhub-midnight);
  color: var(--topeventhub-white);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topeventhub-section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--topeventhub-charcoal);
  letter-spacing: -0.5px;
}

.topeventhub-section-subtitle {
  font-size: 1.05rem;
  color: var(--topeventhub-gray);
  line-height: 1.7;
}

.topeventhub-platforms-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.topeventhub-platform-card {
  background: var(--topeventhub-white);
  border: 2px solid transparent;
  border-radius: var(--topeventhub-border-radius);
  padding: 1.25rem 1.75rem;
  transition: var(--topeventhub-transition);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--topeventhub-shadow-sm);
}

.topeventhub-platform-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--topeventhub-shadow);
  border-color: var(--topeventhub-coral);
}

.topeventhub-platform-card.topeventhub-highlight {
  border-color: var(--topeventhub-teal);
  background: linear-gradient(90deg, rgba(42, 157, 143, 0.05) 0%, var(--topeventhub-white) 100%);
}

.topeventhub-platform-ribbon {
  background: var(--topeventhub-teal);
  color: var(--topeventhub-white);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
  order: -1;
}

.topeventhub-platform-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 180px;
}

.topeventhub-platform-name-box {
  background: var(--topeventhub-midnight);
  color: var(--topeventhub-white);
  padding: 0.65rem 0.85rem;
  border-radius: var(--topeventhub-border-radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  min-width: 50px;
}

.topeventhub-platform-logo {
  width: 100px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--topeventhub-border-radius-sm);
}

.topeventhub-platform-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--topeventhub-charcoal);
  margin: 0;
  white-space: nowrap;
}

.topeventhub-platform-score {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--topeventhub-sand);
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  flex-shrink: 0;
}

.topeventhub-platform-score-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--topeventhub-coral);
  line-height: 1;
}

.topeventhub-platform-score-label {
  font-size: 0.65rem;
  color: var(--topeventhub-gray);
  font-weight: 600;
  text-transform: uppercase;
}

.topeventhub-platform-desc {
  color: var(--topeventhub-gray);
  line-height: 1.5;
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.topeventhub-platform-tags {
  display: none;
}

.topeventhub-platform-tag {
  padding: 0.35rem 0.75rem;
  background: var(--topeventhub-sand);
  color: var(--topeventhub-charcoal);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.topeventhub-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: var(--topeventhub-coral);
  color: var(--topeventhub-white);
  border-radius: var(--topeventhub-border-radius);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--topeventhub-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.topeventhub-platform-link:hover {
  background: var(--topeventhub-coral-dark);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .topeventhub-platforms-grid {
    gap: 0.75rem;
  }
  
  .topeventhub-platform-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .topeventhub-platform-header {
    min-width: auto;
  }
  
  .topeventhub-platform-desc {
    font-size: 0.9rem;
  }
  
  .topeventhub-platform-link {
    width: 100%;
  }
  
  .topeventhub-section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  .topeventhub-platforms {
    padding: 3rem 1rem 4rem;
  }
  
  .topeventhub-platform-card {
    padding: 1rem;
  }
  
  .topeventhub-platform-header {
    width: 100%;
    justify-content: flex-start;
  }
  
  .topeventhub-platform-score {
    margin-left: auto;
  }
}

/* ====================================
   6. ADVANTAGES SECTION - ICON STRIP
   ==================================== */
.topeventhub-advantages {
  padding: 4.5rem 2rem;
  background: var(--topeventhub-white);
}

.topeventhub-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1150px;
  margin: 3rem auto 0;
}

.topeventhub-advantage-box {
  background: var(--topeventhub-sand);
  padding: 2rem;
  border-radius: var(--topeventhub-border-radius-lg);
  transition: var(--topeventhub-transition);
  border: 2px solid transparent;
  text-align: center;
}

.topeventhub-advantage-box:hover {
  transform: translateY(-5px);
  border-color: var(--topeventhub-teal);
  box-shadow: var(--topeventhub-shadow-lg);
}

.topeventhub-advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--topeventhub-teal), var(--topeventhub-teal-dark));
  border-radius: var(--topeventhub-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--topeventhub-white);
  font-size: 1.5rem;
}

.topeventhub-advantage-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--topeventhub-charcoal);
}

.topeventhub-advantage-text {
  color: var(--topeventhub-gray);
  line-height: 1.7;
  font-size: 0.92rem;
  margin: 0;
}

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

@media (max-width: 600px) {
  .topeventhub-advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .topeventhub-advantage-box {
    padding: 1.5rem;
  }
}

/* ====================================
   7. COMMITMENT SECTION
   ==================================== */
.topeventhub-commitment {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--topeventhub-midnight) 0%, var(--topeventhub-midnight-light) 100%);
  color: var(--topeventhub-white);
}

.topeventhub-commitment-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.topeventhub-commitment-text {
  flex: 1;
}

.topeventhub-commitment-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.topeventhub-commitment-desc {
  font-size: 1.02rem;
  opacity: 0.88;
  line-height: 1.75;
  margin: 0;
}

.topeventhub-commitment-stats {
  display: flex;
  gap: 2.5rem;
}

.topeventhub-stat-item {
  text-align: center;
}

.topeventhub-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--topeventhub-coral);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.topeventhub-stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
}

@media (max-width: 850px) {
  .topeventhub-commitment-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  
  .topeventhub-commitment-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .topeventhub-commitment-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ====================================
   8. FOOTER
   ==================================== */
.topeventhub-footer {
  background: var(--topeventhub-charcoal);
  color: var(--topeventhub-white);
  padding: 4rem 2rem 1.75rem;
}

.topeventhub-footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1250px;
  margin: 0 auto;
}

.topeventhub-footer-brand {
  max-width: 300px;
}

.topeventhub-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.topeventhub-footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--topeventhub-border-radius-sm);
}

.topeventhub-footer-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--topeventhub-white);
}

.topeventhub-footer-about {
  color: var(--topeventhub-gray-light);
  line-height: 1.75;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.topeventhub-footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.topeventhub-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--topeventhub-gray-light);
  font-size: 0.88rem;
}

.topeventhub-footer-contact-row i {
  color: var(--topeventhub-coral);
  font-size: 0.95rem;
  width: 18px;
}

.topeventhub-footer-contact-row a {
  color: var(--topeventhub-gray-light);
}

.topeventhub-footer-contact-row a:hover {
  color: var(--topeventhub-white);
}

.topeventhub-footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--topeventhub-white);
}

.topeventhub-footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.topeventhub-footer-nav a {
  color: var(--topeventhub-gray-light);
  font-size: 0.92rem;
  transition: var(--topeventhub-transition);
}

.topeventhub-footer-nav a:hover {
  color: var(--topeventhub-white);
  padding-left: 5px;
}

.topeventhub-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 1.75rem;
}

.topeventhub-footer-bottom {
  max-width: 1250px;
  margin: 0 auto;
}

.topeventhub-disclaimer-section {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: var(--topeventhub-border-radius);
  border-left: 4px solid var(--topeventhub-coral);
  margin-bottom: 1.75rem;
}

.topeventhub-disclaimer-text {
  color: var(--topeventhub-gray-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.65rem;
}

.topeventhub-disclaimer-text:last-child {
  margin-bottom: 0;
}

.topeventhub-disclaimer-text strong {
  color: var(--topeventhub-white);
}

.topeventhub-inline-link {
  color: var(--topeventhub-coral);
  text-decoration: underline;
}

.topeventhub-inline-link:hover {
  color: var(--topeventhub-white);
}

.topeventhub-footer-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.topeventhub-age-marker {
  width: 50px;
  height: 50px;
  background: var(--topeventhub-coral);
  color: var(--topeventhub-white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.topeventhub-copyright {
  color: var(--topeventhub-gray-light);
  font-size: 0.88rem;
  margin: 0;
}

.topeventhub-rg-section {
  margin-top: 1.75rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--topeventhub-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.topeventhub-rg-heading {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--topeventhub-white);
}

.topeventhub-rg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}

.topeventhub-rg-logo {
  background: #E5E5E5;
  padding: 0.65rem 1rem;
  border-radius: var(--topeventhub-border-radius-sm);
  transition: var(--topeventhub-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.topeventhub-rg-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.topeventhub-rg-logo img {
  height: 34px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .topeventhub-footer-main {
    grid-template-columns: 1fr 1fr;
  }
  
  .topeventhub-footer-brand {
    max-width: 100%;
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .topeventhub-footer-main {
    grid-template-columns: 1fr;
  }
  
  .topeventhub-footer-brand {
    grid-column: span 1;
  }
  
  .topeventhub-footer-end {
    flex-direction: column;
    text-align: center;
  }
}

/* ====================================
   9. COOKIE CONSENT BANNER
   ==================================== */
.topeventhub-cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--topeventhub-white);
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.12);
  padding: 1.35rem 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--topeventhub-coral);
}

.topeventhub-cookie-popup:not(.topeventhub-hidden) {
  transform: translateY(0);
}

.topeventhub-cookie-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
}

.topeventhub-cookie-message h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--topeventhub-charcoal);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topeventhub-cookie-message h5 i {
  color: var(--topeventhub-coral);
}

.topeventhub-cookie-message p {
  font-size: 0.92rem;
  color: var(--topeventhub-gray);
  margin: 0;
}

.topeventhub-cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.topeventhub-cookie-btn {
  padding: 0.7rem 1.35rem;
  border-radius: var(--topeventhub-border-radius-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--topeventhub-transition);
  font-size: 0.92rem;
}

.topeventhub-cookie-accept {
  background: var(--topeventhub-coral);
  color: var(--topeventhub-white);
}

.topeventhub-cookie-accept:hover {
  background: var(--topeventhub-coral-dark);
  transform: translateY(-2px);
}

.topeventhub-cookie-decline {
  background: var(--topeventhub-sand);
  color: var(--topeventhub-charcoal);
}

.topeventhub-cookie-decline:hover {
  background: var(--topeventhub-sand-dark);
}

@media (max-width: 768px) {
  .topeventhub-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .topeventhub-cookie-actions {
    width: 100%;
  }
  
  .topeventhub-cookie-btn {
    flex: 1;
  }
}

/* ====================================
   10. CONTACT PAGE
   ==================================== */
.topeventhub-page-wrapper {
  padding: 3.5rem 2rem;
}

.topeventhub-page-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.topeventhub-page-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--topeventhub-charcoal);
}

.topeventhub-page-subtitle {
  font-size: 1.05rem;
  color: var(--topeventhub-gray);
  line-height: 1.7;
}

.topeventhub-notice-box {
  background: rgba(42, 157, 143, 0.1);
  color: var(--topeventhub-teal-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--topeventhub-border-radius-sm);
  margin-bottom: 2rem;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.topeventhub-notice-box i {
  font-size: 1.15rem;
}

.topeventhub-contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.25rem;
  max-width: 1050px;
  margin: 0 auto;
}

.topeventhub-contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.topeventhub-info-card {
  background: var(--topeventhub-white);
  padding: 1.75rem;
  border-radius: var(--topeventhub-border-radius);
  box-shadow: var(--topeventhub-shadow);
}

.topeventhub-info-card-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
  color: var(--topeventhub-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topeventhub-info-card-heading i {
  color: var(--topeventhub-coral);
}

.topeventhub-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

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

.topeventhub-info-icon {
  width: 40px;
  height: 40px;
  background: var(--topeventhub-midnight);
  border-radius: var(--topeventhub-border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--topeventhub-white);
  font-size: 1rem;
  flex-shrink: 0;
}

.topeventhub-info-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--topeventhub-charcoal);
  margin-bottom: 0.2rem;
}

.topeventhub-info-content p {
  font-size: 0.88rem;
  color: var(--topeventhub-gray);
  margin: 0;
  line-height: 1.55;
}

.topeventhub-info-content a {
  color: var(--topeventhub-coral);
}

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

.topeventhub-support-notice {
  background: rgba(42, 157, 143, 0.08);
  color: var(--topeventhub-teal-dark);
  padding: 1rem;
  border-radius: var(--topeventhub-border-radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.topeventhub-support-notice a {
  color: var(--topeventhub-teal-dark);
  font-weight: 600;
}

.topeventhub-form-card {
  background: var(--topeventhub-white);
  padding: 2.25rem;
  border-radius: var(--topeventhub-border-radius);
  box-shadow: var(--topeventhub-shadow);
}

.topeventhub-form-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--topeventhub-charcoal);
}

.topeventhub-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.topeventhub-input-group {
  margin-bottom: 1.15rem;
}

.topeventhub-input-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--topeventhub-charcoal);
  font-size: 0.92rem;
}

.topeventhub-input,
.topeventhub-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--topeventhub-gray-light);
  border-radius: var(--topeventhub-border-radius-sm);
  font-size: 0.98rem;
  font-family: inherit;
  transition: var(--topeventhub-transition);
  background: var(--topeventhub-sand);
}

.topeventhub-input:focus,
.topeventhub-textarea:focus {
  outline: none;
  border-color: var(--topeventhub-coral);
  box-shadow: 0 0 0 4px rgba(216, 90, 74, 0.1);
  background: var(--topeventhub-white);
}

.topeventhub-textarea {
  resize: vertical;
  min-height: 130px;
}

.topeventhub-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--topeventhub-coral);
  color: var(--topeventhub-white);
  border: none;
  border-radius: var(--topeventhub-border-radius);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--topeventhub-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.topeventhub-submit-btn:hover:not(:disabled) {
  background: var(--topeventhub-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 90, 74, 0.25);
}

.topeventhub-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.topeventhub-alert {
  padding: 1rem 1.15rem;
  border-radius: var(--topeventhub-border-radius-sm);
  margin-top: 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.topeventhub-alert i {
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

.topeventhub-alert-success {
  background: #E6F7ED;
  color: #0B5C2F;
  border: 1px solid #2ECC71;
}

.topeventhub-alert-error {
  background: #FDEDEE;
  color: #8B1A2B;
  border: 1px solid #E74C3C;
}

.topeventhub-alert h4 {
  font-size: 0.98rem;
  margin: 0 0 0.3rem 0;
}

.topeventhub-alert p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 850px) {
  .topeventhub-contact-layout {
    grid-template-columns: 1fr;
  }
  
  .topeventhub-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================
   11. FAQ SECTION
   ==================================== */
.topeventhub-faq-wrapper {
  background: var(--topeventhub-white);
  padding: 2.5rem;
  border-radius: var(--topeventhub-border-radius-lg);
  margin-top: 2.5rem;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--topeventhub-shadow);
}

.topeventhub-faq-heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: var(--topeventhub-charcoal);
  text-align: center;
}

.topeventhub-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.topeventhub-faq-item {
  padding: 1.35rem;
  background: var(--topeventhub-sand);
  border-radius: var(--topeventhub-border-radius);
  transition: var(--topeventhub-transition);
}

.topeventhub-faq-item:hover {
  box-shadow: var(--topeventhub-shadow);
}

.topeventhub-faq-q {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--topeventhub-charcoal);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.topeventhub-faq-q i {
  color: var(--topeventhub-coral);
  margin-top: 0.15rem;
}

.topeventhub-faq-a {
  color: var(--topeventhub-gray);
  line-height: 1.7;
  font-size: 0.92rem;
}

.topeventhub-faq-a a {
  color: var(--topeventhub-coral);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .topeventhub-faq-list {
    grid-template-columns: 1fr;
  }
  
  .topeventhub-faq-wrapper {
    padding: 1.75rem;
  }
}

/* ====================================
   12. LEGAL PAGES
   ==================================== */
.topeventhub-legal-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  background: var(--topeventhub-white);
}

.topeventhub-legal-heading {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 1.35rem;
  color: var(--topeventhub-charcoal);
}

.topeventhub-legal-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(42, 157, 143, 0.1);
  padding: 0.9rem 1.35rem;
  border-radius: var(--topeventhub-border-radius);
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
  color: var(--topeventhub-teal-dark);
}

.topeventhub-legal-meta i {
  font-size: 1.05rem;
}

.topeventhub-legal-body {
  color: var(--topeventhub-gray);
  line-height: 1.8;
}

.topeventhub-legal-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.25rem 0 0.9rem;
  color: var(--topeventhub-charcoal);
}

.topeventhub-legal-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.6rem 0 0.65rem;
  color: var(--topeventhub-charcoal);
}

.topeventhub-legal-body p {
  margin-bottom: 0.9rem;
}

.topeventhub-legal-body ul {
  margin: 0.9rem 0 1.35rem 1.35rem;
}

.topeventhub-legal-body li {
  margin-bottom: 0.55rem;
}

.topeventhub-legal-body a {
  color: var(--topeventhub-coral);
  text-decoration: underline;
}

.topeventhub-legal-callout {
  background: var(--topeventhub-sand);
  padding: 1.35rem;
  border-radius: var(--topeventhub-border-radius);
  margin: 1.35rem 0;
}

.topeventhub-legal-callout.warning {
  background: #FDEDEE;
  border-left: 4px solid #E74C3C;
}

.topeventhub-legal-callout.info {
  background: rgba(42, 157, 143, 0.1);
  border-left: 4px solid var(--topeventhub-teal);
}

.topeventhub-legal-callout h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--topeventhub-charcoal);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topeventhub-legal-callout.warning h4 {
  color: #C0392B;
}

.topeventhub-legal-callout.info h4 {
  color: var(--topeventhub-teal-dark);
}

.topeventhub-legal-callout p {
  margin: 0;
  font-size: 0.92rem;
}

.topeventhub-legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.topeventhub-legal-contact-box {
  text-align: center;
  padding: 1.35rem;
  background: var(--topeventhub-sand);
  border-radius: var(--topeventhub-border-radius);
}

.topeventhub-legal-contact-box i {
  width: 46px;
  height: 46px;
  background: var(--topeventhub-midnight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--topeventhub-white);
  font-size: 1.1rem;
  margin: 0 auto 0.9rem;
}

.topeventhub-legal-contact-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--topeventhub-charcoal);
}

.topeventhub-legal-contact-box p {
  font-size: 0.88rem;
  color: var(--topeventhub-gray);
  margin: 0;
}

.topeventhub-legal-contact-box a {
  color: var(--topeventhub-coral);
}

@media (max-width: 768px) {
  .topeventhub-legal-heading {
    font-size: 1.9rem;
  }
  
  .topeventhub-legal-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================
   13. UTILITY CLASSES
   ==================================== */
.topeventhub-hidden {
  display: none !important;
}

.topeventhub-visible {
  display: block !important;
}

.topeventhub-text-center {
  text-align: center;
}

.topeventhub-mt-1 { margin-top: 0.5rem; }
.topeventhub-mt-2 { margin-top: 1rem; }
.topeventhub-mt-3 { margin-top: 1.5rem; }
.topeventhub-mt-4 { margin-top: 2rem; }

.topeventhub-mb-1 { margin-bottom: 0.5rem; }
.topeventhub-mb-2 { margin-bottom: 1rem; }
.topeventhub-mb-3 { margin-bottom: 1.5rem; }
.topeventhub-mb-4 { margin-bottom: 2rem; }

/* ====================================
   14. RESPONSIVE UTILITIES
   ==================================== */
@media (max-width: 576px) {
  .topeventhub-nav-container {
    padding: 0.7rem 1rem;
  }
  
  .topeventhub-page-title {
    font-size: 1.8rem;
  }
  
  .topeventhub-section-title {
    font-size: 1.7rem;
  }
}

/* ====================================
   15. ANIMATIONS
   ==================================== */
@keyframes topeventhubFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes topeventhubPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

