/* ============================================================
   PARLEYS TRANSPORT LLC — style.css
   Glassmorphism · Grain Overlays · Gold Glow · Mobile-First
   v3 — More modern, richer backgrounds, stronger glass
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --black: #ffffff;
  --dark: #f8f9fa;
  --surface: #f1f3f5;
  --surface2: #e9ecef;

  --gold: #eab308;
  --gold-bright: #ca8a04;
  --gold-glow: rgba(234, 179, 8, 0.30);
  --gold-dim: rgba(234, 179, 8, 0.15);
  --gold-border: rgba(234, 179, 8, 0.40);

  --teal-accent: var(--gold);
  /* Kept for compatibility, now gold */

  --white: #111111;
  --off: #333333;
  --muted: rgba(0, 0, 0, 0.65);
  --line: rgba(0, 0, 0, 0.15);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-blur: 24px;

  /* Fonts */
  --fd: 'Syne', sans-serif;
  --fb: 'Inter', sans-serif;

  --sec: clamp(5rem, 9vw, 9rem);
  --nav-h: 135px;
  --radius: 16px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--fb);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── LAYOUT ─────────────────────────────────────────────────── */
.site-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 80px;
  background: var(--black);
  border-right: 1px solid var(--line);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.sidebar-ham {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.sidebar-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.sidebar-socials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-socials a {
  color: var(--muted);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.sidebar-socials a:hover {
  color: var(--gold);
}

.main-content {
  flex: 1;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

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

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}

em {
  font-style: italic;
}

.grain-svg {
  position: absolute;
  width: 0;
  height: 0;
}

/* ── GLASS UTILITY ──────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow,
.section-eye {
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.section-h2 .gold {
  color: var(--gold);
}

.section-h2 em {
  font-style: italic;
}

.body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 1.1rem;
}

.body strong {
  color: var(--off);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.92rem 2.1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--fd);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--gold-glow);
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.92rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--fd);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--off);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(246, 201, 14, 0.05);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── LOADER ─────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ldr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(18px);
}

.ldr-logo-img {
  width: min(450px, 85vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 24px var(--gold-glow)) brightness(1.05);
}

.ldr-logo-text {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.ldr-logo-text span {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
}

.ldr-logo-text small {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

.ldr-bar-track {
  width: min(280px, 64vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ldr-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 14px var(--gold-glow);
}

.ldr-tag {
  font-family: var(--fb);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0;
}

/* ── NAV ────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 80px;
  right: 0;
  z-index: 400;
  height: var(--nav-h);
  transition: all 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

#nav.nav-floating {
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  max-width: 1400px;
  border-radius: 99px;
  border-bottom: none;
  /* Basic glass handled by .glass class already, but we refine scrolled state */
}

#nav.nav-floating.scrolled {
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-dim);
  border: 1px solid rgba(246, 201, 14, 0.3);
}

.nav-wrap {
  width: 100%;
  height: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Logo */
.nav-logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 24px var(--gold-glow)) brightness(1.05);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-logo-img:hover {
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 1)) drop-shadow(0 0 30px var(--gold-glow)) brightness(1.2);
  transform: scale(1.02);
}

.nav-logo-fallback {
  display: none;
  flex-direction: column;
}

.nav-logo-fallback span {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--white);
  line-height: 1;
}

.nav-logo-fallback small {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  justify-self: center;
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.32s var(--ease);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  right: 0;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Phone button in nav */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--gold-border);
  border-radius: 99px;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 22px var(--gold-glow);
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}

.ham span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.38s var(--ease), opacity 0.2s, background 0.2s;
}

.ham:hover span {
  background: var(--gold);
}

.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mob {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(3, 3, 3, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}

.mob:not([hidden]) {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.mob-x {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.6rem;
  color: var(--muted);
  transition: color 0.2s;
  padding: 0.5rem;
}

.mob-x:hover {
  color: var(--gold);
}

.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.mob-lnk {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.01em;
  padding: 0.5rem 2rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.mob-lnk:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.mob-phone {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 4vw, 1.4rem);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.6rem 2rem;
  border-radius: 99px;
}

.mob-phone:hover {
  background: var(--gold-dim);
  color: var(--gold-bright);
}

/* ── HERO ───────────────────────────────────────────────────── */
.s-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) clamp(1.25rem, 5vw, 3rem) 8rem;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Default background and glow adjustments for black/gold */
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(246, 201, 14, 0.05) 0%, var(--black) 80%);
}

/* Giant Watermark Text */
.hero-watermark {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fd);
  font-size: clamp(8rem, 25vw, 24rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* Main Slider Content Wrapper */
.hero-slider {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
  margin-top: 4rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--muted);
  color: var(--muted);
  font-size: 1.4rem;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

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

.car-img {
  width: 100%;
  max-width: 800px;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.8));
}

/* Info Box */
.hero-info {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-family: var(--fb);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--off);
}

.hero-price {
  display: flex;
  flex-direction: column;
}

.lbl-base {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}

.val-price {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: 0.3s;
  margin-top: 0.5rem;
}

.btn-book:hover {
  background: var(--white);
  color: var(--black);
}

/* Bottom Bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 2px solid var(--teal-accent);
  z-index: 10;
}

.bb-links {
  display: flex;
  gap: 2rem;
}

.bb-links a {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.bb-links a:hover {
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.slider-dots .dot {
  width: 6px;
  height: 6px;
  background: var(--line);
  border-radius: 50%;
}

.slider-dots .dot.active {
  background: var(--white);
}

.bb-model {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-accent);
}

/* Web3 Blob Background */
.web3-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  mix-blend-mode: color-dodge;
  will-change: transform;
}

.blob-1 {
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -20%;
  left: -10%;
}

.blob-2 {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--gold-bright) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.s-about {
  padding: 8rem clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.about-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left Text Side */
.about-text-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text-side .section-h2 {
  font-family: var(--fd);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--off);
  margin: 0;
}

.about-intro {
  font-family: var(--fb);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
}

.about-text-side .body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 90%;
  margin: 0;
}

/* Right Image & Address Side */
.about-img-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: flex-end;
}

.about-frame {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  background: var(--black);
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-frame:hover .about-img {
  transform: scale(1.05);
}

.about-address {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--fb);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.aa-title {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pillar i {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar strong {
  display: block;
  font-family: var(--fd);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.pillar p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── BAND ───────────────────────────────────────────────────── */
.s-band {
  position: relative;
  height: 55vh;
  min-height: 320px;
  max-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark); /* Changed from dark gradient to light background theme */
}

/* Add PARLEYS text watermark specifically for the band background */
.s-band::before {
  content: "PARLEYS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fd);
  font-size: clamp(8rem, 25vw, 24rem);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03); /* Light dark vector color for the white background */
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.band-img-wrap {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  opacity: 0.15; /* Reduce image opacity to keep it light/white */
}

.band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dark) 0%, transparent 25%, transparent 75%, var(--dark) 100%);
}

.band-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.band-panel {
  position: relative;
  z-index: 5;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  border: 1px solid rgba(246, 201, 14, 0.18);
  max-width: 580px;
  width: 90%;
  /* Diagonal clip for modern feel */
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.band-quote {
  font-family: var(--fd);
  font-size: clamp(1.1rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 0 40px rgba(246, 201, 14, 0.2);
}

/* ── FLEET / SERVICES ───────────────────────────────────────── */
.s-services {
  padding: 8rem clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
  background: var(--surface2);
}

.svc-hdr {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.svc-hdr .section-h2 {
  margin-bottom: 0;
}

.svc-nav {
  display: flex;
  gap: 1rem;
}

.fleet-slider {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  height: 500px;
}

/* Fleet Cards Overlay */
.fleet-card {
  width: 400px;
  height: 320px;
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--black);
}

.f-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: 0.6s;
}

.f-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.f-info h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.f-info p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
}

/* Card States for Overlapping Effect */
.fleet-card:nth-child(1) {
  transform: translateX(-50%) scale(0.8);
  z-index: 1;
  opacity: 0.5;
  left: 20%;
}

.fleet-card:nth-child(3) {
  transform: translateX(50%) scale(0.8);
  z-index: 1;
  opacity: 0.5;
  right: 20%;
}

.fleet-card.f-active {
  transform: scale(1.15);
  z-index: 10;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%) scale(1.15);
  border-color: var(--gold-border);
}

.fleet-card.f-active .f-img {
  opacity: 1;
}

.f-bottom-links {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: 0.3s;
}

.fleet-card.f-active:hover .f-bottom-links {
  bottom: 20px;
  opacity: 1;
}

.f-bottom-links a {
  font-size: 0.6rem;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.f-bottom-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── CONTACT ────────────────────────────────────────────────── */
.s-contact {
  padding: var(--sec) clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(246, 201, 14, 0.05) 0%, transparent 55%),
    var(--black);
}

.contact-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(246, 201, 14, 0.055) 0%, transparent 55%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-deco {
  position: absolute;
  bottom: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(5rem, 20vw, 14rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  z-index: 0;
}

.contact-wrap {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .body {
  max-width: 400px;
}

.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.ci:hover {
  border-color: rgba(246, 201, 14, 0.32);
  background: var(--gold-dim);
}

.ci-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid rgba(246, 201, 14, 0.22);
}

.ci-lbl {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.ci-val {
  display: block;
  font-family: var(--fd);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

a.ci-val:hover {
  color: var(--gold);
}

/* Form */
.contact-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.form-title {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.75rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fg label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.9rem;
  padding: 0.78rem 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  background: rgba(246, 201, 14, 0.04);
  box-shadow: 0 0 0 3px rgba(246, 201, 14, 0.10);
}

.fg input[type="date"],
.fg input[type="time"] {
  color-scheme: dark;
}

.sel-wrap {
  position: relative;
}

.sel-wrap select {
  padding-right: 2.2rem;
  cursor: pointer;
}

.sel-wrap i {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--muted);
  pointer-events: none;
}

.fg textarea {
  resize: vertical;
  min-height: 88px;
}

.fn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

.fn i {
  color: var(--gold);
}

.f-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 4rem 2rem;
}

.fsico {
  font-size: 3.5rem;
  color: var(--gold);
  display: block;
}

.f-success h3 {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.f-success p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 300px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 4.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.ft-big {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2.8rem, 10vw, 7rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.ft-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

.ft-tag {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
}

.ft-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  width: 100%;
}

.ft-links a {
  transition: color 0.2s;
}

.ft-links a:hover {
  color: var(--gold);
}

.ft-links span {
  color: var(--muted);
}

.ft-copy {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.4);
}

.ft-deco {
  position: absolute;
  bottom: -0.35em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 15rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: 0.05em;
  z-index: 0;
}

/* ── ANIMASYON BAŞLANGICI (GSAP yönetir) ────────────────────── */
.reveal {
  opacity: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════════════════════════════════ */

/* --- 1100px ------------------------------------------------- */
@media (max-width: 1100px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid>*:last-child {
    grid-column: span 2;
    max-width: 520px;
    justify-self: center;
  }

  .contact-wrap {
    gap: 3rem;
  }

  .about-wrap {
    gap: 3rem;
  }
}

/* --- 820px -------------------------------------------------- */
@media (max-width: 820px) {
  :root {
    --nav-h: 110px;
  }

  .nav-logo-img {
    height: 90px;
  }

  /* Layout tweaks for missing sidebar */
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  #nav {
    left: 0;
    padding: 0;
  }

  .nav-right {
    width: 100%;
    justify-content: flex-end;
  }

  /* Show hamburger in nav */
  #nav .sidebar-ham {
    display: flex !important;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  /* Hide the phone CTA button on mobile — phone is already in the mobile menu */
  .nav-cta {
    display: none;
  }

  /* Hero */
  .s-hero {
    padding: 8rem 1.25rem 6rem;
    min-height: 100svh;
  }

  /* Hero Slider Stacking */
  .hero-slider {
    flex-direction: column;
    padding: 0;
    gap: 1.5rem;
    margin-top: 1rem;
    height: auto;
  }

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

  .hero-slider .slider-btn.prev {
    left: -10px;
  }

  .hero-slider .slider-btn.next {
    right: -10px;
  }

  .hero-product {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    order: 1;
  }

  .hero-info {
    width: 100% !important;
    text-align: center;
    order: 2;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-info p {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Bottom Bar — switch from absolute to flow so it no longer overlaps slider content */
  .hero-bottom-bar {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
    padding: 1.25rem 1rem;
  }

  .bb-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  /* About */
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-side {
    order: -1;
  }

  .about-frame {
    aspect-ratio: 3/2;
  }

  .about-float {
    bottom: -1rem;
    right: 1rem;
  }

  /* Services / Fleet */
  .svc-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* On mobile: show only the active center card, visually hide side cards
     Keeping them in the DOM so JS slider logic still works */
  .fleet-slider {
    height: 520px;
    margin-top: 2rem;
    overflow: hidden;
  }

  .fleet-card {
    width: 88% !important;
    max-width: 340px !important;
    height: 480px !important;
    /* Push all side cards well outside the visible slider area */
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-200%) scale(0.6) !important;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .fleet-card.f-active {
    opacity: 1 !important;
    pointer-events: all !important;
    position: absolute;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) scale(1) !important;
  }

  /* Contact */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form {
    position: static;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  /* Band */
  .band-panel {
    padding: 1.75rem 1.5rem;
  }

  /* s-about pages (FAQ, Reviews header) */
  .s-about {
    padding: 6rem 1.25rem !important;
  }

  /* FAQ Accordion */
  details.faq-item {
    padding: 1.25rem 1rem !important;
  }
  details.faq-item summary {
    font-size: 1rem !important;
  }
}


/* --- 540px (small phones) ---------------------------------- */
@media (max-width: 540px) {
  :root {
    --nav-h: 58px;
  }

  /* Nav inner — tighter */
  .nav-wrap {
    padding: 0 1rem;
    gap: 1rem;
  }

  /* Hero text */
  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.2rem) !important;
  }

  /* Form */
  .contact-form {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  /* Footer links — stack */
  .ft-links {
    flex-direction: column;
    gap: 0.4rem;
  }

  .ft-links span {
    display: none;
  }

  .ft-deco {
    font-size: 5rem;
    bottom: 0;
  }
}

/* --- Ultra-wide -------------------------------------------- */
@media (min-width: 1600px) {
  :root {
    --sec: 11rem;
  }
}