/* ============================================
   RENTCAR 88 — Design System
   Premium Black & Gold
   ============================================ */

:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1a;
  --gold-gradient: linear-gradient(135deg, #e8c547 0%, #c9a227 50%, #9a7b1a 100%);
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-elevated: #1e1e1e;
  --white: #f5f5f0;
  --gray: #a0a0a0;
  --gray-dark: #666;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.15);
  --header-h: 72px;
  --bottom-nav-h: 72px;
  --fab-size: 56px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 720px;
}

/* Typography */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  min-height: 48px;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.btn--gold {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.35);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(201, 162, 39, 0.5);
}

.btn--outline:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 40px;
}

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

.btn--xl {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.btn--block {
  width: 100%;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--gold-light);
}

.badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.1);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
}

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

.header__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.header__brand {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.header__brand strong {
  color: var(--gold);
}

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.header__nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--header-h));
  max-height: calc(100svh - var(--header-h));
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow: hidden;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  box-sizing: border-box;
}

.header__nav.is-open {
  transform: translateX(0);
}

.header__links {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}

.header__links a {
  display: block;
  padding: 0.55rem 0.875rem;
  color: var(--gray);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  line-height: 1.35;
}

.header__links a:hover,
.header__links a.active {
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.08);
}

/* Layar sangat pendek: tetap muat tanpa scroll */
@media (max-width: 991px) and (max-height: 420px) {
  .header__nav {
    justify-content: flex-start;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .header__links {
    margin-bottom: 0.5rem;
    gap: 0;
  }

  .header__links a {
    padding: 0.28rem 0.65rem;
    font-size: 0.875rem;
  }

  .header__cta {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: 40px;
  }
}

.header__cta {
  width: 100%;
  flex-shrink: 0;
  min-height: 44px;
}

@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }

  .header__nav {
    position: static;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    transform: none;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    z-index: auto;
    box-sizing: border-box;
  }

  .header__links {
    flex-direction: row;
    margin-bottom: 0;
    gap: 0.125rem;
  }

  .header__links a {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    line-height: inherit;
  }

  .header__cta {
    width: auto;
    min-height: unset;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.85) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 3rem 5rem;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.hero__sub {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--black-soft);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header--left {
  text-align: left;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section__desc {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.section__header--left .section__desc {
  margin: 0;
}

.section__cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

@media (min-width: 576px) {
  .grid--armada {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--armada {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid--armada {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Cards */
.card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-gold);
}

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

.card--feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.card--feature p {
  font-size: 0.875rem;
  color: var(--gray);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 14px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card__icon--lg {
  width: 64px;
  height: 64px;
}

.card--paket h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card--paket p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  min-height: 3.5rem;
}

/* Fleet card */
.card--fleet {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--fleet .card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black-elevated);
}

.card--fleet .card__img-wrap img,
.card--fleet .card__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.25s ease;
}

.card--fleet:hover .card__img-wrap img,
.card--fleet:hover .card__gallery-img {
  transform: scale(1.05);
}

/* Fleet image gallery */
.card__gallery {
  isolation: isolate;
}

.card__gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.72);
  color: var(--gold-light);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.card__gallery-nav:hover {
  background: rgba(201, 162, 39, 0.25);
  border-color: var(--gold);
  color: var(--white);
}

.card__gallery-nav:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.card__gallery-nav--prev {
  left: 0.5rem;
}

.card__gallery-nav--next {
  right: 0.5rem;
}

.card__gallery-counter {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 2;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.card__gallery--single .card__gallery-nav,
.card__gallery--single .card__gallery-counter {
  display: none;
}

.card--fleet .card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card--fleet h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--gray);
  background: var(--black-elevated);
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
}

.card__meta svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.status-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  margin-bottom: 0.75rem;
}

.status-badge--unavailable {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.card--fleet .btn {
  margin-top: auto;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
}

/* Trust list */
.split {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .split {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-list__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.trust-list__item:hover {
  border-color: rgba(201, 162, 39, 0.2);
}

.trust-list__num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}

.trust-list__item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-list__item p {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Testimonial */
.card--testimoni {
  display: flex;
  flex-direction: column;
}

.card--testimoni .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.card--testimoni .stars svg {
  width: 16px;
  height: 16px;
}

.card--testimoni blockquote {
  font-size: 0.9375rem;
  color: var(--gray);
  flex: 1;
  font-style: italic;
  line-height: 1.65;
}

.card--testimoni blockquote p {
  margin: 0;
}

.card--testimoni blockquote footer {
  margin-top: 1rem;
}

.card--testimoni cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--white);
}

.card--testimoni cite span {
  display: block;
  font-weight: 400;
  color: var(--gray-dark);
  font-size: 0.8125rem;
  margin-top: 0.125rem;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion__item {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
}

.accordion__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform var(--transition);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__panel-inner {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

/* CTA Final */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(10, 10, 10, 1) 60%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  text-align: center;
}

.cta-final__inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__inner p {
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* Kontak */
.kontak-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .kontak-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}

.kontak-info {
  background: var(--black-card);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.kontak-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kontak-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kontak-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kontak-item:first-child {
  padding-top: 0;
}

.kontak-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 12px;
  color: var(--gold);
}

.kontak-item__icon--wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.kontak-item h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.kontak-item__hint {
  font-size: 0.8125rem;
  color: var(--gray-dark);
  margin-bottom: 0.375rem;
}

.kontak-item__link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.kontak-item__link:hover {
  color: var(--gold);
}

.kontak-item__link--external {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0;
}

.kontak-item__address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.kontak-item__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.kontak-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.125rem;
}

.kontak-item__actions .kontak-item__link {
  margin-bottom: 0;
}

.kontak-item__actions .kontak-item__btn {
  width: 100%;
  max-width: 220px;
  margin-top: 0;
}

.kontak-grid .map-wrap {
  min-height: 280px;
  height: 100%;
}

@media (min-width: 992px) {
  .kontak-grid .map-wrap {
    min-height: 100%;
    aspect-ratio: auto;
  }
}

/* Map */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: var(--black-soft);
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

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

.footer__brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}

.footer__name {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.footer__name strong {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer__address strong {
  color: var(--white);
}

.footer__bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-dark);
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 1rem);
  z-index: 900;
  width: var(--fab-size);
  height: var(--fab-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.fab-wa:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .fab-wa {
    bottom: 2rem;
  }
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(16, 16, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 0.25rem;
  color: var(--gray);
  font-size: 0.6875rem;
  font-weight: 500;
  transition: color var(--transition);
  min-height: 48px;
}

.bottom-nav__item svg {
  transition: transform var(--transition);
}

.bottom-nav__item:hover,
.bottom-nav__item.active {
  color: var(--gold-light);
}

.bottom-nav__item.active svg {
  transform: scale(1.1);
}

.bottom-nav__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.bottom-nav__item--wa {
  flex: 1.2;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  margin: 0.375rem 0.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.bottom-nav__item--wa span {
  font-weight: 700;
}

.bottom-nav__item--wa:hover {
  color: #fff;
  transform: scale(1.02);
}

/* Reveal animations */
.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.5s; }
.reveal-stagger.is-visible > *:nth-child(11) { transition-delay: 0.55s; }
.reveal-stagger.is-visible > *:nth-child(12) { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-stagger > *,
  .card,
  .btn,
  .fab-wa {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
