* {
  box-sizing: border-box;
}

:root {
  --bg-1: #081327;
  --bg-2: #0d2144;
  --panel: rgba(15, 29, 60, 0.84);
  --panel-strong: rgba(10, 21, 45, 0.96);
  --text: #f7f9fd;
  --muted: #d0daec;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff9b21;
  --accent-dark: #dd7a00;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 155, 33, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(5, 13, 28, 0.98), rgba(10, 22, 47, 0.98)),
    #081327;
  line-height: 1.55;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 19, 39, 0.82), rgba(8, 19, 39, 0.9)),
    url("assets/logo-theme.png");
  background-repeat: no-repeat;
  background-size: 760px auto;
  background-position: center 90px;
  opacity: 0.14;
  pointer-events: none;
  z-index: -1;
}

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

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.panel {
  background: linear-gradient(180deg, rgba(20, 37, 74, 0.94), rgba(10, 21, 45, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(5, 13, 28, 0.74);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: white;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-link {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.whatsapp-link {
  background: linear-gradient(135deg, #25d366, #1fa855);
  border-color: transparent;
  color: white;
}

.hero {
  padding: 68px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.info-card,
.service-card,
.gallery-card,
.booking-copy,
.booking-form,
.contact-card {
  border-radius: var(--radius);
}

.hero-copy,
.hero-visual,
.info-card,
.booking-copy,
.booking-form {
  padding: 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.02;
}

.hero-text,
.section-text,
.muted,
.service-card p,
.contact-label,
.tick-list li,
.step-item p {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 24px;
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  border: 0;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.btn-full {
  width: 100%;
}

.call-card {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.call-label {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.call-number {
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-van {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mini-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.mini-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 4px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 34px 0 66px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.section-heading h2,
.info-card h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 24px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.tick-list li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.steps-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.step-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-weight: 800;
}

.step-item strong {
  display: block;
  margin-bottom: 4px;
}

.step-item p {
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
}

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

.gallery-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

input[type="file"] {
  padding: 12px;
}

textarea {
  resize: vertical;
}

#service {
  color: #111111;
  background: #ffffff;
}

#service option {
  color: #111111;
  background: #ffffff;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-preview img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 13, 28, 0.78);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
}

.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 1.65rem;
  font-weight: 800;
}

.chat-card {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(360px, calc(100vw - 24px));
  border-radius: 22px;
  overflow: hidden;
  display: none;
  background: linear-gradient(180deg, rgba(20, 37, 74, 0.98), rgba(10, 21, 45, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.chat-card.open {
  display: block;
}

.chat-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.chat-header span {
  color: var(--muted);
  font-size: 0.92rem;
}

.chat-body {
  padding: 14px;
  max-height: 340px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
}

.bubble {
  padding: 12px 14px;
  border-radius: 16px;
  max-width: 86%;
}

.bot {
  background: rgba(255, 255, 255, 0.08);
}

.user {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  justify-self: end;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  padding: 12px 14px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .booking-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .topbar-inner,
  .hero-actions,
  .footer-inner,
  .top-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links,
  .hero-grid,
  .split-grid,
  .gallery-grid,
  .booking-grid,
  .services-grid,
  .form-split,
  .hero-bottom-grid,
  .photo-preview {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-copy,
  .hero-visual,
  .info-card,
  .booking-copy,
  .booking-form {
    padding: 22px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-van,
  .gallery-card img {
    height: 320px;
  }

  .call-number {
    font-size: 2.2rem;
  }
}
