/* --- ATHLETIC DESIGN SYSTEM TOKENS --- */
:root {
  --color-bg-primary: #000000;      /* Pure Sports Black */
  --color-bg-secondary: #0D0D0D;    /* Carbon Fiber Charcoal */
  --color-bg-card: #141414;         /* Matte Black Card */
  --color-bg-card-hover: #1A1A1A;   /* Active Carbon */
  
  --color-primary: #CCFF00;         /* Electric Laser Lime */
  --color-primary-hover: #E6FF66;
  --color-primary-glow: rgba(204, 255, 0, 0.25);
  --color-primary-glow-strong: rgba(204, 255, 0, 0.5);
  
  --color-text-header: #FFFFFF;
  --color-text-body: #E5E5E5;
  --color-text-muted: #8E8E93;
  
  --border-glass: #222222;
  --border-glass-hover: var(--color-primary);
  
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --nav-height: 80px;
  --nav-height-shrunk: 70px;
  --transition-sport: all 0.25s cubic-bezier(0.25, 1, 0.5, 1); /* Snappy transitions */
  
  --container-width: 1200px;
  --border-radius-sm: 2px;          /* Aggressive sharp corners */
  --border-radius-md: 4px;
  --border-radius-lg: 8px;
  --border-radius-full: 9999px;
  
  --shadow-neon: 0 0 20px var(--color-primary-glow);
  --shadow-neon-strong: 0 0 35px var(--color-primary-glow-strong);
}

/* --- RESET & ACCESSIBILITY --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-bg-primary);
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sport mesh background texture */
.mesh-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-header);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

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

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

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

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

/* Angled section divider overlays */
.diagonal-decor-left {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 120%;
  background: linear-gradient(135deg, rgba(204, 255, 0, 0.02) 0%, transparent 100%);
  transform: skewX(-15deg);
  pointer-events: none;
}

.diagonal-decor-right {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 120%;
  background: linear-gradient(-45deg, rgba(204, 255, 0, 0.02) 0%, transparent 100%);
  transform: skewX(15deg);
  pointer-events: none;
}

/* --- SCROLL REVEAL ANIMATIONS (Snappy Athletic Transitions) --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: var(--transition-sport);
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
  height: var(--nav-height-shrunk);
  background-color: #000000;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-sport);
  filter: drop-shadow(0 0 4px rgba(204, 255, 0, 0.1));
}

.header.scrolled .logo-img {
  height: 50px;
  filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 12px;
  transition: var(--transition-sport);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

/* Sharp underline bar for active state */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: var(--transition-sport);
}

.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 24px);
}

/* --- BUTTONS (SHARP, ATHLETIC STATE TOGGLES) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition-sport);
  gap: 8px;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: var(--shadow-neon-strong);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-header);
  border-color: #333333;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: scale(1.02);
}

.nav-cta {
  padding: 8px 18px;
  font-size: 0.9rem;
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-text-header);
  transition: var(--transition-sport);
  border-radius: 0;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(204, 255, 0, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

/* Sharp tag design */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #111111;
  border-left: 4px solid var(--color-primary);
  border-right: 1px solid #222222;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-header);
  margin-bottom: 28px;
}

.hero-tag span.dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  display: inline-block;
  box-shadow: 0 0 8px var(--color-primary);
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title span.accent-text {
  color: var(--color-primary);
  text-shadow: 0 0 15px rgba(204, 255, 0, 0.3);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 2px solid #222222;
  padding-top: 36px;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 2px solid #333333;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  background-color: var(--color-bg-secondary);
  transition: var(--transition-sport);
}

.hero-img-wrapper:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 30px var(--color-primary-glow);
  transform: scale(1.01);
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* --- SECTION GENERAL HEADERS --- */
.section-header {
  text-align: left;
  max-width: 700px;
  margin-bottom: 70px;
  position: relative;
  z-index: 10;
  border-left: 5px solid var(--color-primary);
  padding-left: 24px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 400;
}

/* --- FEATURES SECTION --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 10;
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid #222222;
  border-radius: var(--border-radius-sm);
  padding: 44px 32px;
  transition: var(--transition-sport);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-sport);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #444444;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  background-color: #1A1A1A;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid #333333;
  transition: var(--transition-sport);
  color: var(--color-primary);
}

.feature-card:hover .feature-icon-box {
  background-color: var(--color-primary);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.feature-icon-box svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- COURT SHOWCASE SECTION --- */
.showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.showcase-gallery {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 2px solid #222222;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  aspect-ratio: 16/10;
}

.showcase-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-gallery:hover img {
  transform: scale(1.02);
}

.showcase-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  z-index: 2;
  text-transform: uppercase;
}

.showcase-info h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.showcase-info p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.showcase-details {
  list-style: none;
  margin-bottom: 40px;
}

.showcase-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.showcase-details li svg {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- SOCIAL BLOG SECTION --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 10;
}

.blog-card {
  background-color: var(--color-bg-card);
  border: 1px solid #222222;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-sport);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.blog-img-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #222222;
}

.blog-card:hover .blog-img-wrapper {
  border-bottom-color: var(--color-primary);
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.02);
}

.blog-platform-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #000000;
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.blog-platform-tag svg {
  width: 14px;
  height: 14px;
}

.blog-content {
  padding: 28px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.blog-card h3 a {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card h3 a:hover {
  color: var(--color-primary);
}

.blog-excerpt {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

.blog-link:hover {
  color: var(--color-primary);
  gap: 10px;
}

.blog-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-sport);
  stroke: var(--color-primary);
}

/* --- FAQ SECTION --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid #222222;
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-sport);
}

.faq-item:hover {
  border-color: #444444;
  background-color: var(--color-bg-card-hover);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-header);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  text-transform: uppercase;
}

.faq-icon {
  color: var(--color-primary);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.faq-item.faq-open {
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 24px;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 24px;
}

/* --- CTA BOOKING SECTION --- */
.booking-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.booking-card {
  background: #0D0D0D;
  border: 2px solid #222222;
  border-radius: var(--border-radius-sm);
  padding: 64px 48px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.booking-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.booking-info h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.booking-info p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-primary);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--color-primary-glow);
}

.step-text h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.step-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #050505;
  border-radius: var(--border-radius-sm);
  padding: 48px;
  border: 1px solid #222222;
  text-align: center;
}

.booking-actions:hover {
  border-color: #333333;
}

.booking-actions h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.booking-actions p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.booking-buttons .btn {
  width: 100%;
}

/* --- FOOTER --- */
.footer {
  background-color: #050505;
  border-top: 2px solid #1A1A1A;
  padding: 90px 0 40px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .logo-img {
  height: 80px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-sm);
  background-color: #111111;
  border: 1px solid #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-sport);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: #000000;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 10px var(--color-primary-glow);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-title {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: var(--color-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

.footer-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-info li svg {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-info li address {
  font-style: normal;
}

.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.company-reg {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-reg span {
  color: var(--color-text-header);
}

/* --- ANIMATIONS --- */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(204, 255, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0);
  }
}

/* --- MOBILE STYLING (RESPONSIVE RULES) --- */
@media (max-width: 991px) {
  .section {
    padding: 90px 0;
  }
  
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 90px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #000000;
    border-left: 2px solid var(--color-primary);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: var(--transition-sport);
    z-index: 99;
  }
  
  .nav-menu.active {
    right: 0;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.9);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .header-cta-btn {
    display: none;
  }

  .nav-menu .nav-cta {
    display: inline-flex;
    margin-top: 10px;
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .booking-card {
    padding: 40px 24px;
  }
  
  .booking-actions {
    padding: 32px 20px;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
  }
}
