:root {
  --yellow: #f5c518;
  --yellow-dark: #d4a90f;
  --black: #111111;
  --black-soft: #1a1a1a;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-200: #ececec;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-light: #f0dfa0;
  --whatsapp: #25d366;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.35);
}

.btn--primary:hover {
  background: var(--yellow-dark);
}

.btn--call {
  background: var(--black);
  color: var(--white);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #e8c547);
  color: var(--black);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.logo__icon {
  font-size: 1.6rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-size: 0.95rem;
}

.logo__text small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(34, 34, 34, 0.78)),
    url("images/taksi-1.png") center/cover no-repeat;
  color: var(--white);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.18), transparent 40%);
  pointer-events: none;
}

.hero__content {
  position: relative;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
}

.hero h1 span {
  color: var(--yellow);
}

.hero__lead {
  max-width: 620px;
  margin: 1.2rem 0 2rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 520px;
}

.hero__stats li {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--yellow);
}

.hero__stats span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: #f8f8f8;
}

.section--dark {
  background: var(--black-soft);
  color: var(--white);
}

.section__head {
  margin-bottom: 2rem;
}

.section__head--light h2,
.section__head--light .section__desc {
  color: var(--white);
}

.section__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.section__desc {
  margin: 0.8rem 0 0;
  color: var(--gray-500);
  max-width: 560px;
}

.tabs {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.35rem;
  margin-bottom: 2rem;
  background: var(--gray-200);
  border-radius: 999px;
}

.tabs__btn {
  border: 0;
  background: transparent;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-700);
}

.tabs__btn.is-active {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.tab-panel[hidden] {
  display: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.card h3 {
  margin: 0 0 0.6rem;
}

.card p {
  margin: 0;
  color: var(--gray-500);
}

.vip-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #1d1d1d, #2d2412);
  color: var(--white);
  box-shadow: var(--shadow);
}

.vip-banner__content h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.vip-banner__content p {
  color: rgba(255, 255, 255, 0.78);
}

.vip-soon-note {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.vip-banner--soon .vip-badge {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.vip-banner--soon .vip-banner__visual p {
  font-weight: 600;
  line-height: 1.35;
}

.vip-banner__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(201, 162, 39, 0.25), rgba(0, 0, 0, 0.2)),
    url("images/taksi-4.png") center/cover no-repeat;
  text-align: center;
}

.vip-badge {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  cursor: pointer;
  background: #ddd;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-500);
  border: 1px dashed #ccc;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.about__facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.about__facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gray-200);
}

.about__facts span {
  color: var(--gray-500);
}

.about__card {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff9e8, #fff);
  border: 1px solid #f1e4b8;
}

.about__card h3 {
  margin-top: 0;
}

.about__card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gray-700);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__item {
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.contact__item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.footer {
  padding: 1.4rem 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.fab-group {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.fab--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.fab--call {
  background: var(--yellow);
  color: var(--black);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(1000px, 100%);
  max-height: 85vh;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.5rem 1.4rem;
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header__call {
    display: none;
  }

  .vip-banner,
  .about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .tabs {
    width: 100%;
    display: flex;
  }

  .tabs__btn {
    flex: 1;
    padding-inline: 0.6rem;
    font-size: 0.9rem;
  }
}
