/* ==========================================================================
   AKTIN GYM 2026 - ULTRA MODERN CSS DESIGN SYSTEM
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-main: #060913;
  --bg-surface: #0e1526;
  --bg-card: rgba(18, 27, 46, 0.7);
  --bg-card-hover: rgba(28, 41, 69, 0.85);
  
  --primary: #00f2fe;
  --primary-glow: rgba(0, 242, 254, 0.4);
  --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --accent-gold: #fbbf24;
  --accent-purple: #8b5cf6;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 242, 254, 0.3);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Container Widths */
  --max-width: 1240px;
  --max-width-narrow: 840px;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.margin-top-xl {
  margin-top: 3rem;
}

/* --- Ambient Background Glow --- */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: #00f2fe;
  top: -200px;
  left: -100px;
}

.bg-glow-2 {
  width: 700px;
  height: 700px;
  background: #3b82f6;
  top: 40%;
  right: -200px;
}

.bg-glow-3 {
  width: 500px;
  height: 500px;
  background: #8b5cf6;
  bottom: 0;
  left: 20%;
}

/* --- Glassmorphism Card Utility --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.glass-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 242, 254, 0.12);
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #040914;
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 242, 254, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-glow);
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: #040914;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

/* Glow animation effect */
.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(30deg) translateY(-100%);
  transition: all 0.75s ease;
}

.btn-glow:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3.5rem;
}

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

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* --- Header / Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 242, 254, 0.3));
  transition: transform var(--transition-fast);
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(4deg);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-gradient);
  color: #040914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.logo-text span {
  color: var(--primary);
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

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

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

}

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

.mobile-only-link {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-size: 3.8rem;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

/* Hero Image Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.hero-image-box {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 600px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid var(--border-glow);
  box-shadow: 0 25px 50px rgba(0, 242, 254, 0.15), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-card-wrapper:hover .hero-img,
.hero-card-wrapper:hover .hero-video {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(6, 9, 19, 0.6) 100%);
  pointer-events: none;
}

/* Floating Micro Cards */
.floating-badge {
  position: absolute;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}

.badge-top-right {
  top: 30px;
  right: -20px;
  animation: floatAnim 4s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 30px;
  left: -20px;
  animation: floatAnim 4s ease-in-out infinite 2s;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-rating {
  color: var(--accent-gold);
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-glow);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* --- Objections / Kifogások Section --- */
.objections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .objections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .objections-grid {
    grid-template-columns: 1fr !important;
  }
}

.objection-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.obj-header h3 {
  font-size: 1.2rem;
  margin-top: 0.6rem;
  color: var(--text-main);
}

.obj-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.obj-myth {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.obj-truth {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  margin-bottom: 0.5rem;
}

.obj-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Trainers Section --- */
.trainer-single-wrapper {
  width: 100%;
}

.trainer-featured-card {
  padding: 0;
  overflow: hidden;
}

.trainer-featured-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: stretch;
}

@media (max-width: 900px) {
  .trainer-featured-grid {
    grid-template-columns: 1fr;
  }
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 2.5rem;
}

.trainer-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.trainer-image-box {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

@media (max-width: 900px) {
  .trainer-image-box {
    aspect-ratio: 1 / 1;
    max-height: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .trainer-img {
    object-position: center center;
  }
  .trainer-badge {
    display: none;
  }
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-normal);
}

.trainer-card:hover .trainer-img {
  transform: scale(1.04);
}

.trainer-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(6, 9, 19, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

.trainer-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.trainer-name {
  font-size: 1.8rem;
}

.trainer-role {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: -0.5rem;
}

.trainer-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;

  font-style: italic;
}

.trainer-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.spec-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Process Section --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  padding: 2.5rem 1.8rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--primary-gradient);
  color: #040914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

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

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-card {
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.popular-card {
  border-color: var(--border-glow);
  background: rgba(18, 27, 46, 0.9);
  box-shadow: 0 25px 60px rgba(0, 242, 254, 0.18);
  transform: scale(1.03);
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.popular-card:hover {
  transform: scale(1.05) translateY(-4px);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #040914;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--primary-glow);
  z-index: 5;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;

  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-glass);
}

.package-name {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.popular-card .price-val {
  color: var(--primary);
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-tag-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.package-features li i {
  color: var(--primary);
  font-size: 1rem;
}

/* Calculator Box */
.calculator-box {
  padding: 2.5rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calc-info p {
  color: var(--text-muted);
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 600;
}

.custom-slider {
  width: 100%;
  height: 8px;
  background: var(--bg-surface);
  border-radius: var(--radius-pill);
  outline: none;
  accent-color: var(--primary);
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.calc-result {
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid var(--border-glow);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

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

.calc-result strong {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

/* --- Reviews Section --- */
.reviews-slider-wrapper {
  position: relative;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3.25rem;
  box-sizing: border-box;
}

.reviews-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
}

.reviews-slider {
  display: flex;
  align-items: flex-start;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: pan-y;
  will-change: transform, height;
}

.review-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  touch-action: pan-y;
  overflow: visible;
  height: auto;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  display: flex;
  gap: 0.3rem;
}

.review-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #040914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.author-info strong {
  display: block;
  font-size: 1.1rem;
}

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

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.slider-btn.prev-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-btn.next-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-btn:hover {
  background: var(--primary);
  color: #040914;
  border-color: var(--primary);
}

.slider-dots {
  display: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: var(--radius-pill);
}

/* --- FAQ Section --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;

  gap: 1rem;
}

.faq-icon {
  color: var(--primary);
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), opacity var(--transition-normal);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Contact & Booking Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.booking-card {
  padding: 3rem 2.5rem;
}

.badge-pill-sm {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.booking-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.booking-header p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* --- Time Slot Selector --- */
.slot-picker-wrapper {
  background: rgba(10, 25, 47, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.slot-date-selector {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.slot-date-btn {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-width: 75px;
}

.slot-date-btn:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--primary);
  color: #fff;
}

.slot-date-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25), rgba(79, 172, 254, 0.25));
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
}

.slot-date-btn .day-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slot-date-btn .day-num {
  font-size: 1.1rem;
  font-weight: 800;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.6rem;
}

.slot-btn {
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.slot-btn:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--primary);
  color: #fff;
}

.slot-btn.selected {
  background: var(--primary);
  color: #030712;
  font-weight: 800;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.slot-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  background: rgba(255, 255, 255, 0.01);
  border-color: transparent;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-row .form-group label {
  min-height: 1.8rem;
}

label.checkbox-container {
  display: grid !important;
  grid-template-columns: 20px 1fr !important;
  gap: 0.75rem !important;
  align-items: start !important;
  margin-top: 0.75rem !important;
  margin-bottom: 1.25rem !important;
  cursor: pointer !important;
}

label.checkbox-container input[type="checkbox"] {
  grid-column: 1 !important;
  width: 20px !important;
  max-width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  padding: 0 !important;
  margin: 2px 0 0 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  accent-color: var(--primary) !important;
  cursor: pointer !important;
}

label.checkbox-container .checkbox-text {
  grid-column: 2 !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  line-height: 1.5 !important;
}

label.checkbox-container .checkbox-text a {
  color: var(--primary) !important;
  text-decoration: underline !important;
  display: inline !important;
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

select,
.form-group select {
  width: 100% !important;
  padding: 0.9rem 2.8rem 0.9rem 1.2rem !important;
  background-color: var(--bg-surface) !important;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMGYyZmUiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGQ9Im02IDkgNiA2IDYtNiIvPjwvc3ZnPg==") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.2rem center !important;
  background-size: 1.1rem !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: var(--radius-md) !important;
  color: var(--text-main) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  outline: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  transition: all var(--transition-fast) !important;
}

select::-ms-expand,
.form-group select::-ms-expand {
  display: none !important;
}

.form-group select option {
  background-color: #0c1527;
  color: #f1f5f9;
  padding: 0.8rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  background-color: rgba(14, 21, 38, 0.95);
}

.form-success-msg {
  padding: 1rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hidden { display: none !important; }

/* Contact Info Card */
.contact-info-card {
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.info-header p {
  color: var(--text-muted);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 1rem;

}

.info-text span, .info-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.info-text a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary);
  color: #040914;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* --- Footer --- */
.footer {
  background: #03050b;
  border-top: 1px solid var(--border-glass);
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 450px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 0.875rem;
}



/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 600px; margin: 0 auto; width: 100%; }
  .calc-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 1.9rem; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(6, 9, 19, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: transform var(--transition-normal), visibility var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
  }
  
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-only-link { display: block; }
  .mobile-toggle { display: block; z-index: 1000; }
  
  .nav-actions .btn { display: none; }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
  
  .stat-divider { display: none; }
  
  .form-row { grid-template-columns: 1fr; }

  .reviews-slider-wrapper { padding: 0 2.5rem; }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .slider-btn.prev-btn { left: 0.2rem; }
  .slider-btn.next-btn { right: 0.2rem; }

  .reviews-slider { align-items: flex-start; }
  .review-card {
    padding: 1.25rem 1rem;
    gap: 0.85rem;
    overflow: visible;
    height: auto;
  }
  .review-stars { font-size: 0.95rem; gap: 0.2rem; }
  .review-text {
    font-size: 0.95rem;
    line-height: 1.55;
    flex-grow: 0;
  }
  .review-author {
    margin-top: 0.25rem;
    gap: 0.5rem;
  }
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .author-info strong { font-size: 0.95rem; }
  .author-info span { font-size: 0.75rem; }
  .popular-card {
    margin-top: 1.5rem;
    transform: none;
  }
  .faq-item { padding: 1.25rem 1.25rem; }
  .booking-card { padding: 2rem 1.25rem; }
  .feature-card { padding: 2rem 1.25rem; }
  .contact-info-card { padding: 2rem 1.25rem; }

  .badge-top-right, .badge-bottom-left {
    position: static;
    margin-top: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Modal Overlay & Card --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.modal-overlay.hidden {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-card {
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.15);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-glow);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-card {
  transform: translateY(20px);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 82, 82, 0.2);
  color: #ff5252;
  border-color: rgba(255, 82, 82, 0.4);
}
