* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --blue: #1f4ea8;
  --dark-blue: #081f4f;
  --navy: #06173a;
  --orange: #f28c1b;
  --orange-2: #ef3b16;
  --text: #112244;
  --white: #ffffff;
  --light: #f8f9fc;
  --soft: #eef4ff;
  --gray: #5f6b7a;
  --line: #e8ebf2;
  --shadow: 0 18px 45px rgba(17, 34, 68, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--text);
  line-height: 1.45;
}

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

img {
  max-width: 100%;
}

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

/* TOP BAR */
.top-bar {
  background: var(--blue);
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

/* NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid #6c3cff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 800;
  font-size: 16px;
  color: #1d2340;
}

.menu a:hover {
  color: var(--blue);
}

.book-btn {
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  border-radius: 22px;
  font-weight: 900;
  font-size: 17px;
  display: inline-block;
  box-shadow: 0 10px 22px rgba(31, 78, 168, 0.22);
}

.book-btn:hover {
  background: var(--dark-blue);
}

.mobile-menu-btn {
  display: none;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.74) 42%, rgba(255,255,255,.38) 100%),
    url('images/hero-bg.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% -10%;
  height: 260px;
  background: radial-gradient(circle, rgba(242,140,27,.20), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  width: 100%;
  padding: 70px 0;
}

.eyebrow {
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 13px;
  margin-bottom: 10px;
}

.eyebrow.center {
  text-align: center;
}

.eyebrow.light {
  color: #ffd89a;
}

.hero-text h3 {
  font-size: 28px;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 12px;
  font-weight: 900;
}

.hero-text h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  color: var(--blue);
  font-weight: 1000;
  margin-bottom: 14px;
  letter-spacing: -2px;
}

.hero-text h1 span {
  display: block;
  color: var(--orange-2);
  text-shadow: 0 3px 0 rgba(255,255,255,.75);
}

.hero-text p {
  font-size: 19px;
  color: #31415d;
  max-width: 760px;
  margin-top: 18px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 18px;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.13);
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #222861;
  color: #fff;
}

.btn-secondary {
  background: var(--orange);
  color: #fff;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-badges div {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,78,168,.16);
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.07);
}

.hero-badges strong,
.hero-badges span {
  display: block;
}

.hero-badges strong {
  color: var(--blue);
  font-size: 18px;
}

.hero-badges span {
  color: var(--gray);
  font-size: 13px;
  margin-top: 3px;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 590px;
  border-radius: 34px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.30));
  border: 8px solid rgba(255,255,255,.55);
}

/* GENERAL SECTIONS */
.section {
  padding: 84px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: clamp(34px, 4vw, 48px);
  color: var(--blue);
  font-weight: 1000;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.section-title p {
  font-size: 18px;
  color: var(--gray);
  max-width: 780px;
  margin: auto;
}

/* UNITS */
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  background: #eee;
}

.card-body {
  padding: 22px;
}

.unit-tag {
  display: inline-block;
  background: var(--soft);
  color: var(--blue);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.card-body h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 900;
}

.price {
  color: var(--orange-2);
  font-size: 23px;
  font-weight: 1000;
  margin-bottom: 10px;
}

.card-body p {
  color: var(--gray);
  margin-bottom: 17px;
}

.small-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
}

/* RATES */
.rates {
  background: linear-gradient(180deg, var(--light), #fff);
}

.rates-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: start;
}

.rates-table {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid #edf0f6;
  font-size: 18px;
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-row strong {
  color: var(--blue);
}

.rate-row span {
  color: var(--orange-2);
  font-weight: 1000;
  font-size: 20px;
}

.poster-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
  padding: 14px;
  position: sticky;
  top: 118px;
}

.poster-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.poster-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: var(--orange);
  color: white;
  padding: 14px;
  border-radius: 14px;
  font-weight: 900;
}

/* INCLUDED */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.included-item {
  background: white;
  border: 1px solid #edf0f6;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
}

.included-item span {
  font-size: 38px;
  display: block;
  margin-bottom: 12px;
}

.included-item h3 {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 8px;
}

.included-item p {
  color: var(--gray);
}

/* INFO */
.info-section {
  background:
    linear-gradient(135deg, rgba(31,78,168,.95), rgba(8,31,79,.98)),
    url('images/hero-bg.webp') center/cover no-repeat;
  color: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.info-card h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.location-list {
  display: grid;
  gap: 18px;
  margin: 20px 0;
}

.location-list p,
.steps-list li {
  color: rgba(255,255,255,.88);
  margin-top: 4px;
}

.steps-list {
  padding-left: 22px;
  display: grid;
  gap: 15px;
}

.map-btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-item {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  border: 1px solid #edf0f6;
}

.faq-item h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--blue);
}

.faq-item p {
  color: var(--gray);
  font-size: 16px;
}

/* CONTACT */
.contact {
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  color: white;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 18px;
  font-weight: 1000;
}

.contact-info > p {
  font-size: 18px;
  margin-bottom: 14px;
  opacity: 0.95;
}

.contact-list {
  margin-top: 20px;
}

.contact-list p {
  margin-bottom: 12px;
  color: rgba(255,255,255,.92);
}

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

.contact-link {
  display: inline-block;
  background: var(--orange);
  color: white;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 900;
}

.contact-link.secondary {
  background: white;
  color: var(--blue);
}

.maya-link {
  background: linear-gradient(135deg, #00b14f, #008c44);
  color: #ffffff;
}

.maya-link:hover {
  filter: brightness(1.08);
}

.payment-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  line-height: 1.55;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 24px;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.contact-form h3 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 30px;
}

.form-group {
  margin-bottom: 16px;
}

.two-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d7ddea;
  font-size: 16px;
  outline: none;
  background: white;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.form-note {
  margin-top: 12px;
  color: var(--gray);
  font-size: 13px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #101a34;
  color: white;
  text-align: center;
  padding: 24px 0;
  font-size: 15px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-wrap img {
  width: 82px;
}

.floating-book {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--orange);
  color: white;
  font-weight: 1000;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(239,59,22,.32);
  z-index: 900;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .menu {
    gap: 16px;
    font-size: 14px;
  }

  .book-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 920px) {
  .mobile-menu-btn {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    top: 88px;
    left: 5%;
    right: 5%;
    background: white;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,.15);
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .menu.active {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .contact-wrap,
  .faq-grid,
  .units-grid,
  .included-grid,
  .rates-layout,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .poster-card {
    position: static;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 520px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .top-bar-wrap {
    justify-content: center;
    gap: 10px;
    font-size: 12px;
  }

  .logo img {
    width: 92px;
  }

  .book-btn {
    padding: 11px 15px;
    font-size: 14px;
    border-radius: 16px;
  }

  .hero-content {
    padding: 45px 0;
  }

  .hero-text h3 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 62px 0;
  }

  .rate-row {
    flex-direction: column;
    gap: 6px;
  }

  .two-inputs {
    grid-template-columns: 1fr;
  }

  .floating-book {
    left: 18px;
    text-align: center;
  }
}


/* Facebook Messenger Floating Button */
.fb-message {
  background: linear-gradient(135deg, #1f4ea8, #f28c1b);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.fb-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 78, 168, 0.35);
}


/* UPDATED RATES + DURATION DISCOUNTS */
.rates-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.rates-highlight div {
  background: linear-gradient(135deg, #ffffff, #fff7ea);
  border: 1px solid rgba(242, 140, 27, 0.24);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(17, 34, 68, 0.10);
}

.rates-highlight span,
.rates-highlight small {
  display: block;
}

.rates-highlight span {
  color: var(--gray);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.rates-highlight strong {
  display: block;
  color: var(--orange-2);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 1000;
  line-height: 1.1;
  margin: 8px 0;
}

.rates-highlight small {
  color: var(--blue);
  font-weight: 800;
}

.rates-layout-top {
  margin-bottom: 34px;
}

.daily-rates-card {
  align-self: stretch;
}

.rate-table-heading {
  padding: 24px 24px 18px;
  border-bottom: 1px solid #edf0f6;
  background: linear-gradient(135deg, rgba(31, 78, 168, 0.08), rgba(242, 140, 27, 0.08));
}

.rate-table-heading h3 {
  color: var(--blue);
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 6px;
  font-weight: 1000;
}

.rate-table-heading p {
  color: var(--gray);
  font-size: 15px;
}

.centered-heading {
  text-align: center;
  border-bottom: none;
  background: transparent;
  padding: 0 0 22px;
}

.full-rates-card,
.discount-guide-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 28px;
  margin-top: 34px;
  overflow: hidden;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid #e5eaf4;
  background: #ffffff;
}

.duration-rates-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.duration-rates-table th {
  background: var(--blue);
  color: #ffffff;
  text-align: left;
  padding: 18px 16px;
  font-size: 15px;
  white-space: nowrap;
}

.duration-rates-table td {
  padding: 17px 16px;
  border-bottom: 1px solid #edf0f6;
  color: var(--text);
  font-size: 16px;
  white-space: nowrap;
}

.duration-rates-table tbody tr:last-child td {
  border-bottom: none;
}

.duration-rates-table tbody tr:hover {
  background: #fff8ea;
}

.duration-rates-table td:first-child {
  color: var(--blue);
  font-weight: 900;
}

.duration-rates-table td:not(:first-child) {
  font-weight: 900;
}

.discount-guide-card {
  background:
    linear-gradient(135deg, rgba(31, 78, 168, 0.96), rgba(8, 31, 79, 0.98)),
    url('images/hero-bg.webp') center/cover no-repeat;
  color: #ffffff;
}

.discount-guide-card .rate-table-heading h3,
.discount-guide-card .rate-table-heading p {
  color: #ffffff;
}

.discount-guide-card .eyebrow.center {
  color: #ffd89a;
}

.discount-guide-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.discount-guide-item {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px 14px;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discount-guide-item strong,
.discount-guide-item span,
.discount-guide-item small {
  display: block;
}

.discount-guide-item strong {
  font-size: 17px;
  margin-bottom: 8px;
}

.discount-guide-item span {
  color: #ffd89a;
  font-weight: 1000;
  margin-bottom: 7px;
}

.discount-guide-item small {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.35;
}

.featured-discount {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 28px rgba(239, 59, 22, 0.28);
}

.featured-discount span {
  color: #ffffff;
}

.pricing-note-box {
  margin-top: 34px;
  background: linear-gradient(135deg, #fff7ea, #ffffff);
  border: 1px solid rgba(242, 140, 27, 0.28);
  border-left: 8px solid var(--orange);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  box-shadow: 0 12px 32px rgba(17, 34, 68, 0.10);
}

.pricing-note-box h3 {
  color: var(--blue);
  font-size: 26px;
  margin-bottom: 6px;
}

.pricing-note-box p {
  color: var(--gray);
}

.pricing-note-btn {
  display: inline-block;
  background: var(--blue);
  color: #ffffff;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 1000;
  white-space: nowrap;
}

.pricing-note-btn:hover {
  background: var(--dark-blue);
}

@media (max-width: 1050px) {
  .discount-guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rates-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .full-rates-card,
  .discount-guide-card {
    padding: 20px;
    border-radius: 22px;
  }

  .discount-guide-grid {
    grid-template-columns: 1fr;
  }

  .pricing-note-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-note-btn {
    width: 100%;
    text-align: center;
  }
}
