:root {
  --bg: #0b0d10;
  --surface: #101318;
  --muted: #9aa3af;
  --text: #ecedf1;
  --brand: #ff3d71;
  --brand-2: #6aa5ff;
  --ring: rgba(106, 165, 255, 0.35);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(11, 13, 16, 0.8),
    rgba(11, 13, 16, 0.2)
  );
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.brand-text span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.socials {
  display: flex;
  gap: 12px;
  margin-left: 12px;
}
.icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* darker translucent background so white icons are visible */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.icon:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.hamburger {
  display: none;
  margin-left: 8px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 2px;
  transition: 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 4%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0d10;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.mobile-menu.show {
  display: flex;
}

/* mobile-specific socials: hidden by default, shown in mobile menu at small breakpoints */
.mobile-socials { display: none; }


.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.8);
}

.hero-content {
  position: relative;
  text-align: center;
  padding-block: 96px;
}
.headline {
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 16px;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.subheadline {
  font-size: clamp(16px, 2.4vw, 22px);
  color: #e7e9ee;
  opacity: 0.95;
  margin-bottom: 28px;
}

.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.btn {
  --_pad: 14px 22px;
  padding: var(--_pad);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.22s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.btn-primary {
  background: black;
  color: white;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.btn-ghost {
  background: black;

  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Booking button variant: pure red (#ff0000) with white text */
.btn-booking {
  background: #ff0000;
  color: #fff;
  border-color: transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-booking:hover {
  transform: translateY(-1px);
  background: #e60000; /* slightly darker red on hover */
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.16);
}
.btn-booking:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.14);
}

.btn-sm {
  --_pad: 10px 14px;
  font-size: 14px;
}


.section {
  padding: 72px 0;
}
.section.alt {
  background: linear-gradient(180deg, #0b0d10, #0d1016);
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 8px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
}

.grid.cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #0e1218;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.card img {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}
.card-body {
  padding: 16px;
}
.card-body h3 {
  margin: 0 0 6px;
}
.card-body p {
  color: var(--muted);
  margin: 0 0 8px;
}
.price {
  margin: 8px 0 12px;
}

.form {
  width: min(720px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: #0e1218;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 14px;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  background: #0b0f15;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px var(--ring);
}
.field textarea {
  grid-column: span 2;
}
.form .btn {
  grid-column: span 2;
  margin-top: 8px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0d10;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: var(--muted);
}
.to-top {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
}

.hide-sm {
  display: none;
}

@media (max-width: 960px) {
  .nav-links,
  .socials {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .grid.cars {
    grid-template-columns: 1fr 1fr;
  }
  .hide-sm {
    display: inline;
  }
}

@media (max-width: 768px) {
  .socials { display: none; }
  .mobile-socials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    align-items: center;
    padding-left: 6px;
  }

  /* touch friendly sizing for mobile menu icons */
  .mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: inherit;
  }
}

@media (max-width: 640px) {
  .grid.cars {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .form textarea,
  .form .btn {
    grid-column: 1;
  }
}

/* About Section */
.section-head.left {
  text-align: left;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.about-text p {
  color: var(--muted);
  max-width: 62ch;
}
.about-points {
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.about-points li {
  position: relative;
  padding-left: 28px;
  color: #dfe3ea;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 3px rgba(106, 165, 255, 0.2);
}
.about-media img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.map-wrapper {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.icon-tiktok svg,
.icon-ig svg {
  transition: transform 0.2s ease, color 0.2s ease, fill 0.2s ease;
  color: #fff; /* render SVG icons white */
  fill: currentColor;
}

.icon-tiktok:hover svg,
.icon-ig:hover svg {
  transform: scale(1.1);
  color: #ff0050; /* accent on hover */
}
