@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --color-bg-primary: #0A0E17;
  --color-bg-secondary: #121824;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-bg-card-hover: rgba(255, 255, 255, 0.06);
  
  --color-primary: #CCFF00; /* Neon Lime Pickleball Color */
  --color-primary-hover: #B8E600;
  --color-primary-glow: rgba(204, 255, 0, 0.15);
  --color-primary-glow-strong: rgba(204, 255, 0, 0.35);
  
  --color-text-header: #FFFFFF;
  --color-text-body: #E2E8F0;
  --color-text-muted: #94A3B8;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.18);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --nav-height: 80px;
  --nav-height-shrunk: 70px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-neon: 0 0 25px var(--color-primary-glow);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-header);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-secondary);
}

/* --- DECORATIVE GLOWS --- */
.radial-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(204,255,0,0) 70%);
  top: 10%;
  left: -150px;
  pointer-events: none;
  z-index: 1;
}

.radial-glow-right {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(204,255,0,0) 70%);
  bottom: 10%;
  right: -200px;
  pointer-events: none;
  z-index: 1;
}

/* --- SCROLL REVEAL ANIMATIONS (JS-Triggered) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 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-smooth);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  height: var(--nav-height-shrunk);
  background-color: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 42px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-full);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  gap: 8px;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--color-primary-glow-strong);
}

.btn-secondary {
  background-color: var(--color-bg-card);
  color: var(--color-text-header);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background-color: var(--color-bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

.nav-cta {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* 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: 2px;
  background-color: var(--color-text-header);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* --- 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 70% 30%, rgba(204, 255, 0, 0.05) 0%, rgba(10, 14, 23, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(204, 255, 0, 0.03) 0%, rgba(10, 14, 23, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span.accent-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-glass);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

.hero-visual::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(10, 14, 23, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
  background-color: var(--color-bg-secondary);
  transition: var(--transition-smooth);
}

.hero-img-wrapper:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 30px 60px -20px rgba(204, 255, 0, 0.15);
  transform: scale(1.02);
}

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

/* --- SECTION GENERAL HEADERS --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 10;
}

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

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

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

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

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary-glow) 0%, rgba(204,255,0,0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-premium);
}

.feature-card:hover::before {
  opacity: 0.4;
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(204, 255, 0, 0.08);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(204, 255, 0, 0.2);
  transition: var(--transition-smooth);
  color: var(--color-primary);
}

.feature-card:hover .feature-icon-box {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 0 20px var(--color-primary-glow-strong);
  border-color: transparent;
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

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

.showcase-gallery {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-premium);
  aspect-ratio: 16/10;
}

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

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

.showcase-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  z-index: 2;
}

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

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

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

.showcase-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.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(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 10;
}

.blog-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-premium);
}

.blog-img-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  width: 240px;
  max-width: calc(100% - 48px);
  margin: 24px auto 0 auto;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-glass);
}

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

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

.blog-platform-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.blog-content {
  padding: 24px;
}

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

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

.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: 20px;
  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: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.blog-link:hover {
  gap: 10px;
}

.blog-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

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

.booking-card {
  background: radial-gradient(circle at 100% 0%, var(--color-primary-glow) 0%, rgba(10, 14, 23, 0) 55%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 60px 48px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-premium);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.booking-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

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

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

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

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(204, 255, 0, 0.1);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

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

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

.booking-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-md);
  padding: 40px;
  border: 1px solid var(--border-glass);
  text-align: center;
}

.booking-actions h3 {
  font-size: 1.5rem;
  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: #05070B;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-img {
  height: 60px;
  margin-bottom: 20px;
}

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

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

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

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  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;
}

.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 var(--border-glass);
  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: 500;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.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 10px rgba(204, 255, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(204, 255, 0, 0);
  }
}

/* --- 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 var(--border-glass);
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-glass-hover);
  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.15rem;
  font-weight: 600;
  color: var(--color-text-header);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  outline: none;
}

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

.faq-item.active {
  border-color: rgba(204, 255, 0, 0.3);
  box-shadow: 0 10px 30px -10px rgba(204, 255, 0, 0.05);
}

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

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

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

/* --- MOBILE STYLING (RESPONSIVE RULES) --- */
@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }
  
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .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: 40px;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #0A0E17;
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-menu.active {
    right: 0;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.6);
  }
  
  /* hamburger state when menu is active */
  .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; /* Hide nav button, we put CTA inside the mobile menu or show it in mobile view inside the list */
  }

  .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: 30px 20px;
  }
  
  .booking-actions {
    padding: 24px 16px;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
  }
}
