* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1c2b39;
  background: #f4f7fb;
}

a {
  text-decoration: none;
}

.container {
  width: 88%;
  max-width: 1180px;
  margin: auto;
}

.top-strip {
  background: #075ca8;
  color: #fff;
  font-size: 14px;
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.strip-inner p {
  margin: 0;
  font-weight: 700;
}

.strip-inner a {
  color: #fff;
  font-weight: 700;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #075ca8;
}

.logo span {
  color: #ffc400;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.menu a {
  color: #075ca8;
  font-weight: 600;
  font-size: 15px;
}

.header-call,
.footer-call {
  background: #ffc400;
  color: #101010;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(0,67,125,.86), rgba(0,67,125,.67)),
    url("https://images.unsplash.com/photo-1529074963764-98f45c47344b?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.hero-wrap {
  position: relative;
  padding: 80px 0 55px;
}

.booking-card {
  background: linear-gradient(135deg, #0870c9, #005190);
  color: #fff;
  border-radius: 8px;
  padding: 34px;
  width: 82%;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.trip-tabs {
  display: flex;
  gap: 38px;
  margin-bottom: 24px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.field.large {
  grid-column: span 2;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 15px;
}

.search-btn {
  align-self: end;
  height: 48px;
  border: 0;
  border-radius: 6px;
  background: #ffb61f;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.booking-links {
  text-align: right;
  margin-top: 25px;
}

.booking-links a {
  color: #fff;
  text-decoration: underline;
  margin-left: 22px;
  font-size: 13px;
}

.alert-box {
  position: absolute;
  right: 0;
  top: 95px;
  background: #fff;
  padding: 18px 24px;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  color: #075ca8;
  width: 215px;
}

.alert-box p {
  color: #333;
  margin: 8px 0;
}

.alert-box a {
  color: #fff;
  background: #075ca8;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 5px;
}

.promo-banner {
  background: #fff;
  padding: 28px 0;
}

.promo-card {
  background:
    linear-gradient(90deg, rgba(0,82,145,.96), rgba(0,82,145,.75)),
    url("https://images.unsplash.com/photo-1494515843206-f3117d3f51b7?auto=format&fit=crop&w=1400&q=80") center/cover;
  min-height: 140px;
  border-radius: 8px;
  color: #fff;
  padding: 30px 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-card span {
  background: #ff8b00;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 13px;
}

.promo-card h2 {
  margin: 12px 0 8px;
  font-size: 30px;
}

.promo-card p {
  margin: 0;
}

.promo-card a {
  background: #ffc400;
  color: #111;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
}

.deals {
  background: #fff;
  padding: 50px 0;
}

.section-title span {
  display: block;
  width: 230px;
  height: 4px;
  background: #ffc400;
  margin-bottom: 22px;
}

.section-title h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.deal-card {
  background: #f1f3f7;
  border-radius: 7px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.deal-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.deal-content {
  padding: 26px;
}

.deal-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.deal-content p {
  color: #4c5965;
  line-height: 1.5;
}

.deal-content a {
  display: inline-block;
  background: #ffc400;
  color: #111;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.how-section {
  background: #f0f2f5;
  padding: 45px 0;
}

.how-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 55px;
  align-items: center;
}

.how-text h2 {
  margin-top: 0;
}

.how-text a {
  display: inline-block;
  border: 2px solid #ffc400;
  color: #075ca8;
  padding: 12px 36px;
  border-radius: 8px;
  font-weight: 800;
}

.help-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  gap: 24px;
}

.help-icons div {
  font-size: 42px;
  color: #075ca8;
}

.help-icons p {
  font-size: 14px;
  color: #222;
  font-weight: 700;
}

.faq {
  background: #fff;
  padding: 55px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-grid div {
  background: #f4f7fb;
  border-left: 5px solid #ffc400;
  padding: 22px;
  border-radius: 7px;
}

.footer {
  background: #f5f6f8;
  padding: 45px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.footer h4 {
  color: #075ca8;
  margin-top: 0;
}

.footer a {
  display: block;
  color: #465666;
  margin: 11px 0;
  font-size: 14px;
}

.footer-call {
  display: inline-block !important;
  color: #111 !important;
}

.copyright {
  text-align: center;
  color: #075ca8;
  margin-top: 40px;
  font-size: 13px;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.popup-box {
  width: 92%;
  max-width: 430px;
  background: #fff;
  padding: 34px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.popup-box h2 {
  color: #075ca8;
}

.popup-box a {
  background: #ffc400;
  color: #111;
  padding: 14px 18px;
  display: inline-block;
  border-radius: 8px;
  font-weight: 800;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.legal-page {
  background: #fff;
  padding: 60px 0;
}

.legal-box {
  max-width: 920px;
  margin: auto;
  background: #f7f9fc;
  padding: 35px;
  border-radius: 12px;
  line-height: 1.7;
}

.legal-box h1 {
  color: #075ca8;
}

.legal-box h2 {
  color: #075ca8;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: #075ca8;
    color: #fff;
    border: 0;
    padding: 9px 12px;
    border-radius: 5px;
  }

  .menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.active {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .booking-card {
    width: 100%;
  }

  .form-grid,
  .deal-grid,
  .faq-grid,
  .footer-grid,
  .how-wrap {
    grid-template-columns: 1fr;
  }

  .field.large {
    grid-column: span 1;
  }

  .help-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .alert-box {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .promo-card {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .strip-inner {
    flex-direction: column;
    gap: 6px;
  }
}


/* Floating Call Button Fix */
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999999;
  width: auto;
  min-width: 145px;
  height: 58px;
  padding: 0 22px;
  background: #ffc400;
  color: #111;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.floating-call svg,
.floating-call-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: #111;
}

.floating-call span {
  display: block;
  white-space: nowrap;
}

.floating-call:hover {
  background: #ffb700;
  color: #111;
}

/* Mobile: keep clean bottom button */
@media (max-width: 600px) {
  .floating-call {
    right: 14px;
    bottom: 14px;
    min-width: 132px;
    height: 54px;
    padding: 0 18px;
    font-size: 16px;
  }

  .floating-call svg,
  .floating-call-icon {
    width: 23px;
    height: 23px;
  }
}



.hero-centered {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0,67,125,.82), rgba(0,67,125,.74)),
    url("https://images.unsplash.com/photo-1529074963764-98f45c47344b?auto=format&fit=crop&w=1600&q=80") center/cover;
  display: flex;
  align-items: center;
}

.hero-center-content {
  text-align: center;
  color: #fff;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  background: #ffc400;
  color: #111;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-center-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-center-content p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 760px;
}

.hero-call-btn {
  display: inline-block;
  background: #ffc400;
  color: #111;
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.hero-call-btn:hover {
  background: #ffb700;
}

@media (max-width: 768px) {
  .hero-centered {
    min-height: 430px;
  }

  .hero-center-content h1 {
    font-size: 34px;
  }

  .hero-center-content p {
    font-size: 16px;
  }
}