@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Pacifico&display=swap");

:root {
  --blue: #1c4d8f;
  --blue-dark: #102b52;
  --yellow: #f3a928;
  --coral: #e8754f;
  --ink: #172338;
  --muted: #68778d;
  --surface: #ffffff;
  --soft: #f1f5f8;
  --line: #dfe7ef;
  --shadow: 0 16px 32px rgba(16, 43, 82, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overscroll-behavior: none;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

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

.hero-content > .reveal:nth-child(2),
.section > .reveal:nth-child(2),
.section .container > .reveal:nth-child(2) {
  --reveal-delay: 0.08s;
}

.hero-content > .reveal:nth-child(3),
.section > .reveal:nth-child(3),
.section .container > .reveal:nth-child(3) {
  --reveal-delay: 0.16s;
}

.hero-content > .reveal:nth-child(4),
.section > .reveal:nth-child(4),
.section .container > .reveal:nth-child(4) {
  --reveal-delay: 0.24s;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  text-align: center;
}

.section h2 {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.2;
  margin-bottom: 22px;
}

.section h2::after {
  background: var(--coral);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin: 14px auto 0;
  width: 52px;
}

.page-title {
  color: var(--blue-dark);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

.page-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0 auto 16px;
  max-width: 850px;
}

.bg-light {
  background: var(--soft);
}
.bg-dark {
  background: var(--blue-dark);
  color: #fff;
}

/* Header */
header {
  background: var(--blue-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

header::before {
  background: var(--yellow);
  color: var(--blue-dark);
  content: none;
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px max(20px, calc((100% - 1120px) / 2));
  text-align: center;
}

.top-contact-bar {
  align-items: center;
  background: linear-gradient(90deg, var(--yellow), var(--gold-soft));
  color: var(--blue-dark);
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 8px 20px;
}

.top-contact-bar a {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 7px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.top-contact-bar a:hover,
.top-contact-bar a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.top-contact-bar .contact-top-icon {
  font-size: 1rem;
  line-height: 1;
}

.navbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
}

.logo {
  align-items: center;
  display: flex;
  gap: 10px;
  line-height: 0;
  margin-left: 0;
  text-decoration: none;
}

.logo img {
  background: #fff;
  border-radius: 10px;
  display: block;
  height: 62px;
  object-fit: contain;
  padding: 3px;
  width: 62px;
}

.logo span {
  color: #fff;
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.logo span strong {
  color: var(--yellow);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-top: 6px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
}

nav ul li a {
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 14px;
  text-decoration: none;
  transition: 0.2s ease;
}

nav ul li a:hover,
nav ul li a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
}

.menu-toggle,
.menu-close {
  display: none;
}

.menu-overlay {
  display: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* Hero */
.hero {
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(16, 43, 82, 0.96) 0%,
      rgba(16, 43, 82, 0.78) 45%,
      rgba(16, 43, 82, 0.1) 100%
    ),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1800&q=85")
      center/cover;
  display: flex;
  min-height: 650px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  height: 420px;
  position: absolute;
  right: 9%;
  top: 16%;
  width: 420px;
  z-index: -1;
}

.hero::after {
  background: linear-gradient(180deg, transparent, var(--surface));
  bottom: -1px;
  content: "";
  height: 72px;
  left: 0;
  opacity: 1;
  position: absolute;
  width: 100%;
}

.hero-content {
  margin-left: max(20px, calc((100vw - 1120px) / 2));
  max-width: 680px;
  padding: 48px 0 72px;
  text-align: left;
  width: calc(100% - max(40px, (100vw - 1120px) / 2));
}

.hero-content::before {
  color: var(--yellow);
  content: "Your journey starts here";
  display: block;
  font-family: "Pacifico", cursive;
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 18px;
}

.hero-content::after {
  color: rgba(255, 255, 255, 0.7);
  content: "✦  Trusted travel partner  ✦";
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 26px;
  text-transform: uppercase;
}

.hero h2 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 32px;
}

/* Buttons */
.btn-package {
  background: var(#0066cc);
  border: 2px solid var(--coral);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 14px 26px;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn {
  background: var(--coral);
  border: 2px solid var(--coral);
  border-radius: 24px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 14px 26px;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  display: block;
  margin: 26px auto 0;
  text-align: center;
  width: fit-content;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-package:hover,
.btn-package:focus-visible {
  background: #c95e3e;
  border-color: #c95e3e;
  transform: translateY(-2px);
}

.btn:hover,
.btn:focus-visible {
  background: #c95e3e;
  border-color: #c95e3e;
  transform: translateY(-2px);
}

.btn-sm {
  background: var(--blue-dark);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: auto;
  padding: 11px 16px;
}

.rental-whatsapp-button {
  align-self: flex-start;
  background: #087a40;
  margin-top: auto;
  text-decoration: none;
}

.rental-whatsapp-button:hover,
.rental-whatsapp-button:focus-visible {
  background: #056332;
}

/* Content cards */
#about p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 auto;
  max-width: 850px;
}

#about {
  position: relative;
}

#about::before {
  color: rgba(232, 117, 79, 0.16);
  content: "✦";
  font-size: 10rem;
  font-weight: 700;
  left: 4%;
  line-height: 1;
  position: absolute;
  top: 18%;
}

#about p + p {
  margin-top: 18px;
}

.container-title {
  color: var(--blue-dark);
}

.vision-mission-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  text-align: left;
}

.vision-card,
.card,
.card-package {
  background: #fff;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.vision-card {
  border-left: 5px solid var(--coral);
  padding: 30px;
}

.vision-card h3,
.card h3,
.card-package h3 {
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.vision-card p,
.vision-card li,
.card p {
  color: var(--muted);
}

.vision-card ul {
  padding-left: 20px;
}
.vision-card li + li {
  margin-top: 8px;
}

.services-section {
  padding-top: 40px;
}

.service-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: left;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 20px 36px rgba(16, 43, 82, 0.16);
  transform: translateY(-4px);
}

.service-icon {
  color: var(--coral);
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--blue-dark);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

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

.grid-3 {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.card {
  padding: 28px;
  text-align: left;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card h3::first-letter {
  color: var(--coral);
}

.card::before {
  color: var(--coral);
  content: "✦";
  display: block;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.card:nth-child(2)::before {
  content: "◆";
}
.card:nth-child(3)::before {
  content: "▣";
}

.card:hover,
.card-package:hover {
  box-shadow: 0 18px 40px rgba(13, 55, 112, 0.16);
  transform: translateY(-4px);
}

#packages-jakarta,
#packages-yogya {
  padding-top: 76px;
}

.card-package {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.card-image-overlay {
  background: linear-gradient(
    180deg,
    transparent 28%,
    rgba(16, 43, 82, 0.12) 48%,
    rgba(16, 43, 82, 0.7) 100%
  );
  inset: 0;
  position: absolute;
}

.card-badge {
  background: var(--yellow);
  border-radius: 0 28px 28px 0;
  bottom: 20px;
  color: #172338;
  font-size: 1.08rem;
  font-weight: 800;
  left: 0;
  max-width: 88%;
  overflow: hidden;
  padding: 9px 22px 9px 20px;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 178px;
  padding: 24px 28px 22px;
  position: relative;
  text-align: left;
}

.card-package::after {
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  height: 90px;
  opacity: 0.16;
  position: absolute;
  right: -32px;
  top: -32px;
  width: 90px;
}

.card-package h3 {
  font-size: 1.16rem;
}
.card-meta {
  color: #20252d;
  font-size: 0.95rem;
  margin: 0 0 12px;
  text-align: left;
}

#vehicleRentalList .card-meta {
  font-size: 1.05rem;
  font-weight: 600;
}

.price {
  color: #0750ad;
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 8px;
  text-align: left;
}

.package-description {
  color: var(--muted);
  max-height: 92px;
  overflow-y: auto;
  margin: 0 0 22px;
  text-align: left;
}

#vehicleRentalList .package-description {
  font-size: 1.08rem;
}
.card-arrow {
  align-items: center;
  background: #0750ad;
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  color: #fff;
  display: flex;
  font-size: 1.7rem;
  height: 38px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0 0 3px;
  position: absolute;
  right: 26px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  width: 38px;
}

.card-arrow-rental {
  align-items: center;
  background: #0750ad;
  border: 0;
  border-radius: 90%;
  bottom: 24px;
  color: #fff;
  display: flex;
  font-size: 1rem;
  height: 38px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0 0 3px;
  position: absolute;
  right: 26px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  width: 110px;
}

.card-arrow:hover,
.card-arrow:focus-visible {
  background: var(--blue-dark);
  transform: translateX(3px);
}

.card-arrow-rental:hover,
.card-arrow-rental:focus-visible {
  background: var(--blue-dark);
  transform: translateX(3px);
}

.section-lead {
  color: var(--muted);
  margin: -8px auto 28px;
}

#vehicle-rental {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

#vehicle-rental h2 {
  color: var(--blue-dark);
}

#vehicleRentalList .card-package {
  border-top: 4px solid var(--yellow);
}

.rental-form {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 34px auto 0;
  max-width: 900px;
  padding: 28px;
  text-align: left;
}
.rental-form h3 {
  color: var(--blue-dark);
  margin-bottom: 18px;
}
.rental-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.rental-form label {
  color: var(--blue-dark);
  display: block;
  font-weight: 700;
}
.rental-form input,
.rental-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  font: inherit;
  margin-top: 7px;
  padding: 11px 12px;
  width: 100%;
}
.rental-form textarea {
  margin-bottom: 16px;
  resize: vertical;
}
.form-status {
  color: var(--muted);
  margin-top: 12px;
}
.form-status.error {
  color: #b42318;
}
.form-status.success {
  color: #087a40;
}

/* Modal */
.modal {
  align-items: center;
  background: rgba(3, 21, 52, 0.68);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 1000;
}

.modal-content {
  animation: popup 0.25s ease-out;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  max-width: 560px;
  overflow-y: auto;
  padding: 34px;
  position: relative;
  width: 100%;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-btn {
  background: transparent;
  border: 0;
  color: #98a2b3;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 16px;
}

.close-btn:hover {
  color: var(--blue);
}
.modal-price {
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 6px 0 18px;
}
.modal-text {
  max-height: 280px;
  overflow-y: auto;
  color: var(--muted);
  line-height: 1.25;
  margin-top: 10px;
  padding-right: 8px;
  text-align: left;
  white-space: normal;
}
.modal-text p,
.modal-text ul,
.modal-text ol,
.modal-text div {
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.modal-text ul,
.modal-text ol {
  list-style-position: outside;
  padding-left: 24px !important;
}
.modal-text li {
  padding-left: 2px;
}
.modal-text > div {
  display: block;
}
.modal-text > div + div {
  margin-top: 0 !important;
}
.modal-text li {
  line-height: 1.5 !important;
  margin: 0 !important;
}
.modal-text ul + ul,
.modal-text ol + ol,
.modal-text ul + ol,
.modal-text ol + ul {
  margin-top: 0 !important;
}
.modal-text p + p,
.modal-text p + ul,
.modal-text p + ol,
.modal-text ul + p,
.modal-text ol + p {
  margin-top: 8px;
}

.btn-wa {
  background: #087a40;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-weight: 700;
  margin-top: 20px;
  padding: 13px;
  text-align: center;
  text-decoration: none;
}

.btn-wa:hover {
  background: #056332;
}

/* Contact and footer */
#contact {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(55, 111, 167, 0.35),
      transparent 32%
    ),
    var(--blue-dark);
}

#contact .container {
  max-width: 940px;
}

#contact h2 {
  color: #fff;
  margin-bottom: 14px;
}

.contact-kicker {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.title-emoji {
  display: inline-block;
  font-size: 0.8em;
  margin-left: 8px;
  transform: translateY(-2px);
}

#contact .contact-intro {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin: 0 auto 34px;
}

#contact .contact-details a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

#contact .contact-details a:hover,
#contact .contact-details a:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
}

.contact-page {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 170px);
}

.contact-details {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  overflow: hidden;
  text-align: left;
}

.contact-details p {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  min-width: 0;
  padding: 24px;
  position: relative;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-details p:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.contact-details p:last-child {
  border-right: 0;
}

.contact-details strong {
  color: var(--yellow);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-icon {
  align-items: center;
  background: rgba(243, 169, 40, 0.16);
  border: 1px solid rgba(243, 169, 40, 0.35);
  border-radius: 12px;
  display: flex;
  font-size: 1.6rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 8px;
  width: 48px;
}

.contact-details span {
  line-height: 1.55;
  overflow-wrap: anywhere;
}

footer {
  background: #031d4d;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  padding: 24px 0;
  text-align: center;
}

.menu-brand {
  display: none;
}

/* Refined visual layer */
body {
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(243, 169, 40, 0.08),
      transparent 24rem
    ),
    radial-gradient(
      circle at 92% 42%,
      rgba(76, 174, 232, 0.08),
      transparent 28rem
    ),
    var(--surface);
}

header {
  box-shadow: 0 10px 28px rgba(3, 29, 77, 0.16);
}

nav ul li a {
  position: relative;
}

nav ul li a::after {
  background: var(--yellow);
  bottom: 3px;
  content: "";
  height: 2px;
  left: 14px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  width: calc(100% - 28px);
}

nav ul li a:hover::after,
nav ul li a:focus-visible::after {
  transform: scaleX(1);
}

.section:not(.bg-dark) {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7),
    transparent 34%
  );
}

.page-title {
  letter-spacing: -0.045em;
}

.vision-card,
.service-card,
.card,
.card-package {
  border: 1px solid rgba(28, 77, 143, 0.08);
  box-shadow: 0 18px 42px rgba(16, 43, 82, 0.09);
}

.vision-card:hover,
.service-card:hover {
  border-color: rgba(232, 117, 79, 0.3);
}

.card-package {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.card-image {
  background: #dce8f2;
}

.card-image img {
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card-package:hover .card-image img {
  transform: scale(1.045);
}

.card-body {
  background: linear-gradient(180deg, #fff, #fafdff);
}

.card-meta::first-letter {
  color: var(--coral);
}

.contact-page {
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(232, 117, 79, 0.25),
      transparent 18rem
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(76, 174, 232, 0.22),
      transparent 22rem
    ),
    var(--blue-dark);
}

.contact-page .contact-details {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

footer {
  border-top: 3px solid var(--yellow);
}

/* Premium visual treatment */
:root {
  --gold-soft: #ffd477;
  --navy-deep: #071b38;
  --glass-line: rgba(255, 255, 255, 0.18);
}

body {
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(243, 169, 40, 0.12),
      transparent 25rem
    ),
    radial-gradient(
      circle at 100% 34%,
      rgba(28, 77, 143, 0.1),
      transparent 30rem
    ),
    #f8fafc;
}

header {
  background: linear-gradient(
    105deg,
    var(--navy-deep),
    var(--blue-dark) 58%,
    #173f73
  );
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

header::before {
  background: transparent;
}

.navbar {
  min-height: 88px;
}

.logo img {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.logo span {
  font-weight: 600;
}

nav ul li a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

nav ul li a:hover,
nav ul li a:focus-visible {
  color: var(--gold-soft);
}

.hero {
  min-height: 710px;
  background:
    linear-gradient(
      90deg,
      rgba(7, 27, 56, 0.98),
      rgba(16, 43, 82, 0.72) 48%,
      rgba(16, 43, 82, 0.12)
    ),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1800&q=85")
      center/cover;
}

.hero h2 {
  max-width: 760px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-package {
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(232, 117, 79, 0.24);
}

.btn {
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(232, 117, 79, 0.24);
}

.section {
  padding: 108px 0;
}

.section h2::after {
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  height: 5px;
  width: 66px;
}

.vision-card,
.service-card,
.card,
.card-package {
  border-color: rgba(16, 43, 82, 0.1);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(16, 43, 82, 0.1);
}

.vision-card {
  border-left: 0;
  border-top: 4px solid var(--coral);
  padding: 34px;
}

.service-card {
  padding: 30px;
}

.service-icon {
  align-items: center;
  background: rgba(243, 169, 40, 0.14);
  border: 1px solid rgba(243, 169, 40, 0.28);
  border-radius: 14px;
  display: flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.card-image {
  height: 238px;
}

.card-badge {
  background: linear-gradient(135deg, var(--yellow), var(--gold-soft));
  box-shadow: 0 8px 18px rgba(16, 43, 82, 0.18);
}

.card-body {
  min-height: 190px;
  padding: 28px 30px 24px;
}

.price {
  color: var(--blue-dark);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.card-arrow {
  background: linear-gradient(135deg, var(--blue), #3183cf);
  box-shadow: 0 8px 18px rgba(7, 80, 173, 0.24);
}

#contact {
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(243, 169, 40, 0.2),
      transparent 20rem
    ),
    linear-gradient(135deg, var(--navy-deep), var(--blue-dark));
}

.contact-details {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border-color: var(--glass-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

footer {
  background: var(--navy-deep);
  border-top-color: var(--gold-soft);
}

@media (max-width: 760px) {
  .top-contact-bar {
    gap: 12px;
    justify-content: space-between;
    padding: 8px 12px;
  }
  .top-contact-bar a {
    font-size: 0.6rem;
    gap: 4px;
    letter-spacing: 0.01em;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .card-body {
    padding: 22px 20px 20px;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-details p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }
  .contact-details p:last-child {
    border-bottom: 0;
  }
  .navbar {
    display: flex;
    padding: 16px 0;
    text-align: left;
  }
  .logo {
    margin: 0;
    width: fit-content;
  }
  .logo img {
    height: 52px;
    padding: 2px;
    width: 52px;
  }
  .logo span {
    font-size: 1.35rem;
  }
  .menu-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 1.55rem;
    line-height: 1;
    margin: 0 0 0 auto;
    padding: 7px 10px;
  }

  nav#mainNavigation {
    background: var(--blue-dark);
    bottom: 0;
    box-shadow: 12px 0 35px rgba(0, 0, 0, 0.22);
    display: block;
    padding: 92px 20px 24px;
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    width: min(82vw, 320px);
    z-index: 110;
  }

  nav#mainNavigation.is-open {
    transform: translateX(0);
  }
  nav#mainNavigation ul {
    display: block;
  }
  .menu-brand {
    align-items: center;
    color: var(--yellow);
    display: flex;
    gap: 9px;
    left: 20px;
    position: absolute;
    right: 54px;
    top: 22px;
  }

  .menu-brand img {
    height: 34px;
    object-fit: contain;
    width: 44px;
  }

  .menu-brand span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }

  nav#mainNavigation li + li {
    margin-top: 8px;
  }
  nav#mainNavigation li a {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 12px;
    display: flex;
    font-size: 1rem;
    gap: 10px;
    padding: 14px;
  }

  nav#mainNavigation li a::before {
    color: var(--yellow);
    content: ">";
    font-size: 1.35rem;
    line-height: 1;
  }

  nav#mainNavigation li a:hover,
  nav#mainNavigation li a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .menu-close {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 2rem;
    line-height: 1;
    padding: 4px 8px;
    position: absolute;
    left: 238px;
    top: 18px;
  }

  .menu-overlay.is-visible {
    background: rgba(3, 21, 52, 0.58);
    display: block;
    inset: 0;
    position: fixed;
    z-index: 105;
  }

  body.menu-open {
    overflow: hidden;
  }
  .hero {
    min-height: 620px;
  }
  .hero-content {
    margin-left: 20px;
    padding: 48px 0 90px;
    text-align: center;
    width: calc(100% - 40px);
  }
  .hero h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .hero p {
    font-size: 1rem;
  }
  .btn-package {
    width: 100%;
    margin-bottom: 12px;
  }
  .btn {
    width: 100%;
  }
  .section {
    padding: 64px 0;
  }
  .vision-mission-grid,
  .service-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    margin-top: 26px;
  }
  .rental-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-details p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }
  .contact-details p:last-child {
    border-bottom: 0;
  }
  .modal {
    align-items: flex-start;
    padding: 12px;
  }
  .modal-content {
    max-height: calc(100vh - 24px);
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transition-duration: 0.75s !important;
  }
}
