:root {
  --blue: #5b84ea;
  --blue-dark: #173b74;
  --bg: #edf3f8;
  --text: #163562;
  --muted: #5f7392;
  --line: #d7e2ef;

  /* mobile dark mode helpers */
  --mobile-bg: #0f1726;
  --mobile-card: #1b2433;
  --mobile-text: #eef4ff;
  --mobile-muted: #c7cfdd;
  --mobile-line: rgba(255,255,255,.10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 55%, #eaf1f8 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(23,59,116,.08);
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 15px;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4def0;
  background: rgba(255,255,255,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.social svg {
  width: 15px;
  height: 15px;
}

.social:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(26,56,104,.12);
}

.social-facebook { color: #4d73d9; }
.social-facebook svg,
.social-instagram svg { fill: currentColor; }

.social-instagram {
  color: white;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
}

.logo-bar {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
}

.logo-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.site-logo {
  width: clamp(145px, 12vw, 205px);
  height: auto;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.slides,
.slide,
.slide picture,
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  opacity: 0;
  transition: opacity .8s ease;
}

.slide.active { opacity: 1; }

.slide img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,39,76,.58) 0%, rgba(17,39,76,.34) 34%, rgba(17,39,76,.10) 100%);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero-content-wrap {
  width: min(1200px, calc(100% - 32px));
}

.hero-card {
  width: min(660px, 100%);
  background: rgba(20,40,72,.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
  padding: 34px 34px 30px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(8,22,47,.2);
}

.hero-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.03em;
}

.hero-card p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.action-btn {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 800;
  font-size: 1.08rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.action-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.34);
  cursor: pointer;
}

.dot.active { background: #fff; }

.why-book {
  background: linear-gradient(90deg, #4b6fd0 0%, #3f63c4 100%);
  color: #fff;
}

.why-book-inner {
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}

.why-book h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.benefit-icon {
  font-size: 1.85rem;
  line-height: 1;
}

.benefit-icon.warm { color: #ffd463; }
.benefit-icon.gold { color: #ffe082; }
.benefit-icon.clean { color: #ffffff; }

.brands-section {
  padding: 26px 0 18px;
}

.brands-box,
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(23,59,116,.07);
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(43,77,127,.06);
}

.brands-box { padding: 30px 28px; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.brands-grid img {
  max-height: 58px;
  width: 100%;
  object-fit: contain;
  justify-self: center;
}

.contact-section { padding: 22px 0 22px; }

.contact-card { padding: 30px 32px 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: start;
}

.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 22px rgba(41,74,134,.13);
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.contact-icon.phone { background: linear-gradient(180deg, #6d96ff, #4f7fec); }
.contact-icon.email { background: linear-gradient(180deg, #ffc867, #f0a930); }
.contact-icon.location { background: linear-gradient(180deg, #52d68a, #37be71); }

.contact-item h3 {
  margin: 3px 0 8px;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.contact-link {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 1.12rem;
}

.certification-row {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.iata-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.license-text {
  font-weight: 800;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  text-align: center;
}

.site-footer {
  padding: 0 0 24px;
  text-align: center;
  color: #6d7f99;
  font-size: .98rem;
}

@media (max-width: 991px) {
  .why-book-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

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

  .benefit-item {
    justify-content: center;
  }

  .brands-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

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

@media (max-width: 767px) {
  body {
    background: linear-gradient(180deg, #0b1320 0%, #10192a 45%, #142238 100%);
    color: var(--mobile-text);
  }

  .container {
    width: calc(100% - 24px);
  }

  .topbar {
    background: rgba(16,25,42,.72);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .topbar-inner {
    min-height: 50px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 0;
  }

  .topbar-left {
    justify-content: center;
    gap: 12px 16px;
  }

  .top-link {
    font-size: 13px;
    gap: 8px;
    color: #edf4ff;
  }

  .icon {
    width: 17px;
    height: 17px;
  }

  .social {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
  }

  /* keep logo area white on mobile so the logo stays visible */
  .logo-bar {
    background: #ffffff !important;
    border-bottom: 1px solid #dfe8f3 !important;
  }

  .logo-wrap {
    min-height: 74px;
  }

  .site-logo {
    width: 150px;
  }

  .hero {
    min-height: 460px;
  }

  .hero-content-wrap {
    width: calc(100% - 24px);
  }

  .hero-card {
    padding: 24px 20px 22px;
    border-radius: 22px;
    background: rgba(9,19,35,.42);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
  }

  .hero-card h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-card p {
    font-size: 1rem;
    color: #eef4ff;
  }

  .action-btn {
    min-width: 145px;
    font-size: 1rem;
    padding: 13px 18px;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
  }

  .why-book {
    background: linear-gradient(180deg, #153a96 0%, #103180 100%);
  }

  .brands-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px 18px;
  }

  .brands-grid img {
    max-height: 46px;
  }

  /* force white cards on mobile so dark logos stay visible */
  .contact-card,
  .brands-box {
    padding: 22px 18px;
    border-radius: 24px;
    background: #ffffff !important;
    border: 1px solid rgba(23,59,116,.07) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
  }

  /* switch text back to dark inside the white cards */
  .contact-item h3,
  .license-text {
    color: var(--text) !important;
  }

  .contact-item p {
    color: var(--muted) !important;
  }

  .contact-link {
    color: var(--blue-dark) !important;
  }

  .contact-icon {
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
  }

  .certification-row {
    flex-direction: column;
    border-top: 1px solid var(--line) !important;
  }

  /* keep images/logos natural if the mobile browser tries to auto-darken */
  .brands-box img,
  .iata-logo,
  .site-logo {
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  .site-footer {
    color: #b9c6db;
  }
}

/* extra protection against browser/app auto-darkening on mobile */
.logo-bar,
.brands-box,
.contact-card {
  color-scheme: light;
}
/* ===== FORCE LIGHT MODE FOR LOGO + BRAND AREAS ===== */

html, body {
  color-scheme: light !important;
  forced-color-adjust: none !important;
}

/* force white backgrounds even in dark mode */
.logo-bar,
.brands-box,
.contact-card {
  background: #ffffff !important;
  color-scheme: light !important;
  forced-color-adjust: none !important;
}

/* ensure logos never get darkened */
.brands-box img,
.iata-logo,
.site-logo {
  filter: none !important;
  mix-blend-mode: normal !important;
  forced-color-adjust: none !important;
}
