:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #5b6472;
  --sea: #0ea5e9;
  --sea-dark: #0284c7;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --line: #e4e9f2;
  --radius: 18px;
  --shadow: 0 15px 40px rgba(2, 8, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1526481280695-3c4690d8f39f?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.72) 10%, rgba(3, 105, 161, 0.5) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(6px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.06rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.phone-badge {
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: rgba(14, 165, 233, 0.22);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

.call-strip {
  margin-top: 1rem;
  align-self: flex-start;
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.25), rgba(2, 132, 199, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  padding: 0.6rem 0.9rem;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.25);
}

.call-strip span {
  font-size: 0.76rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  opacity: 0.95;
}

.call-strip strong {
  font-size: 1.2rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 4px 0;
}

.hero-content {
  margin: auto 0;
  padding: 4rem 0 4rem;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 1.7rem + 2.7vw, 4rem);
  line-height: 1.1;
}

.subtitle {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 0.95rem + 0.8vw, 1.35rem);
  max-width: 640px;
}

.hero-cta,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  padding: 0.78rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 100%);
  color: #111827;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #f59f0a 0%, var(--gold-dark) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.hero .btn-primary {
  animation: pulse 2.4s ease-in-out infinite;
}

.btn-full {
  width: 100%;
}

.pricing-table-wrapper {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.pricing-table th {
  background: #f2f8fc;
  font-size: 0.95rem;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:last-child,
.pricing-table th:last-child {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-note {
  color: var(--muted);
  margin-top: 0.9rem;
}

.pricing-km {
  margin: 0.6rem 0 0;
  color: #0f172a;
  background: linear-gradient(90deg, #fff7e6 0%, #fff3d4 100%);
  border: 1px solid #fde7b3;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  display: inline-block;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(14, 24, 39, 0.13);
}

.benefit-card h3 {
  margin: 0;
  font-size: 1rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--sea-dark);
  background: #ebf8ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.reservation-intro p {
  color: var(--muted);
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: block;
  margin: 0.65rem 0 0.3rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #ccd5e1;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.35);
  border-color: var(--sea);
}

.form-feedback {
  margin: 0.8rem 0 0;
  font-weight: 600;
  color: var(--sea-dark);
  min-height: 1.3rem;
}

.contact-box {
  text-align: center;
}

.contact-number {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(2rem, 1.6rem + 2.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--sea-dark);
  text-shadow: 0 10px 26px rgba(14, 165, 233, 0.2);
}

.floating-call {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 60;
  background: linear-gradient(135deg, var(--sea) 0%, var(--sea-dark) 100%);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 18px 36px rgba(2, 132, 199, 0.35);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.3);
  }

  50% {
    box-shadow: 0 14px 38px rgba(245, 158, 11, 0.45);
  }
}

.site-footer {
  background: #0b1220;
  color: #f8fafc;
  padding: 2rem 0;
}

.footer-content {
  display: grid;
  gap: 0.6rem;
  text-align: center;
}

.footer-content p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.9);
}

@media (max-width: 960px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-panel {
    position: absolute;
    top: 4.3rem;
    right: 1rem;
    left: 1rem;
    background: rgba(6, 17, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 0.9rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-block;
  }

  .call-strip {
    margin-top: 0.8rem;
  }
}

@media (min-width: 961px) {
  .reservation-layout {
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.2fr);
    align-items: start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

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

  .phone-badge {
    text-align: center;
  }

  .floating-call {
    left: 0.8rem;
    right: 0.8rem;
    text-align: center;
  }
}
