:root {
  --navy: #071d3d;
  --navy-2: #0d2a53;
  --navy-3: #123a68;
  --yellow: #f9b900;
  --yellow-soft: #ffd55c;
  --green: #20c25a;
  --green-dark: #118a40;
  --text: #111827;
  --muted: #5d6474;
  --light: #f6f7fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 29, 61, 0.18);
  --shadow-soft: 0 14px 35px rgba(16, 48, 86, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: #eef3f7;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  background: rgba(7, 29, 61, 0.96);
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -8px 24px rgba(7, 29, 61, 0.18);
  z-index: 2000;
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}
.mobile-action-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.16);
}
.mobile-action-item:last-child { border-right: 0; }
.mobile-action-item i {
  font-size: 16px;
  line-height: 1;
}
.mobile-action-call,
.mobile-action-whatsapp {
  background: rgba(9, 27, 53, 0.96);
}
.mobile-action-book {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffcf49 100%);
  color: var(--navy);
}

@media (max-width: 860px) {
  .mobile-action-bar {
    display: grid;
  }
  main {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }
  .site-footer {
    margin-bottom: calc(58px + env(safe-area-inset-bottom));
  }
}

.topbar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  min-height: 38px;
  padding: 10px 4.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.topbar a { opacity: 0.9; }
.topbar a:hover { opacity: 1; }

.page-shell {
  max-width: 100%;
  margin: 0;
  background: #f3f6fa;
}

.header {
  height: 82px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(9,27,53,0.06);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 1.8%;
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand .a7, .footer-brand .a7 {
  font-size: 54px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -8px;
  line-height: 1;
  color: var(--navy-3);
}
.a7 span { color: var(--yellow); }
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand b, .footer-brand b {
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.brand small, .footer-brand small {
  font-size: 8px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header nav a {
  position: relative;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 31px 0 26px;
  color: var(--navy);
  border-bottom: 3px solid transparent;
}
.header nav a.active, .header nav a:hover {
  color: #d69d00;
  border-bottom-color: var(--yellow);
}

.book-btn, .yellow-btn, .green-btn, .yellow-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.book-btn:hover, .yellow-btn:hover, .green-btn:hover, .yellow-small:hover {
  transform: translateY(-2px);
}
.admin-lock-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(7, 29, 61, 0.06);
  color: var(--navy);
  border: 1px solid rgba(7, 29, 61, 0.08);
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.admin-lock-link:hover {
  background: rgba(249,185,0,0.14);
  transform: translateY(-1px);
}
.book-btn {
  min-width: 150px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-soft) 100%);
  color: var(--navy);
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 11px;
  box-shadow: 0 12px 25px rgba(249,185,0,0.28);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(4,19,38,0.88) 0%, rgba(8,27,50,0.72) 45%, rgba(15,30,56,0.26) 100%),
                    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-content, .hero-car { position: relative; z-index: 2; }
.hero-content {
  max-width: 560px;
  padding: 110px 4.5% 90px;
}
.script {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 26px;
  color: var(--yellow-soft);
  margin-bottom: 14px;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.hero h1 strong { color: #f7f3ec; }
.hero p {
  margin: 22px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.hero p b { color: var(--yellow-soft); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.yellow-btn, .green-btn {
  min-height: 64px;
  min-width: 210px;
  padding: 14px 20px;
  border-radius: 14px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.2;
  box-shadow: var(--shadow-soft);
}
.yellow-btn { background: linear-gradient(135deg, var(--yellow) 0%, #ffcf49 100%); }
.green-btn {
  background: linear-gradient(135deg, #1ecb64 0%, #3ddc7f 100%);
  color: var(--white);
}
.hero-btn-sub { display: block; font-size: 18px; font-weight: 800; }
.hero-car {
  position: absolute;
  right: 4.5%;
  bottom: 0;
  width: 40%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.badge {
  position: absolute;
  right: 10%;
  bottom: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: linear-gradient(180deg, rgba(8,29,50,0.82), rgba(15,39,70,0.74));
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  box-shadow: 0 26px 50px rgba(8,17,32,0.32);
  text-align: center;
  color: #fff;
}
.badge b { font-size: 58px; line-height: 1; color: var(--yellow-soft); }
.badge small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.badge em {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-style: normal;
  color: rgba(255,255,255,0.78);
}

.section-wrap {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.rates-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  padding: 78px 0 0;
}
.service-intro, .rates-box, .guide, .about-copy, .booking-card, .site-footer, .dash-section {
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
}
.service-intro {
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid rgba(14,39,62,0.06);
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
}
.service-intro h2, .section-title h2, .about-copy h2, .booking-guide h2, .contact h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.service-intro p, .about-copy p, .booking-guide p, .contact p, .footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 26px;
}
.benefits > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, #fbfcff 0%, #f0f4fa 100%);
  border: 1px solid rgba(14,39,62,0.04);
  border-radius: 18px;
}
.benefits i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: rgba(249,185,0,0.12);
  color: var(--navy-3);
  font-size: 22px;
}
.benefits b { font-size: 13px; line-height: 1.4; color: var(--navy); }

.rates-box {
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid rgba(14,39,62,0.06);
}
.rates-box h2 {
  margin: 0 0 24px;
  font-size: clamp(26px,3vw,38px);
  line-height: 1.1;
  color: var(--navy);
}
.rates-box h2 span { color: var(--muted); font-size: 0.5em; }
.rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.rate-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(17,24,39,0.06);
  box-shadow: 0 12px 24px rgba(12,27,53,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(12,27,53,0.14);
}
.rate-card h3 {
  margin: 18px 18px 10px;
  font-size: 19px;
  color: var(--navy);
}
.rate-card img {
  width: 100%;
  height: 136px;
  object-fit: contain;
  padding: 0 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}
.rate-price-block {
  margin: 12px 18px 18px;
}
.rate-card strong {
  display: block;
  font-size: 28px;
  color: var(--navy-3);
  line-height: 1.2;
}
.rate-card small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.65fr;
  gap: 18px;
  max-width: 100%;
  margin: 86px auto 0;
  padding: 0;
  align-items: stretch;
}
.about-copy {
  background: linear-gradient(180deg, rgba(7,29,61,0.98), rgba(11,38,72,0.96));
  border-radius: 26px;
  padding: 28px 26px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-copy .eyebrow {
  color: var(--yellow-soft);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.about-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(30px, 2.5vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #fff;
}
.about-copy p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.6;
  max-width: 450px;
}
.yellow-small {
  margin-top: 26px;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffcf49 100%);
  color: var(--navy);
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.about-cards div {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 270px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  background: #edf3f9;
}
.about-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #edf3f9;
}
.about-cards b {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: block;
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(7,29,61,0.78);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 800;
}

.booking-guide {
  max-width: 100%;
  margin: 86px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 0;
  align-items: stretch;
}
.guide {
  background: linear-gradient(180deg, #f6f7f8 0%, #eef2f6 100%);
  border-radius: 26px 0 0 26px;
  padding: 28px 28px 20px;
  border: 1px solid rgba(14,39,62,0.06);
  border-right: none;
  box-shadow: 0 18px 34px rgba(12,29,53,0.05);
  margin-right: -1px;
  width: 100%;
}
.guide h2 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--navy);
}
.guide > p {
  margin: 14px 0 0;
  font-size: 16px;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px 12px;
  margin-top: 26px;
}
.steps > div {
  position: relative;
  padding: 12px 12px 14px;
  background: rgba(255,255,255,0.35);
  border-radius: 18px;
  border: 1px solid rgba(14,39,62,0.04);
  text-align: center;
  min-height: 210px;
}
.steps > div span {
  position: absolute;
  top: -12px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(249,185,0,0.35);
  font-size: 20px;
}
.steps i {
  display: block;
  font-size: 30px;
  margin: 24px 0 14px;
  color: var(--navy-3);
}
.steps b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.55;
  text-transform: uppercase;
}
.steps small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  font-size: 12px;
}
.guide-image {
  position: relative;
  min-height: 420px;
  border-radius: 0 26px 26px 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,27,50,0.12), rgba(8,27,50,0.18));
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  box-shadow: 0 18px 34px rgba(12,29,53,0.08);
  border: 1px solid rgba(14,39,62,0.06);
  border-left: none;
  margin-left: -1px;
  width: 100%;
}
.guide-image img {
  position: absolute;
  inset: -10% 0 -14% 0;
  width: 105%;
  height: 124%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
  transform: scale(1.14);
}
.guide-image > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: right;
  padding: 26px 24px 18px;
  width: 100%;
  background: linear-gradient(180deg, rgba(7,27,46,0.08), rgba(7,27,46,0.54));
  justify-content: flex-end;
}
.guide-image span {
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.9;
}
.guide-image strong {
  font-size: clamp(24px, 2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.services {
  max-width: 100%;
  margin: 86px auto 0;
  padding: 0;
}
.section-title { text-align: center; margin-bottom: 28px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.service-grid > div {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(14,39,62,0.06);
  border-radius: 22px;
  padding: 28px 20px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(12,27,53,0.12);
}
.service-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249,185,0,0.16), rgba(18,58,104,0.08));
  color: var(--navy-3);
  font-size: 24px;
}
.service-grid h3 { margin: 16px 0 10px; font-size: 20px; color: var(--navy); }
.service-grid p { margin: 0; color: var(--muted); }

.gallery {
  max-width: 100%;
  margin: 86px auto 0;
  padding: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  filter: saturate(1.1);
}

.booking {
  max-width: 100%;
  margin: 86px auto 0;
  padding: 0;
}
.booking-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  padding: 28px 28px 22px;
  border-radius: 32px;
  border: 1px solid rgba(14,39,62,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,248,252,0.96));
  box-shadow: 0 22px 40px rgba(9,27,53,0.06);
}
.booking-card > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-card .eyebrow {
  color: var(--yellow);
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}
.booking-card h2 {
  margin: 18px 0 18px;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--navy);
}
.booking-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.booking-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}
.booking-contact a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(14,39,62,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(236,242,249,0.96));
  box-shadow: 0 14px 28px rgba(9,27,53,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.booking-contact a::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  opacity: 0;
  animation: contactPulse 1.8s infinite ease-in-out;
}
.booking-contact a:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 32px rgba(9,27,53,0.12);
}
.booking-contact .contact-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
  font-size: 22px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.12);
}
.booking-call .contact-icon { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%); }
.booking-whatsapp .contact-icon { background: linear-gradient(135deg, #25d366 0%, #1ebc5f 100%); }
@keyframes contactPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  align-content: start;
}
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid rgba(16,48,86,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  padding: 16px 16px;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color: rgba(249,185,0,0.8);
  box-shadow: 0 0 0 4px rgba(249,185,0,0.12);
  transform: translateY(-1px);
}
.booking-form textarea {
  grid-column: 1 / -1;
  min-height: 110px;
  resize: vertical;
}
.booking-form button {
  grid-column: 1 / -1;
  min-height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffcf49 100%);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 28px rgba(249,185,0,0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px rgba(249,185,0,0.28);
}

.contact {
  max-width: 100%;
  margin: 86px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  border-radius: 30px 30px 0 0;
  align-items: center;
}
.contact > div:first-child {
  background: linear-gradient(180deg, rgba(7,29,61,0.98), rgba(11,38,72,0.96));
  border-radius: 26px;
  padding: 30px 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.contact .eyebrow {
  color: var(--yellow-soft);
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}
.contact h2 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 2.7vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #fff;
}
.contact p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.6;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  background: rgba(255,255,255,0.35);
  border-radius: 26px;
  padding: 18px;
}
.contact-info a, .contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border: 1px solid rgba(14,39,62,0.06);
  border-radius: 16px;
  padding: 18px 16px;
  min-height: 90px;
}
.contact-info i { color: var(--yellow); font-size: 18px; }

.site-footer {
  max-width: 100%;
  margin: 0 auto;
  padding: 34px 2.2% 20px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  background: linear-gradient(180deg, rgba(9,27,53,0.98), rgba(13,42,83,0.96));
  border-radius: 30px 30px 0 0;
  color: rgba(255,255,255,0.95);
  box-shadow: 0 -18px 40px rgba(9,27,53,0.08);
}
.site-footer .footer-brand, .site-footer h4, .site-footer a, .site-footer span, .site-footer p, .site-footer small, .site-footer b { color: #fff; }
.site-footer .footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.site-footer .footer-brand .a7 {
  font-size: 54px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -8px;
  line-height: 1;
  color: var(--navy-3);
}
.site-footer .footer-brand .a7 span { color: var(--yellow); }
.site-footer .footer-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.site-footer .footer-brand b { font-size: 18px; }
.site-footer .footer-brand small {
  opacity: 0.8;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}
.site-footer .footer-brand p {
  flex: 1 1 100%;
  margin-top: 8px;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
}
.site-footer h4 {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--yellow-soft);
}
.site-footer a, .site-footer span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
  opacity: 0.96;
  word-break: break-word;
  overflow-wrap: anywhere;
  min-width: 0;
}
.site-footer i {
  color: var(--yellow-soft);
  flex-shrink: 0;
  margin-top: 3px;
}
.social { display: flex; gap: 12px; margin-top: 12px; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(249,185,0,0.14);
  color: var(--white);
  font-size: 16px;
}
.social a:hover { background: rgba(249,185,0,0.22); transform: translateY(-2px); }

.copyright {
  max-width: 100%;
  margin: 0 auto;
  padding: 18px 2.2% 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  background: #0b1f3f;
}
.site-credit {
  background: #0b1f3f;
  color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-credit a {
  color: var(--yellow-soft);
  font-weight: 700;
}
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 18px 32px rgba(32,194,90,0.4);
  font-size: 28px;
}

.a7-notice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.a7-notice-modal {
  width: min(100%, 560px);
  background: rgba(255,255,255,0.98);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(7,29,61,0.22);
  padding: 26px 24px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(14,39,62,0.06);
}
.a7-notice-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
}
.a7-notice-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.a7-notice-content h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--navy);
  letter-spacing: -0.04em;
}
.a7-notice-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.a7-notice-button {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 150px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d67ff 0%, #0e4ec4 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 14px 22px;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(13,103,255,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.a7-notice-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(13,103,255,0.3);
}

@media (max-width: 500px) {
  .a7-notice-modal {
    padding: 20px 18px 16px;
    gap: 12px;
  }
  .a7-notice-badge {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .a7-notice-content p {
    font-size: 14px;
  }
  .a7-notice-button {
    min-width: 120px;
    font-size: 16px;
    padding: 12px 18px;
  }
}

@media (max-width: 1100px) {
  .rates-wrap, .about, .booking-guide, .contact { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .site-footer { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .mobile-action-bar { display: grid; }
  main { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .site-footer { margin-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .copyright, .site-credit { padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .site-credit { margin-bottom: calc(58px + env(safe-area-inset-bottom)); }
}
@media (max-width: 760px) {
  .topbar { padding-top: 12px; padding-bottom: 12px; flex-direction: column; gap: 8px; }
  .topbar > div { justify-content: center; text-align: center; }
  .header { height: 70px; padding: 0 5%; gap: 14px; }
  .brand .a7 { font-size: 42px; }
  .brand b { font-size: 14px; }
  .brand small { font-size: 6px; }
  .menu-toggle { display: block; background: none; border: 0; font-size: 24px; color: var(--navy); }
  .header nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    gap: 0;
    padding: 12px 5% 20px;
    box-shadow: var(--shadow);
  }
  .header nav.open { display: flex; }
  .header nav a { padding: 12px 0; width: 100%; }
  .book-btn { display: none; }
  .hero { min-height: 520px; }
  .hero-content { padding-top: 70px; max-width: none; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .yellow-btn, .green-btn { width: 100%; min-width: 0; }
  .hero-car { width: 82%; height: 44%; right: -8%; opacity: 0.8; }
  .badge { width: 150px; height: 150px; right: 6%; bottom: 18%; }
  .about, .booking-guide, .services, .gallery, .booking, .contact { margin-top: 56px; }
  .benefits, .rate-grid, .steps, .service-grid, .booking-form, .gallery-grid, .site-footer { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .contact-info { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .about-cards { grid-template-columns: 1fr; }
  .booking-card { grid-template-columns: 1fr; }
  .service-grid > div, .rate-card, .steps > div, .contact-info a, .contact-info span { padding: 16px 14px; }
  .steps > div { min-height: 180px; }
  .gallery-grid img { height: 180px; }
  .guide, .guide-image, .booking-card, .contact > div:first-child, .site-footer { border-radius: 22px; }
  .guide, .booking-card, .contact > div:first-child { padding: 22px 18px; }
  .site-footer { padding: 24px 18px 16px; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 34px; }
  .script { font-size: 20px; }
  .benefits, .rate-grid, .service-grid, .steps, .gallery-grid, .site-footer, .contact-info, .about-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .booking-form { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .booking-card, .service-intro, .rates-box, .guide, .about-copy { padding: 18px 14px; }
  .contact-info a, .contact-info span { padding: 14px 12px; }
  .site-footer { padding: 20px 14px 16px; }
  .float-wa { width: 54px; height: 54px; right: 16px; bottom: 18px; }
}

/* admin styles */
.dashboard { background: #eef3f7; }
.dash-head {
  display:flex; justify-content:space-between; align-items:center; padding:24px 4.5%; background:#fff; box-shadow:0 10px 25px rgba(7,29,61,0.06);
}
.dash-head b { color:var(--navy); }
.dash-head span { color:var(--muted); }
.dash-head a { color:var(--navy); font-weight:700; }
.dash-main { max-width:1280px; margin:0 auto; padding:30px 4.5%; }
.dash-section {
  background:#fff; border-radius:24px; padding:28px; margin-bottom:24px; border:1px solid rgba(14,39,62,0.06);
}
.dash-title { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:18px; }
.price-admin-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.price-admin { background:#f8fafc; padding:20px; border-radius:16px; border:1px solid rgba(14,39,62,0.05); }
.price-admin h3 { margin-top:0; margin-bottom:12px; }
.price-admin input { width:100%; padding:12px 14px; border:1px solid rgba(14,39,62,0.12); border-radius:10px; }
.table-wrap { overflow:auto; }
.table-wrap table { width:100%; border-collapse:collapse; }
.table-wrap th, .table-wrap td { padding:10px 12px; border-bottom:1px solid rgba(14,39,62,0.08); text-align:left; }
.admin-login { display:grid; place-items:center; min-height:100vh; background:linear-gradient(135deg,#071d3d,#0d2a53); }
.login-card {
  width:min(420px,90vw); background:#fff; border-radius:24px; padding:30px 28px; box-shadow:0 20px 50px rgba(0,0,0,0.22);
}
.admin-logo { font-size:42px; font-weight:900; font-style:italic; letter-spacing:-5px; color:var(--navy); }
.admin-logo span { color:var(--yellow); }
.login-card h1 { margin:12px 0 6px; }
.login-card p { margin:0 0 18px; color:var(--muted); }
.login-card input { width:100%; margin-bottom:14px; padding:12px 14px; border-radius:12px; border:1px solid rgba(14,39,62,0.12); }
.login-card .error, .success {
  margin-bottom:16px; padding:10px 12px; border-radius:10px; font-size:14px; font-weight:600;
}
.status-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #1ebc5f 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(37,211,102,0.28);
  font-size: 16px;
}
.status-wa-btn:hover { transform: translateY(-1px); }

.login-card .error { background:#fde7e7; color:#b42318; }
.success { background:#eafaf1; color:#1f7a45; }