/* ============================================
   RAPID ECHO - MODERN BOLD CSS STYLES
   Design Style: Modern Bold with Strong Typography
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY - BOLD MODERN STYLE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', 'Impact', 'Arial Black', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
}

h2 {
  font-size: 40px;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.7;
}

strong {
  font-weight: 900;
  color: #D84315;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 60px 0;
}

/* ============================================
   BUTTONS - BOLD GEOMETRIC STYLE
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 18px 36px;
  background: linear-gradient(135deg, #D84315 0%, #C63D12 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 3px solid #D84315;
  box-shadow: 0 6px 0 #A33310, 0 10px 20px rgba(216, 67, 21, 0.3);
  transition: all 0.2s ease;
  position: relative;
  transform: translateY(0);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #A33310, 0 15px 30px rgba(216, 67, 21, 0.4);
}

.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #A33310, 0 5px 10px rgba(216, 67, 21, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 18px 36px;
  background: transparent;
  color: #D84315;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 3px solid #D84315;
  box-shadow: 0 6px 0 #D84315;
  transition: all 0.2s ease;
  position: relative;
  transform: translateY(0);
}

.btn-secondary:hover {
  background: #D84315;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #A33310, 0 15px 30px rgba(216, 67, 21, 0.4);
}

.btn-secondary:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #A33310;
}

.btn-link {
  display: inline-block;
  color: #D84315;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid #D84315;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #5E35B1;
  border-bottom-color: #5E35B1;
  transform: translateX(5px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: #ffffff;
  border-bottom: 4px solid #D84315;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 900;
  font-size: 16px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #D84315;
  border-bottom-color: #D84315;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #D84315;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #5E35B1;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #5E35B1 0%, #4527A0 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  border-bottom-color: #FFF3E0;
}

/* ============================================
   HERO SECTIONS - BOLD & IMPACTFUL
   ============================================ */
.hero {
  background: linear-gradient(135deg, #5E35B1 0%, #4527A0 50%, #D84315 100%);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/><path d="M50 0L100 50L50 100" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 64px;
  color: #ffffff;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #FFF3E0;
  font-weight: 700;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.trust-indicators {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-item img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.trust-item span {
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
}

.hero-internal {
  background: linear-gradient(135deg, #5E35B1 0%, #D84315 100%);
  color: #ffffff;
  padding: 80px 0 60px;
  border-bottom: 4px solid #FFF3E0;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #FFF3E0;
}

.breadcrumb a {
  color: #ffffff;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  border-bottom-color: #FFF3E0;
}

.hero-internal h1 {
  color: #ffffff;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #FFF3E0;
}

/* ============================================
   STATS BANNER - HIGH CONTRAST
   ============================================ */
.stats-banner {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
  border-top: 4px solid #D84315;
  border-bottom: 4px solid #D84315;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  min-width: 200px;
}

.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #D84315;
  text-shadow: 3px 3px 0 #5E35B1;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFF3E0;
}

/* ============================================
   CARD LAYOUTS - GEOMETRIC & BOLD
   ============================================ */
.services-showcase,
.value-propositions,
.membership-benefits {
  padding: 80px 0;
  background: #ffffff;
}

.services-showcase h2,
.value-propositions h2,
.membership-benefits h2 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.services-showcase h2::after,
.value-propositions h2::after,
.membership-benefits h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #D84315 0%, #5E35B1 100%);
}

.services-grid,
.benefits-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}

.service-card,
.benefit-card,
.value-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  box-shadow: 8px 8px 0 #D84315;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.value-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #5E35B1;
}

.service-card img,
.benefit-card img,
.value-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  filter: invert(19%) sepia(88%) saturate(2866%) hue-rotate(7deg) brightness(91%) contrast(92%);
}

.service-card h3,
.benefit-card h3,
.value-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card p,
.benefit-card p,
.value-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.service-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #D84315;
  margin: 24px 0;
}

.value {
  font-weight: 900;
  color: #5E35B1;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ============================================
   TESTIMONIALS - BOLD CARDS
   ============================================ */
.testimonials {
  background: #FFF3E0;
  padding: 80px 0;
  position: relative;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 40px;
  box-shadow: 6px 6px 0 #D84315;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 30px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 72px;
  color: #D84315;
  font-family: 'Archivo Black', sans-serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 900;
}

.testimonial-author span {
  font-size: 14px;
  color: #666666;
  font-weight: 700;
}

/* ============================================
   CTA SECTIONS - HIGH IMPACT
   ============================================ */
.membership-cta,
.cta-section,
.enrollment-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-top: 4px solid #D84315;
  border-bottom: 4px solid #D84315;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.membership-cta h2,
.cta-section h2,
.enrollment-cta h2 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 #D84315;
}

.membership-cta p,
.cta-section p,
.enrollment-cta p {
  font-size: 20px;
  color: #FFF3E0;
  margin-bottom: 32px;
  font-weight: 700;
}

.membership-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  color: #D84315;
  margin: 32px 0;
  text-shadow: 3px 3px 0 #5E35B1;
}

.benefits-list {
  text-align: left;
  max-width: 600px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border: 3px solid #D84315;
}

.benefits-list li {
  font-size: 18px;
  padding: 12px 0 12px 40px;
  position: relative;
  color: #FFF3E0;
  font-weight: 700;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: #D84315;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-quick,
.contact-methods,
.contact-cta {
  padding: 80px 0;
  background: #f5f5f5;
}

.contact-grid,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-item,
.contact-card,
.contact-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 6px 6px 0 #D84315;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-item:hover,
.contact-card:hover,
.contact-option:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #5E35B1;
}

.contact-item img,
.contact-card img,
.contact-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: invert(19%) sepia(88%) saturate(2866%) hue-rotate(7deg) brightness(91%) contrast(92%);
}

.contact-item h3,
.contact-card h3,
.contact-option h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-item a,
.contact-card a,
.contact-option a {
  color: #D84315;
  font-weight: 900;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.contact-item a:hover,
.contact-card a:hover,
.contact-option a:hover {
  color: #5E35B1;
}

.contact-detail {
  font-weight: 900;
  font-size: 20px;
  color: #D84315;
  display: block;
  margin-bottom: 12px;
}

/* ============================================
   PRICING TABLES - BOLD DISPLAY
   ============================================ */
.pricing-detailed,
.pricing-table {
  padding: 80px 0;
  background: #ffffff;
}

.pricing-cards,
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.pricing-card,
.pricing-tier {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 40px 32px;
  position: relative;
  box-shadow: 6px 6px 0 #D84315;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card:hover,
.pricing-tier:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 #5E35B1;
}

.pricing-card.popular {
  border-color: #D84315;
  border-width: 6px;
  box-shadow: 8px 8px 0 #5E35B1;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #D84315;
  color: #ffffff;
  padding: 8px 24px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #1a1a1a;
}

.pricing-card h3,
.pricing-tier h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #D84315;
  margin: 24px 0;
  text-shadow: 2px 2px 0 #5E35B1;
}

.price-per-month {
  font-size: 20px;
  font-weight: 900;
  color: #5E35B1;
  margin: -16px 0 16px;
}

.billing {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

.savings {
  background: #FFF3E0;
  color: #D84315;
  font-weight: 900;
  padding: 8px 16px;
  margin: 12px 0;
  display: inline-block;
  border: 2px solid #D84315;
}

.pricing-card ul,
.pricing-tier ul {
  text-align: left;
  margin: 32px 0;
}

.pricing-card li,
.pricing-tier li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 700;
}

.pricing-card li::before,
.pricing-tier li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: #D84315;
  font-weight: 900;
  font-size: 18px;
}

/* ============================================
   TEAM & TIMELINE SECTIONS
   ============================================ */
.team,
.team-contact {
  padding: 80px 0;
  background: #f5f5f5;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.team-member,
.team-contact-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 40px 32px;
  box-shadow: 6px 6px 0 #D84315;
  margin-bottom: 20px;
}

.team-member h3,
.team-contact-card h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.role {
  font-size: 16px;
  font-weight: 900;
  color: #D84315;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.favorite,
.speciality {
  font-size: 14px;
  color: #5E35B1;
  font-weight: 900;
  margin-top: 16px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  padding-left: 60px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #D84315 0%, #5E35B1 100%);
}

.timeline-item {
  position: relative;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 24px 32px;
  box-shadow: 4px 4px 0 #D84315;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -56px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #D84315;
  border: 4px solid #1a1a1a;
  border-radius: 50%;
}

.year {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  color: #D84315;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 #5E35B1;
}

/* ============================================
   PROCESS STEPS - NUMBERED FLOW
   ============================================ */
.booking-process,
.registration-process,
.how-to-join,
.how-it-works {
  padding: 80px 0;
  background: #ffffff;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #D84315;
  color: #ffffff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 5px solid #1a1a1a;
  box-shadow: 5px 5px 0 #5E35B1;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.step p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
}

.step img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: invert(19%) sepia(88%) saturate(2866%) hue-rotate(7deg) brightness(91%) contrast(92%);
}

/* ============================================
   CATEGORIES & FEATURES GRIDS
   ============================================ */
.game-categories,
.event-types {
  padding: 80px 0;
  background: #f5f5f5;
}

.categories-grid,
.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.category-card,
.type-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 40px 32px;
  box-shadow: 6px 6px 0 #D84315;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover,
.type-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #5E35B1;
}

.category-card img,
.type-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  filter: invert(19%) sepia(88%) saturate(2866%) hue-rotate(7deg) brightness(91%) contrast(92%);
}

.count {
  font-weight: 900;
  font-size: 18px;
  color: #D84315;
  margin-bottom: 12px;
  display: block;
}

.examples {
  font-size: 14px;
  color: #5E35B1;
  font-weight: 700;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   SERVICE DETAILS & TEXT SECTIONS
   ============================================ */
.service-detailed,
.story-section,
.values {
  padding: 80px 0;
  background: #ffffff;
}

.service-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-detail img {
  width: 100px;
  height: 100px;
  margin-bottom: 32px;
  filter: invert(19%) sepia(88%) saturate(2866%) hue-rotate(7deg) brightness(91%) contrast(92%);
}

.features-list,
.rules-list {
  text-align: left;
  margin: 32px 0;
  background: #FFF3E0;
  padding: 32px 40px;
  border: 4px solid #1a1a1a;
}

.features-list li,
.rules-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
}

.features-list li::before,
.rules-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 12px;
  color: #D84315;
  font-weight: 900;
  font-size: 20px;
}

.pricing-info {
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px 32px;
  margin: 32px 0;
  border: 4px solid #D84315;
  font-size: 18px;
  font-weight: 700;
}

.text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.intro-text {
  font-size: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #4a4a4a;
  font-weight: 700;
  line-height: 1.7;
}

/* ============================================
   EVENTS & CARDS
   ============================================ */
.featured-events {
  padding: 80px 0;
  background: #ffffff;
}

.events-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.event-card,
.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 40px 32px;
  box-shadow: 6px 6px 0 #D84315;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.event-card:hover,
.action-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #5E35B1;
}

.event-card img,
.action-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  filter: invert(19%) sepia(88%) saturate(2866%) hue-rotate(7deg) brightness(91%) contrast(92%);
}

.event-date {
  font-weight: 900;
  font-size: 16px;
  color: #5E35B1;
  margin-bottom: 16px;
  display: block;
}

.attendees {
  font-weight: 900;
  font-size: 14px;
  color: #1a1a1a;
  background: #FFF3E0;
  padding: 8px 16px;
  display: inline-block;
  margin: 12px 0;
  border: 2px solid #D84315;
}

/* ============================================
   RENTAL & STATS SECTIONS
   ============================================ */
.rental-stats {
  padding: 60px 0;
  background: #1a1a1a;
  border-bottom: 4px solid #D84315;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid #D84315;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(216, 67, 21, 0.1);
  transform: translateY(-5px);
}

/* ============================================
   OPENING HOURS & TABLES
   ============================================ */
.opening-hours,
.transportation {
  padding: 60px 0;
  background: #f5f5f5;
}

.hours-table {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px 0 #D84315;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 2px solid #e0e0e0;
}

.hours-row:last-child {
  border-bottom: none;
}

.days {
  font-weight: 900;
  font-size: 18px;
  color: #1a1a1a;
}

.hours {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #D84315;
}

.note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #666666;
  font-weight: 700;
}

/* ============================================
   TRANSPORTATION & MAP
   ============================================ */
.transport-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.transport-option {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 4px 4px 0 #D84315;
  margin-bottom: 20px;
}

.transport-option img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  filter: invert(19%) sepia(88%) saturate(2866%) hue-rotate(7deg) brightness(91%) contrast(92%);
}

.map-location {
  padding: 60px 0;
  background: #ffffff;
}

.map-info {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: #FFF3E0;
  padding: 40px;
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px 0 #D84315;
}

.address {
  font-size: 20px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.landmarks {
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 700;
  line-height: 1.8;
}

.accessibility {
  text-align: center;
  margin-top: 32px;
  font-weight: 900;
  color: #5E35B1;
  font-size: 16px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-message {
  padding: 100px 0;
  background: linear-gradient(135deg, #5E35B1 0%, #D84315 100%);
  color: #ffffff;
  text-align: center;
}

.success-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  filter: brightness(0) invert(1);
  animation: scaleIn 0.6s ease-out;
}

.confirmation {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #FFF3E0;
}

.next-steps {
  padding: 80px 0;
  background: #f5f5f5;
}

.contact-reminder {
  padding: 60px 0;
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

.urgency-message {
  font-size: 20px;
  color: #FFF3E0;
  margin-bottom: 32px;
  font-weight: 700;
}

.phone-display {
  margin: 32px 0;
}

.phone-display a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #D84315;
  text-shadow: 3px 3px 0 #5E35B1;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  padding: 60px 0;
  background: #ffffff;
}

.last-updated {
  font-size: 14px;
  color: #666666;
  font-weight: 700;
  margin-top: -12px;
}

/* ============================================
   FOOTER - BOLD STRUCTURE
   ============================================ */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 20px;
  border-top: 4px solid #D84315;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-section h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  color: #D84315;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 14px;
  color: #FFF3E0;
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #FFF3E0;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #D84315;
}

.footer-nav a:hover {
  color: #D84315;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #999999;
  font-weight: 700;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 4px solid #D84315;
  padding: 24px;
  z-index: 1500;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 400px;
  color: #ffffff;
}

.cookie-text p {
  font-size: 16px;
  color: #FFF3E0;
  font-weight: 700;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: #D84315;
  color: #ffffff;
  border-color: #D84315;
}

.cookie-accept:hover {
  background: #5E35B1;
  border-color: #5E35B1;
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border-color: #666666;
}

.cookie-reject:hover {
  background: #666666;
}

.cookie-settings {
  background: transparent;
  color: #FFF3E0;
  border-color: #FFF3E0;
}

.cookie-settings:hover {
  background: rgba(255, 243, 224, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border: 4px solid #1a1a1a;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  background: #D84315;
  color: #ffffff;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #1a1a1a;
}

.modal-header h3 {
  font-size: 24px;
  margin: 0;
  color: #ffffff;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px;
}

.cookie-category {
  margin-bottom: 32px;
  padding: 24px;
  background: #f5f5f5;
  border: 3px solid #e0e0e0;
}

.cookie-category h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-switch {
  width: 60px;
  height: 30px;
  background: #cccccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #1a1a1a;
}

.toggle-switch.active {
  background: #D84315;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  border: 2px solid #1a1a1a;
}

.toggle-switch.active::after {
  left: 32px;
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-label {
  font-weight: 900;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.modal-footer {
  padding: 24px 32px;
  background: #f5f5f5;
  border-top: 3px solid #e0e0e0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ============================================
   ANIMATIONS - BOLD MOVEMENTS
   ============================================ */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  p {
    font-size: 16px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Button adjustments */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
  }
  
  /* Grid layouts to single column */
  .services-grid,
  .benefits-grid,
  .values-grid,
  .testimonials-grid,
  .events-grid,
  .categories-grid,
  .types-grid,
  .pricing-cards,
  .pricing-grid,
  .team-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .value-card,
  .testimonial-card,
  .event-card,
  .category-card,
  .type-card,
  .pricing-card,
  .pricing-tier,
  .team-member {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  /* Stats adjustments */
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  /* Contact grids */
  .contact-grid,
  .contact-options {
    flex-direction: column;
  }
  
  .contact-item,
  .contact-card,
  .contact-option {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Timeline adjustments */
  .timeline {
    padding-left: 40px;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-item::before {
    left: -38px;
    width: 20px;
    height: 20px;
  }
  
  /* Transport grid */
  .transport-grid {
    flex-direction: column;
  }
  
  .transport-option {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Section padding */
  .section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  /* Container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
    text-align: center;
  }
  
  /* Modal adjustments */
  .modal-content {
    max-width: 100%;
    max-height: 90vh;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 20px;
  }
  
  /* Actions grid */
  .actions-grid {
    flex-direction: column;
  }
  
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA sections */
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Membership price */
  .membership-price,
  .price {
    font-size: 40px;
  }
  
  /* Hero internal */
  .hero-internal {
    padding: 60px 0 40px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-card,
  .value-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .event-card,
  .category-card,
  .type-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .step {
    flex: 1 1 calc(50% - 16px);
  }
  
  .transport-option {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
  }
}