/* ============================================
   JetRental — Design System
   Bright summer theme · Vivid cyan/orange · Clean cards
   ============================================ */

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

:root {
  /* Hero (dark) */
  --bg-deep:    #0b0f1a;
  --bg-dark:    #111827;
  --bg-card:    #1a2234;
  --bg-card-hover: #1e2a3f;

  /* Light backgrounds */
  --bg-white:   #ffffff;
  --bg-sky:     #f0f9ff;
  --bg-sky-mid: #e0f2fe;
  --bg-light:   #f8fafc;
  --bg-yellow:  #fffbeb;

  /* Accent */
  --cyan:       #06b6d4;
  --cyan-bright:#00d4ff;
  --cyan-glow:  rgba(6, 182, 212, 0.3);
  --cyan-dark:  #0891b2;
  --yellow:     #f59e0b;
  --yellow-bright: #fcd34d;
  --yellow-glow: rgba(245, 158, 11, 0.3);
  --orange:     #f97316;
  --orange-light: #fff7ed;
  --gold:       #f5a623;
  --blue:       #3b82f6;

  /* Text light mode */
  --text-dark:  #0f172a;
  --text-body:  #334155;
  --text-muted-light: #64748b;
  --text-dim-light: #94a3b8;

  /* Text dark mode (hero) */
  --text:       #f1f5f9;
  --text-muted: #8899aa;
  --text-dim:   #556677;

  /* Misc */
  --radius:     16px;
  --radius-sm:  10px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.15);
  --shadow-cyan: 0 8px 32px rgba(6, 182, 212, 0.25);
  --border:     1px solid rgba(255,255,255,0.06);
  --border-light: 1px solid #e2e8f0;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --section-pad: clamp(3.5rem, 7vw, 7rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background:
    linear-gradient(175deg,
      #0c1e3c 0%,
      #0369a1 16%,
      #0284c7 30%,
      #0ea5e9 43%,
      #38bdf8 51%,
      #fef9c3 56%,
      #fde68a 65%,
      #f59e0b 78%,
      #b45309 88%,
      #0c1e3c 100%
    );
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 0.5rem;
  display: inline-block;
  background: var(--bg-sky-mid);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
}

/* Dark section label (for dark-bg sections) */
.section-label-dark {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  display: inline-block;
  background: rgba(6,182,212,0.12);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.2;
}

/* Gradient text effect for headings */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-muted-light);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-pad) 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan) 100%);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan-dark);
  border: 2px solid var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249,115,22,0.4);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

/* --- Cards --- */
.card {
  background: var(--bg-white);
  border: var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
}

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.navbar.scrolled .nav-links a { color: var(--text-muted-light); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--text-dark); }
.navbar.scrolled .nav-logo { color: var(--text-dark); }

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  color: #0f172a;
  font-size: 1.6rem;
  padding: 0.25rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
}
.mobile-book-btn {
  font-size: 0.78rem !important;
  padding: 0.4rem 0.9rem !important;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Left-heavy overlay: dark on the left so text is legible, jet ski visible on the right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(11,15,26,0.97) 0%, rgba(11,15,26,0.75) 45%, rgba(11,15,26,0.15) 100%),
    linear-gradient(to top,    rgba(11,15,26,0.85) 0%, transparent 40%);
}

/* Main body: left-aligned, vertically centered */
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.hero-content {
  max-width: 560px;
}

.hero-location {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  font-style: normal;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--yellow-bright);
  text-shadow: 0 0 40px rgba(252, 211, 77, 0.4);
}

/* Yellow gradient text variant */
.gradient-text-yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* Bottom info bar */
.hero-bottom-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(11,15,26,0.6);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ddc84;
  display: inline-block;
  box-shadow: 0 0 6px rgba(61, 220, 132, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-meta-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.12);
}

.hero-meta-alert {
  color: var(--cyan);
  font-weight: 600;
}

/* --- SERVICES SECTION --- */
#services {
  background: var(--bg-sky);
  position: relative;
  overflow: hidden;
}

/* Background blob decorations */
#services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#services::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card .card-bg {
  position: absolute;
  inset: 0;
}
.service-card .card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .card-bg img { transform: scale(1.05); }

.service-card .card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,26,0.97) 0%, rgba(11,15,26,0.75) 45%, rgba(11,15,26,0.5) 100%);
}

.service-card .card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  font-style: italic;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.service-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}
.service-card .price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.service-card .features {
  list-style: none;
  font-size: 0.82rem;
  color: rgba(255,220,180,0.95);
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.service-card .features li::before {
  content: '•';
  color: var(--yellow-bright);
  margin-right: 0.4rem;
}

/* --- PRICING TABLE --- */
#pricing {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pricing-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Rules grid */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.rules-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.rules-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: #fff;
}
.rules-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.rules-card h4 {
  color: #fff;
}
.rules-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}
.rules-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.rules-card ul li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.rules-card strong {
  color: #fff;
}

/* Badge tag inside pricing card */
.badge-tag {
  position: absolute;
  top: -1px;
  right: 1.25rem;
  background: var(--cyan);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

.pricing-card {
  background: var(--bg-white);
  border: var(--border-light);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Colorful top strip */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}
.pricing-card.featured::after {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan-bright) 0%, var(--blue) 100%);
}
.pricing-card.featured::before {
  content: none;
}

.pricing-card .duration {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.pricing-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card.featured .amount {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card .amount small {
  font-size: 1rem;
  color: var(--text-muted-light);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  -webkit-text-fill-color: initial;
}

.pricing-card .label {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.5;
}

/* --- HOW IT WORKS --- */
#how-it-works {
  background: var(--bg-sky);
  position: relative;
  overflow: hidden;
}
#how-it-works::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  position: relative;
}
.steps-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(33.33% + 0.75rem);
  right: calc(33.33% + 0.75rem);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  background: var(--bg-white);
  border: var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--cyan-dark);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-sky-mid) 0%, var(--bg-sky) 100%);
  border: 2px solid var(--bg-sky-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(6,182,212,0.12);
}

.step-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* --- EXPERIENCE / ROUTE --- */
#experience {
  background: var(--bg-white);
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
}

.landmarks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landmarks-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-sky);
  border-radius: var(--radius-sm);
  border: var(--border-light);
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--transition);
  font-weight: 500;
}
.landmarks-list li:hover {
  background: var(--bg-sky-mid);
  border-color: rgba(6,182,212,0.4);
  transform: translateX(6px);
  color: var(--cyan-dark);
}

.landmark-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.experience-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- TESTIMONIALS --- */
#reviews {
  background: var(--bg-sky);
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--bg-white);
  border: var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
/* Big quote mark decoration */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-size: 4rem;
  color: var(--bg-sky-mid);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  font-weight: 700;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.875rem;
  letter-spacing: 0.05em;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-author small {
  font-weight: 400;
  color: var(--text-muted-light);
  display: block;
  margin-top: 0.1rem;
  font-size: 0.77rem;
}

/* --- FAQ --- */
#faq {
  background: var(--bg-white);
}

.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: var(--border-light);
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  border: var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  box-shadow: 0 4px 20px rgba(6,182,212,0.1);
  border-color: rgba(6,182,212,0.3);
}

.faq-question {
  width: 100%;
  background: none;
  color: var(--text-dark);
  padding: 1.25rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { color: var(--cyan-dark); }
.faq-item.open .faq-question { color: var(--cyan-dark); }

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--cyan-dark);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.75;
}

/* --- LOCATION --- */
#location {
  background: var(--bg-sky);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-sky-mid) 0%, #bae6fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(6,182,212,0.15);
}

.info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}
.info-item p {
  font-size: 0.84rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-light);
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  filter: saturate(1.1);
}

/* --- GALLERY STRIP --- */
.gallery-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1.5rem 1rem;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-item {
  flex-shrink: 0;
  width: 180px;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

/* --- FOOTER --- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 0 1.5rem;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 300px;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-icon:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(12,192,223,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --- Float Buttons (WhatsApp + Telegram) --- */
.float-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.12);
}
.telegram-float {
  background: #229ED9;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.45);
}
.telegram-float:hover {
  box-shadow: 0 6px 30px rgba(34, 158, 217, 0.6);
}
.whatsapp-float {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-float:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* --- ANIMATIONS (GSAP classes) --- */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal-left { opacity: 0; transform: translateX(-30px); }
.reveal-right { opacity: 0; transform: translateX(30px); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-actions { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .nav-links.open a { color: var(--text-body); }
  .nav-links.open a:hover { color: var(--cyan-dark); }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid--4 { grid-template-columns: 1fr 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .rules-grid--3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid--4 { grid-template-columns: 1fr 1fr; }
  .experience-content { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 3.2rem; }
  .hero-meta { gap: 1rem; }
  .hero-meta-divider { display: none; }
  .hero-body { padding-top: 6rem; }
}

@media (max-width: 480px) {
  .pricing-grid--4 { grid-template-columns: 1fr; }
  .delivery-note-grid { grid-template-columns: 1fr !important; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* --- MARQUEE TICKER --- */
.marquee-track {
  background: linear-gradient(90deg, var(--cyan-dark) 0%, var(--blue) 100%);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee-inner span { padding: 0 0.5rem; }
.marquee-dot { color: rgba(255,255,255,0.4) !important; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- WHY RIDE WITH US --- */
.why-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* Each card gets a colored top accent bar */
.why-card {
  background: var(--bg-white);
  border: var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(6,182,212,0.2));
}

.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

/* --- PHOTO COLLAGE --- */
.collage-section {
  padding: 0;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.collage-item {
  position: relative;
  overflow: hidden;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collage-item:hover img { transform: scale(1.06); }

.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,26,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.collage-item:hover .collage-overlay { opacity: 1; }

.collage-overlay span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.collage-tall {
  grid-row: span 2;
}

.collage-wide {
  grid-column: span 2;
}

/* --- ATMOSPHERE QUOTE --- */
.quote-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.quote-bg {
  position: absolute;
  inset: 0;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,15,26,0.72);
  backdrop-filter: blur(2px);
}

.quote-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.big-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  max-width: 780px;
  position: relative;
}
.big-quote::before {
  content: '"';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  font-size: 6rem;
  color: var(--cyan);
  opacity: 0.2;
  font-style: normal;
  line-height: 1;
}

/* Responsive additions */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .collage-tall { grid-row: span 1; }
  .collage-wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .collage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .collage-item { height: 220px; }
  .collage-tall, .collage-wide { grid-row: span 1; grid-column: span 1; }
}

/* --- DELIVERY SECTION --- */
#delivery {
  background: var(--bg-sky);
  position: relative;
  overflow: hidden;
}
#delivery::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Delivery step cards */
.delivery-grid .step-card {
  background: var(--bg-white);
}

/* --- AVAILABILITY BADGE --- */
.availability-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, rgba(59,130,246,0.08) 100%);
  border: 1.5px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

/* --- BOOKING SECTION --- */
#booking {
  background: linear-gradient(145deg, var(--bg-sky) 0%, var(--bg-sky-mid) 100%);
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  pointer-events: none;
}
#booking::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- BOOKING FORM --- */
.booking-form {
  max-width: 680px;
  margin: 2.5rem auto 0;
  background: var(--bg-white);
  border: var(--border-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-sky);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  transition: var(--transition);
  width: 100%;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim-light);
}
.form-group select option {
  background: #fff;
  color: var(--text-dark);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

/* Add-ons checkboxes */
.addons-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.addon-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  background: var(--bg-sky);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  transition: var(--transition);
  user-select: none;
}
.addon-checkbox:hover {
  border-color: var(--cyan);
  background: var(--bg-sky-mid);
  color: var(--cyan-dark);
}
.addon-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--cyan);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}
.addon-checkbox:has(input:checked) {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(59,130,246,0.06) 100%);
  color: var(--cyan-dark);
  font-weight: 600;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 1.5rem; }
  .addons-grid { flex-direction: column; }
}

/* ============================================
   SPARK TRIXX SHOWCASE SECTION
   ============================================ */

#machine {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

/* Decorative yellow+blue orbs */
#machine::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 65%);
  pointer-events: none;
}
#machine::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Section labels for dark sections */
#machine .section-label { background: rgba(245,158,11,0.15); color: var(--yellow); }
#machine .section-title { color: var(--text); }
#machine .section-subtitle { color: var(--text-muted); }

/* --- Main bento grid: big image + features --- */
.machine-bento {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.machine-img-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-card);
  border: var(--border);
}
.machine-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.machine-img-main:hover img { transform: scale(1.04); }

.machine-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: linear-gradient(135deg, var(--yellow) 0%, #f97316 100%);
  color: #0b0f1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}

/* Feature cards grid */
.machine-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.machine-feat {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.machine-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--cyan) 100%);
}
.machine-feat:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.feat-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 6px rgba(245,158,11,0.3));
}

.machine-feat h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.machine-feat p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 3-angle shots row --- */
.machine-angles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.angle-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: var(--border);
  cursor: pointer;
}
.angle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.angle-card:hover img { transform: scale(1.07); }

.angle-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(11,15,26,0.9) 0%, transparent 100%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Spec pills row */
.machine-specs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.spec-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.spec-pill strong { color: var(--text); font-weight: 700; }
.spec-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .machine-bento { grid-template-columns: 1fr; }
  .machine-img-main { min-height: 280px; }
  .machine-angles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .machine-features { grid-template-columns: 1fr; }
  .machine-angles { grid-template-columns: 1fr; }
  .machine-specs { flex-direction: column; }
}

/* --- PREFERS REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   SEAMLESS GRADIENT — прозрачные секции
   Один фиксированный градиент body, секции
   прозрачны → нет видимых границ
   ============================================ */

/* Все контентные секции прозрачны */
#services, #pricing, #how-it-works, #experience,
#reviews, .why-section, #faq, #location,
#delivery, #booking {
  background: transparent !important;
}

/* Блики-orb на прозрачных секциях */
#services::before   { background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%); }
#services::after    { background: radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%); }
#how-it-works::before { background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%); }
#reviews::before    { background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); }
#delivery::after    { background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); }

/* Заголовки секций — тёмно-синие с двойной тенью (читаются и на синем, и на жёлтом) */
#services .section-title, #pricing .section-title,
#how-it-works .section-title, #experience .section-title,
#reviews .section-title, .why-section .section-title,
#faq .section-title, #location .section-title,
#delivery .section-title, #booking .section-title {
  color: #0c1e3c;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.9),
    0 2px 16px rgba(255,255,255,0.7),
    0 4px 32px rgba(255,255,255,0.4);
}

/* Подзаголовки */
#services .section-subtitle, #pricing .section-subtitle,
#how-it-works .section-subtitle, #experience .section-subtitle,
#reviews .section-subtitle, .why-section .section-subtitle,
#faq .section-subtitle, #location .section-subtitle,
#delivery .section-subtitle, #booking .section-subtitle {
  color: #1e3a5f;
  text-shadow: 0 1px 8px rgba(255,255,255,0.7);
}

/* Лейблы-таблетки — белые с тёмным текстом */
#services .section-label, #pricing .section-label,
#how-it-works .section-label, #experience .section-label,
#reviews .section-label, .why-section .section-label,
#faq .section-label, #location .section-label,
#delivery .section-label, #booking .section-label {
  background: rgba(255,255,255,0.82);
  color: #0369a1;
  border: 1px solid rgba(3,105,161,0.25);
  backdrop-filter: blur(6px);
}

/* Step number */
.step-number { color: #64748b; }
#how-it-works .step-number { color: var(--yellow-bright); }
.steps-grid::before {
  background: linear-gradient(90deg, var(--yellow-bright) 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0.5;
}

/* Location info */
#location .info-item h4 { color: #0c1e3c; text-shadow: 0 1px 8px rgba(255,255,255,0.7); }
#location .info-item p  { color: #1e3a5f; }
#location .info-icon { background: rgba(255,255,255,0.82); box-shadow: none; }

/* Landmarks — стекло (opaque, dark text) */
.landmarks-list li {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.5);
  color: #0f172a;
  backdrop-filter: blur(8px);
}
.landmarks-list li:hover {
  background: rgba(255,255,255,0.97);
  border-color: rgba(3,105,161,0.3);
  color: #0369a1;
  transform: translateX(6px);
}
.landmark-icon { filter: none; }

/* FAQ — стекло (opaque white, dark text for readability on yellow gradient) */
.faq-item {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.faq-item.open {
  background: rgba(255,255,255,0.96);
  border-color: rgba(3,105,161,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.faq-question { color: #0f172a; }
.faq-question:hover, .faq-item.open .faq-question { color: #0369a1; }
.faq-icon { color: #0369a1; }
.faq-answer p { color: #334155; }

/* Why-cards — стекло (opaque white, dark text) */
.why-card {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.why-card h3 { color: #0f172a; }
.why-card p  { color: #334155; }
.why-card:hover { background: rgba(255,255,255,0.97); }

/* Step cards (How It Works + Delivery) — лёгкое стекло, белый текст */
.step-card {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}
.step-card h4 { color: #fff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.step-card p  { color: rgba(255,255,255,0.85) !important; }
.step-card p strong { color: #fff !important; }
.step-card .step-number { color: rgba(255,255,255,0.5) !important; }
.step-card .step-title { color: #fff !important; }
.step-card .step-desc  { color: rgba(255,255,255,0.85) !important; }

/* Testimonial cards — лёгкое стекло */
.testimonial-card {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}
.testimonial-card blockquote { color: rgba(255,255,255,0.9) !important; }
.testimonial-card .testimonial-author { color: #fff !important; }
.testimonial-card .review-text { color: rgba(255,255,255,0.9); }
.testimonial-card .reviewer-name { color: #fff; }
.testimonial-card .reviewer-location { color: rgba(255,255,255,0.75); }

/* Testimonial quote mark */
.testimonial-card::before { color: rgba(253,230,138,0.5); }

/* Featured pricing — тёмно-синяя стеклянная карточка */
.pricing-card.featured {
  background: linear-gradient(145deg, rgba(11,45,89,0.80) 0%, rgba(3,105,161,0.65) 100%);
  border-color: rgba(56,189,248,0.45);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.pricing-card.featured .duration,
.pricing-card.featured .label { color: rgba(255,255,255,0.72); }
.pricing-card.featured p { color: rgba(255,255,255,0.75) !important; }
.pricing-card.featured .amount {
  background: linear-gradient(135deg, var(--yellow-bright) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card.featured .amount small { -webkit-text-fill-color: rgba(255,255,255,0.65); }

/* Pricing cards (non-featured) — лёгкое стекло */
.pricing-card:not(.featured) {
  background: rgba(255, 255, 255, 0.13) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10) !important;
}
.pricing-card:not(.featured) .duration { color: rgba(255,255,255,0.75) !important; letter-spacing: 0.08em; }
.pricing-card:not(.featured) .amount { color: #fff !important; }
.pricing-card:not(.featured) .amount small { color: rgba(255,255,255,0.65) !important; }
.pricing-card:not(.featured) .label { color: rgba(255,255,255,0.72) !important; }
.pricing-card:not(.featured) p { color: rgba(255,255,255,0.82) !important; }
.pricing-card:not(.featured) .btn-outline {
  border-color: rgba(255,255,255,0.55) !important;
  color: #fff !important;
}
.pricing-card:not(.featured) .btn-outline:hover {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.8) !important;
}

/* Booking form */
.booking-form { background: rgba(255,255,255,0.96); }

/* Marquee — синий→жёлтый→синий */
.marquee-track {
  background: linear-gradient(90deg,
    #0c1e3c 0%, #0369a1 22%, #0ea5e9 40%,
    #fbbf24 55%, #f59e0b 70%,
    #0369a1 88%, #0c1e3c 100%
  );
}

/* ============================================
   JET SKI SCROLL RIDER
   ============================================ */
#jetski-rider {
  position: fixed;
  top: 40%;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  will-change: left, opacity;
}

.js-sprite {
  display: block;
  flex-shrink: 0;
  transform: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 2px 10px rgba(56,189,248,0.5));
}
.js-sprite img {
  display: block;
  width: 120px;
  height: auto;
}

.js-wake {
  width: 110px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.js-wake::before,
.js-wake::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  border-radius: 10px;
}
.js-wake::before {
  top: 8px;
  height: 2.5px;
  background: linear-gradient(to left, rgba(56,189,248,0.9), transparent);
}
.js-wake::after {
  top: 15px;
  right: 0; left: auto;
  width: 62%;
  height: 2px;
  background: linear-gradient(to left, rgba(125,211,252,0.6), transparent);
}

/* SVG faces RIGHT by default (spray on left = wake behind).
   Scroll up → move right → no flip (default).
   Scroll down → move left → flip so jet ski faces left. */
#jetski-rider.go-left .js-sprite { transform: scaleX(-1); }

/* --- Yellow "Book Now" nav button --- */
.btn-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0c1e3c;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(251,191,36,0.4);
}
.btn-yellow:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  box-shadow: 0 6px 24px rgba(251,191,36,0.55);
  transform: translateY(-2px);
  color: #0c1e3c;
}

/* Leaflet pickup zone label */
.pickup-zone-label {
  background: rgba(6,182,212,0.9) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
  white-space: nowrap;
}
.pickup-zone-label::before { display: none !important; }

/* --- Equipment section --- */
#equipment { background: transparent; }
#equipment .section-title { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
#equipment .section-title .gradient-text { background: linear-gradient(135deg, #7dd3fc 0%, #bae6fd 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#equipment .section-subtitle { color: rgba(255,255,255,0.8); text-shadow: 0 1px 6px rgba(0,0,0,0.2); }
#equipment .section-label { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.35); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.equip-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.equip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.equip-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0c1e3c;
}
.equip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.equip-card:hover .equip-img img { transform: scale(1.05); }

.equip-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0c1e3c 0%, #0369a1 100%);
}
.equip-placeholder-icon { font-size: 5rem; }

.equip-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.equip-body h3 {
  font-size: 1.2rem;
  color: #0c1e3c;
  margin-bottom: 0.5rem;
}
.equip-body p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.equip-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0c1e3c;
  margin-bottom: 1rem;
}
.equip-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #64748b;
}

/* --- Jet ski qty selector in booking form --- */
.jetski-qty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.qty-option { cursor: pointer; }
.qty-option input[type="radio"] { display: none; }
.qty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.25rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  background: #f8fafc;
  transition: var(--transition);
  text-align: center;
}
.qty-option input:checked + .qty-card {
  border-color: var(--cyan);
  background: #e0f9ff;
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.qty-card:hover { border-color: var(--cyan-dark); background: #f0feff; }
.qty-icon { font-size: 1.8rem; }
.qty-label { font-weight: 700; font-size: 0.95rem; color: #0f172a; }
.qty-note  { font-size: 0.75rem; color: #64748b; }

@media (max-width: 768px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .jetski-qty-grid { grid-template-columns: 1fr 1fr; }
}
