:root {
  --primary: #12a9cf;
  --primary-dark: #0b7e9c;
  --ink: #102a37;
  --muted: #667983;
  --line: #dce7eb;
  --soft: #effbfc;
  --warm: #fff4e9;
  --black: #07090a;
  --white: #fff;
  --shadow: 0 18px 55px rgba(15, 42, 55, .13);
  --radius: 22px;
}

* {
  box-sizing: border-box
}

h3, p{
    margin: 0;
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55
}

img {
  max-width: 100%;
  display: block
}

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

button,
input,
select {
  font: inherit
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: auto
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #d58a3d;
  font-weight: 800
}

.section {
  padding: 40px 0
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.02;
  margin: 8px 0 14px
}

.section-copy {
  color: var(--muted);
  max-width: 670px
}

.topbar {
  height: 36px;
  background: #072631;
  color: #cfe8ee;
  font-size: 12px;
  display: flex;
  align-items: center
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edf2f4
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.logo img {
  width: 300px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 169, 207, .28)
}

.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink)
}

.btn-dark {
  background: #0b1013;
  color: #fff
}

.menu-btn {
  display: none;
  border: 0;
  background: #edf8fa;
  border-radius: 12px;
  width: 44px;
  height: 44px
}

.hero {
  position: relative;
  overflow: hidden;
  background: #dff6fb
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) brightness(.97)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225, 248, 252, .98) 0%, rgba(225, 248, 252, .84) 38%, rgba(225, 248, 252, .14) 72%, rgba(225, 248, 252, .06) 100%)
}

.hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 58px 0 110px
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(22px, 4vw, 56px);
  line-height: .96;
  margin: 12px 0 18px;
  max-width: 690px
}

.hero h1 span {
  color: #d58c42;
  font-style: italic
}

.hero p {
  max-width: 560px;
  color: #49616d
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px
}

.hero-note {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700
}

.hero-note span {
  padding: 9px 13px;
  background: rgba(255, 255, 255, .82);
  border-radius: 999px
}

.booking-wrap {
  margin-top: -58px;
  position: relative;
  z-index: 10
}

.booking-card {
  background: #fff;
  border: 1px solid #dfe8eb;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 18px
}

.trip-tabs {
  display: flex;
  gap: 18px;
  padding: 0 4px 13px;
  font-size: 13px;
  font-weight: 800
}

.trip-tabs button {
  border: 0;
  background: none;
  padding: 5px 0;
  color: #71848c;
  cursor: pointer
}

.trip-tabs button.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary)
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1fr .8fr auto;
  gap: 10px
}

.field {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 13px;
  background: #fff
}

.field label {
  display: block;
  font-size: 11px;
  color: #7b8a91;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em
}

.field input,
.field select {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  padding-top: 3px
}

.search-btn {
  min-width: 132px
}

.dest-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 15px;
  margin-top: 34px
}

.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 235px;
  box-shadow: 0 12px 32px rgba(15, 42, 55, .12)
}

.dest-card.big {
  grid-row: span 2;
  min-height: 490px
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: .4s
}

.dest-card:hover img {
  transform: scale(1.05)
}

.dest-content {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82))
}

.dest-content b {
  font-size: 22px
}

.dest-content .btn {
  padding: 8px 13px;
  font-size: 12px;
  margin-top: 10px
}

.card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 42, 55, .07)
}

.info-card h3 {
  font-family: Georgia, serif;
  margin: 12px 0 8px
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e8f9fc;
  font-size: 22px
}

.trust-band {
  background: #050708;
  color: #fff;
  padding: 62px 0;
  position: relative
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center
}

.trust-grid img {
  border-radius: 18px;
  max-height: 300px;
  width: 100%;
  object-fit: cover
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px
}

.stat strong {
  display: block;
  font-size: 24px
}

.stat span {
  font-size: 12px;
  color: #9fb0b8
}

.why-grid,
.steps-grid,
.testimonial-grid,
.faq-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center
}

.media-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 25px 0
}

.feature {
  display: flex;
  gap: 14px
}

.feature i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e6f8fb;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
  flex: 0 0 auto
}

.deals {
  background: #fbfdfd
}

.deal-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  margin-top: 34px
}

.deal-tabs {
  display: grid;
  align-content: start;
  gap: 8px
}

.deal-tabs button {
  border: 0;
  background: none;
  text-align: left;
  padding: 10px 0;
  color: #6a7b82;
  cursor: pointer
}

.deal-tabs button.active {
  color: #c37c37;
  font-weight: 800
}

.deal-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.deal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden
}

.deal-card img {
  height: 145px;
  width: 100%;
  object-fit: cover
}

.deal-card .content {
  padding: 18px
}

.deal-card h4 {
  font-family: Georgia, serif;
  font-size: 20px;
  margin: 8px 0
}

.deal-card p {
  font-size: 13px;
  color: var(--muted)
}

.steps-list {
  display: grid;
  gap: 18px
}

.step {
  display: flex;
  gap: 15px
}

.step b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff0e2;
  color: #cc7b32;
  flex: 0 0 auto
}

.app-band {
  background: #07090a;
  color: #fff;
  padding: 70px 0
}

.app-band img {
  max-height: 420px;
  margin: auto
}

.testimonial-card {
  background: #0c2d3a;
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-top: 16px
}

.faq-section {
  background: #fbfdfd
}

.faq-list {
  display: grid;
  gap: 10px
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  border: 0;
  background: none;
  padding: 20px 0;
  text-align: left;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  cursor: pointer
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: .3s
}

.faq-item.open .faq-a {
  max-height: 160px;
  padding-bottom: 18px
}

.cta-section {
  padding: 84px 0;
  background: linear-gradient(135deg, #e7f9fc, #fff4e8)
}

.cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: var(--shadow)
}

.cta-box img {
  border-radius: 18px
}

.footer {
  background: #060809;
  color: #d8e2e6;
  padding: 64px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px
}

.footer h4 {
  color: #fff
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #aebbc1;
  font-size: 14px
}

.footer-bottom {
  border-top: 1px solid #1d2a30;
  margin-top: 45px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #839198
}

.page-hero {
  background: #e9f8fa;
  padding: 90px 0 70px;
  text-align: center
}

.page-hero h1 {
  font-family: Georgia, serif;
  font-size: 32px;
  margin: 0
}

.legal {
  padding: 70px 0
}

.legal article {
  max-width: 900px;
  margin: auto
}

.legal h2 {
  margin-top: 34px
}

.legal p {
  color: #546a73
}

@media(max-width:960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column
  }

  .nav-links.open {
    display: flex
  }

  .menu-btn {
    display: block
  }

  .topbar {
    display: none
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 670px;
    align-items: start
  }

  .hero-overlay {
    background: linear-gradient(rgba(225, 248, 252, .94), rgba(225, 248, 252, .55))
  }

  .booking-grid {
    grid-template-columns: 1fr 1fr
  }

  .search-btn {
    grid-column: 1/-1
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr
  }

  .dest-card.big {
    grid-row: auto;
    grid-column: 1/-1;
    min-height: 320px
  }

  .card-row {
    grid-template-columns: 1fr 1fr
  }

  .trust-grid,
  .why-grid,
  .steps-grid,
  .testimonial-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr
  }

  .deal-layout {
    grid-template-columns: 1fr
  }

  .deal-tabs {
    grid-template-columns: repeat(3, 1fr)
  }

  .deal-cards {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .btn-primary{
    display: none;
  }
  

  .nav-actions .btn-outline {
    display: none
  }

  .hero h1 {
    font-size: 32px
  }

  .hero-inner {
    min-height: 320px;
    padding-top: 45px
  }

  .booking-grid {
    grid-template-columns: 1fr
  }

  .dest-grid,
  .card-row,
  .deal-cards {
    grid-template-columns: 1fr
  }

  .dest-card.big {
    grid-column: auto
  }

  .stats {
    grid-template-columns: 1fr 1fr
  }

  .deal-tabs {
    overflow: auto;
    grid-template-columns: repeat(6, 120px)
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    display: block
  }
}

/* Floating Call Button */

.call-now-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    background:#000;
    color:#fff;

    padding:14px 22px;

    border-radius:60px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    transition:.3s;
}

.call-now-btn:hover{
    background:#222;
    transform:translateY(-4px);
}

.call-now-btn svg{
    flex-shrink:0;
}

@media(max-width:768px){

.call-now-btn{

    right:15px;
    bottom:15px;

    padding:12px 18px;

    font-size:14px;
}

.call-now-btn span{
    display:none;
}

.call-now-btn{
    width:58px;
    height:58px;
    justify-content:center;
    border-radius:50%;
    padding:0;
}

}