/* ============================
   MONSTER TRUCK RACING WEBSITE
   ============================*/

/* CSS Variables for Easy Theming */
:root {
  /* Colors */
  --primary-color: #ff6b35;
  --secondary-color: #1a1a1a;
  --accent-color: #ffd700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-secondary: #1f1f1f;
  --gradient-primary: linear-gradient(135deg, #ff6b35, #ff8c42);
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 50%, #2a2a2a 100%);
  
  /* Typography */
  --font-primary: 'Orbitron', monospace;
  --font-secondary: 'Russo One', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 0 2rem;
  
  /* Effects */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ==================
   NAVIGATION
   ==================*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-logo i {
  font-size: 2rem;
  animation: truck-bounce 2s ease-in-out infinite;
}

@keyframes truck-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  margin: 3px 0;
  transition: 0.3s;
}

/* ==================
   HERO SECTION
   ==================*/
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 0.9;
  margin-bottom: 1rem;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 1s forwards;
  opacity: 0;
}

.hero-truck {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.truck-container {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.truck-icon {
  font-size: 15rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  animation: fadeInUp 1s ease-out 1.2s forwards;
  opacity: 0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ==================
   BUTTONS
   ==================*/
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--box-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ==================
   SECTIONS
   ==================*/
.section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================
   EVENTS SECTION
   ==================*/
.events {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.event-date {
  background: var(--gradient-primary);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  min-width: 80px;
}

.month {
  display: block;
  font-size: 0.8rem;
  font-weight: bold;
}

.day {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.location, .time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ==================
   TRUCKS SECTION
   ==================*/
.trucks {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.trucks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.truck-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
  overflow: hidden;
}

.truck-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 107, 53, 0.1), transparent);
  animation: rotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.truck-card:hover::before {
  opacity: 1;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.truck-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.truck-image {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.truck-image i {
  font-size: 4rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
  animation: truck-bounce 2s ease-in-out infinite;
}

.truck-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.truck-card p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.truck-specs {
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.truck-specs span {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* ==================
   DRIVERS SECTION
   ==================*/
.drivers {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.driver-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.driver-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.driver-avatar {
  margin-bottom: 1.5rem;
}

.driver-avatar i {
  font-size: 4rem;
  color: var(--primary-color);
}

.driver-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.driver-truck {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.driver-wins {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ==================
   TICKETS SECTION
   ==================*/
.tickets {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ticket-card {
  background: var(--bg-secondary);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
}

.ticket-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.best-value {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.ticket-card.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.ticket-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.price {
  font-size: 3rem;
  font-family: var(--font-secondary);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.ticket-features {
  list-style: none;
  margin-bottom: 2rem;
}

.ticket-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-features li:before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* ==================
   FOOTER
   ==================*/
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: var(--font-secondary);
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-section p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* ==================
   RESPONSIVE DESIGN
   ==================*/
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--box-shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .truck-icon {
    font-size: 8rem;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin-top: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .events-grid,
  .trucks-grid,
  .drivers-grid,
  .tickets-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  :root {
    --container-padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .truck-specs {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ==================
   ANIMATIONS & EFFECTS
   ==================*/
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animation for images */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* ==================
   PAGE HEADERS
   ==================*/
.page-header {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
}

.page-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.page-title i {
  margin-right: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* ==================
   NAVIGATION ACTIVE STATE
   ==================*/
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 100%;
}

/* ==================
   EVENT PAGE STYLES
   ==================*/
.event-filters {
  padding: 2rem 0;
  background: var(--bg-secondary);
}

.filter-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.featured-event {
  padding: 3rem 0;
  background: var(--bg-dark);
}

.featured-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  border: 2px solid var(--primary-color);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 3rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
}

.featured-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-content h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.featured-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.featured-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail i {
  color: var(--primary-color);
}

.featured-visual {
  text-align: center;
}

.featured-visual i {
  font-size: 8rem;
  color: var(--accent-color);
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

.event-card-detailed {
  background: var(--bg-secondary);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.event-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.event-image {
  background: var(--bg-dark);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.event-image i {
  font-size: 3rem;
  color: var(--primary-color);
}

.event-type {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.event-content {
  padding: 1.5rem;
}

.event-date-large {
  text-align: center;
  margin-bottom: 1rem;
}

.event-date-large .month {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: bold;
}

.event-date-large .day {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-light);
}

.event-date-large .year {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.event-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.event-description {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.event-meta {
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.meta-item i {
  color: var(--primary-color);
}

.event-actions {
  display: flex;
  gap: 0.5rem;
}

/* ==================
   CALENDAR STYLES
   ==================*/
.event-calendar {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.calendar-view {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 15px;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: var(--gradient-primary);
}

.calendar-nav {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-nav:hover {
  background: var(--text-light);
  color: var(--primary-color);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-day-header {
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  background: var(--bg-secondary);
  color: var(--primary-color);
}

.calendar-day {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.calendar-day:hover {
  background: rgba(255, 107, 53, 0.1);
}

.calendar-day.event-day {
  background: var(--gradient-primary);
  color: var(--text-light);
  font-weight: bold;
}

/* ==================
   TRUCKS PAGE STYLES
   ==================*/
.truck-stats {
  padding: 3rem 0;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.stat-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  opacity: 0.8;
}

.featured-truck {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.featured-truck-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  border: 2px solid var(--primary-color);
}

.featured-truck-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.truck-visual {
  text-align: center;
  position: relative;
}

.truck-visual i {
  font-size: 8rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

.truck-name-overlay {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.truck-tagline {
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.truck-specs-detailed {
  margin: 2rem 0;
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 10px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: bold;
  color: var(--primary-color);
}

.truck-achievements {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.achievement i {
  color: var(--accent-color);
}

.trucks-gallery {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.truck-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.trucks-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.truck-card-detailed {
  background: var(--bg-dark);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.truck-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.truck-image-detailed {
  background: var(--bg-secondary);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.truck-image-detailed i {
  font-size: 4rem;
  color: var(--primary-color);
}

.truck-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.truck-info {
  padding: 1.5rem;
}

.truck-subtitle {
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.truck-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--bg-secondary);
  border-radius: 8px;
}

.spec-item i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.spec-item span {
  font-size: 0.9rem;
  font-weight: bold;
}

.truck-description {
  margin: 1rem 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.truck-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* ==================
   TRUCK TECHNOLOGY
   ==================*/
.truck-technology {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
}

.tech-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.tech-icon {
  margin-bottom: 1.5rem;
}

.tech-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.tech-card h3 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ==================
   TRUCK COMPARISON
   ==================*/
.truck-comparison {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.comparison-tool {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: 15px;
  padding: 2rem;
}

.comparison-selectors {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.selector-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.truck-selector {
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  border-radius: 8px;
  font-family: var(--font-primary);
}

.vs-divider {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.comparison-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comparison-truck h3 {
  text-align: center;
  font-family: var(--font-secondary);
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.stat-bar {
  margin-bottom: 1rem;
}

.stat-bar .stat-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.stat-bar-container {
  position: relative;
  background: var(--bg-secondary);
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.8s ease;
  border-radius: 15px;
}

.stat-value {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 0.9rem;
}

/* ==================
   DRIVERS PAGE STYLES
   ==================*/
.featured-driver {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.featured-driver-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  border: 2px solid var(--primary-color);
}

.featured-driver-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.driver-avatar-large {
  text-align: center;
  position: relative;
}

.driver-avatar-large i {
  font-size: 8rem;
  color: var(--primary-color);
}

.driver-status {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.driver-nickname {
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.driver-truck-featured {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.driver-truck-featured i {
  color: var(--primary-color);
}

.driver-stats-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-featured {
  text-align: center;
  background: var(--bg-dark);
  padding: 1rem;
  border-radius: 10px;
}

.stat-number-featured {
  display: block;
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--primary-color);
}

.stat-label-featured {
  font-size: 0.9rem;
  opacity: 0.8;
}

.driver-bio {
  margin: 1.5rem 0;
  opacity: 0.9;
  line-height: 1.7;
}

.driver-achievements-featured {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.achievement-featured {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.achievement-featured i {
  color: var(--accent-color);
}

.drivers-roster {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.driver-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.drivers-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.driver-card-detailed {
  background: var(--bg-dark);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.driver-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.driver-image-detailed {
  background: var(--bg-secondary);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.driver-image-detailed i {
  font-size: 4rem;
  color: var(--primary-color);
}

.driver-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.driver-social {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.driver-social a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: var(--transition);
}

.driver-social a:hover {
  color: var(--primary-color);
}

.driver-info-detailed {
  padding: 1.5rem;
}

.driver-truck-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: bold;
}

.driver-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}

.stat-item {
  text-align: center;
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
}

.stat-value {
  display: block;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.driver-description {
  margin: 1rem 0;
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.6;
}

.driver-achievements {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.achievement-tag {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.driver-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* ==================
   CHAMPIONSHIP STANDINGS
   ==================*/
.championship-standings {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.standings-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border-radius: 15px;
  overflow: hidden;
}

.standings-header {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 100px 80px;
  background: var(--gradient-primary);
  padding: 1rem;
  font-weight: bold;
  font-size: 0.9rem;
}

.standings-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 100px 80px;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.standings-row:hover {
  background: rgba(255, 107, 53, 0.1);
}

.standings-row.champion {
  background: rgba(255, 215, 0, 0.1);
}

.rank {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.rank i {
  color: var(--accent-color);
}

.driver {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.driver i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* ==================
   DRIVER TRAINING
   ==================*/
.driver-training {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.training-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.training-features {
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.training-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.training-stat {
  text-align: center;
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
}

.training-stat .number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-color);
}

.training-stat .label {
  opacity: 0.8;
}

/* ==================
   TICKETS PAGE STYLES
   ==================*/
.event-selection {
  padding: 3rem 0;
  background: var(--bg-secondary);
}

.event-selector {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.event-option {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  min-width: 300px;
}

.event-option.active,
.event-option:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.event-date-selector {
  text-align: center;
  background: var(--gradient-primary);
  padding: 1rem;
  border-radius: 10px;
  min-width: 60px;
}

.event-date-selector .month {
  display: block;
  font-size: 0.8rem;
  font-weight: bold;
}

.event-date-selector .day {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.event-details-selector {
  flex: 1;
}

.event-details-selector h3 {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.event-details-selector p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.event-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.event-status.available {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

/* ==================
   SEATING CHART
   ==================*/
.seating-chart-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.seating-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.seating-chart {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  position: relative;
}

.track-area {
  background: var(--primary-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.track-label {
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.track-visual i {
  font-size: 3rem;
  color: var(--text-light);
  animation: truck-bounce 2s ease-in-out infinite;
}

.seating-section {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.seating-section:hover {
  border-color: var(--primary-color);
}

.seating-section.vip {
  background: rgba(255, 215, 0, 0.1);
}

.seating-section.premium {
  background: rgba(138, 43, 226, 0.1);
}

.seating-section.general-left,
.seating-section.general-right {
  background: rgba(34, 197, 94, 0.1);
}

.section-label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

.seats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
}

.seat {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.seat.available {
  background: #22c55e;
}

.seat.selected {
  background: var(--primary-color);
}

.seat.taken {
  background: #6b7280;
  cursor: not-allowed;
}

.seating-legend {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 15px;
  height: fit-content;
}

.legend-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ==================
   TICKET PACKAGES
   ==================*/
.ticket-packages {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.package-card {
  background: var(--bg-dark);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.package-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.package-card.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.package-header h3 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--text-light);
}

.package-price {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.package-savings {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 0.9rem;
}

.package-features {
  margin-bottom: 2rem;
}

.package-features .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.package-features .feature i {
  color: var(--accent-color);
}

.package-quantity {
  margin-bottom: 1.5rem;
}

.package-quantity label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--text-light);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--primary-color);
  border: none;
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--accent-color);
  color: var(--text-dark);
}

.qty-input {
  width: 60px;
  padding: 0.5rem;
  text-align: center;
  background: var(--bg-secondary);
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  border-radius: 8px;
  font-family: var(--font-primary);
}

/* ==================
   ORDER SUMMARY
   ==================*/
.order-summary {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.summary-content {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
}

.selected-event,
.selected-tickets {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-event h3,
.selected-tickets h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.order-total {
  margin-bottom: 2rem;
}

.order-total > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
}

.total {
  border-top: 2px solid var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--text-light);
}

.checkout-btn {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.1rem;
}

/* ==================
   PURCHASE BENEFITS
   ==================*/
.purchase-benefits {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.benefit-card h3 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ==================
   GROUP SALES
   ==================*/
.group-sales {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.group-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.group-features {
  margin: 2rem 0;
}

.group-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.group-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.group-contact {
  margin-top: 2rem;
}

.group-contact p {
  margin-top: 1rem;
  opacity: 0.8;
}

.group-visual {
  text-align: center;
}

.group-visual i {
  font-size: 8rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

/* ==================
   CONTACT PAGE STYLES
   ==================*/
.contact-form-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-form-container h2 {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-family: var(--font-secondary);
}

.contact-form {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: var(--bg-secondary);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  position: relative;
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-family: var(--font-secondary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--primary-color);
}

.method-icon {
  background: var(--gradient-primary);
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
}

.method-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.method-details h3 {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.method-details p {
  margin: 0;
  opacity: 0.9;
}

.method-details small {
  opacity: 0.7;
  font-size: 0.8rem;
}

/* ==================
   DEPARTMENT CONTACTS
   ==================*/
.department-contacts {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.department-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
}

.department-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.dept-icon {
  margin-bottom: 1.5rem;
}

.dept-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.department-card h3 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--text-light);
}

.department-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.dept-contact p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.dept-contact i {
  color: var(--primary-color);
}

/* ==================
   LOCATION MAP
   ==================*/
.location-map {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.map-placeholder {
  background: var(--bg-dark);
  border-radius: 15px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 2px dashed var(--primary-color);
}

.map-content {
  text-align: center;
}

.map-content i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-details {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
}

.location-details h3 {
  font-family: var(--font-secondary);
  margin-bottom: 2rem;
  color: var(--text-light);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.info-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.info-item p {
  margin: 0;
  opacity: 0.9;
}

/* ==================
   SOCIAL MEDIA SECTION
   ==================*/
.social-media-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition);
}

.social-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.social-card.facebook:hover {
  border-color: #1877f2;
}

.social-card.instagram:hover {
  border-color: #e4405f;
}

.social-card.twitter:hover {
  border-color: #1da1f2;
}

.social-card.youtube:hover {
  border-color: #ff0000;
}

.social-card.tiktok:hover {
  border-color: #000000;
}

.social-card.discord:hover {
  border-color: #5865f2;
}

.social-icon {
  background: var(--gradient-primary);
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
}

.social-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.social-info h3 {
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.social-info p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.social-info span {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: bold;
}

/* ==================
   FAQ SECTION
   ==================*/
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-dark);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
  margin: 0;
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* ==================
   NEWSLETTER SECTION
   ==================*/
.newsletter-section {
  padding: var(--section-padding);
  background: var(--gradient-primary);
  text-align: center;
}

.newsletter-content h2 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--text-light);
}

.newsletter-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.newsletter-form .btn {
  white-space: nowrap;
  background: var(--text-light);
  color: var(--primary-color);
}

.newsletter-form .btn:hover {
  background: var(--accent-color);
  color: var(--text-dark);
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.8;
  color: var(--text-light);
}

/* ==================
   MOBILE RESPONSIVENESS
   ==================*/
@media (max-width: 768px) {
  .featured-content,
  .featured-truck-content,
  .featured-driver-content,
  .contact-grid,
  .map-container,
  .group-content,
  .training-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .comparison-selectors {
    flex-direction: column;
    gap: 1rem;
  }

  .vs-divider {
    order: 2;
  }

  .seating-container {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-5px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }

  .driver-stats-featured,
  .featured-details {
    grid-template-columns: 1fr;
  }

  .standings-header,
  .standings-row {
    grid-template-columns: 60px 1fr 100px 60px;
    font-size: 0.8rem;
  }

  .truck-column {
    display: none;
  }

  .filter-controls,
  .truck-categories,
  .driver-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}