* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f3f3f1;
  --text: #111111;
  --muted: #666666;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.wrapper {
  width: min(1700px, calc(100vw - 24px));
  margin: 6px auto 50px;
}

/* =========================
   NAVBAR
========================= */

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-left: 10px;
}

.navbar {
  position: sticky;
  top: 12px;
  z-index: 1200;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  padding: 10px 18px;
  margin: 10px auto -22px;

  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  width: fit-content;
  max-width: calc(100vw - 40px);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 90px;
  position: relative;
  z-index: 2;
}

.nav-glass {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.nav a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 999px;
  transition:
    transform 0.35s cubic-bezier(.22, .61, .36, 1),
    background 0.35s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.35s cubic-bezier(.22, .61, .36, 1);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgb(255, 255, 255),
    0 4px 12px rgba(0, 0, 0, 0.18);
  transform: scale(1.08);
}

.book-btn,
.mobile-call-btn {
  text-decoration: none;
  color: #fff;
  background: #111;
  padding: 14px 40px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.3s cubic-bezier(.22, .61, .36, 1),
    background 0.3s ease;
}

.book-btn {
  margin-left: 90px;
  position: relative;
  z-index: 2;
}

.book-btn:active,
.mobile-call-btn:active,
.floating-call-btn:active {
  transform: scale(0.96);
}

.book-btn:hover,
.mobile-call-btn:hover,
.floating-call-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.135),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mobile-call-btn {
  display: none;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 12px;
}

/* =========================
   MOBILE MENU BACKDROP
========================= */

.mobile-menu-backdrop {
  display: none;
}

.mobile-menu-backdrop.active {
  display: none;
}

/* =========================
   MOBILE HAMBURGER ONLY
========================= */

@media (max-width: 680px) {
  .wrapper {
    width: calc(100vw - 12px);
    margin-top: 6px;
  }

  .navbar {
    width: calc(100vw - 16px);
    max-width: none;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    margin: 8px auto 8px;
    z-index: 1200;
  }

  .logo {
    margin-right: 0;
  }

  .book-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-menu-backdrop.active {
    display: block;
  }

  .nav-glass {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1201;

    padding: 16px;
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);

    border: 1px solid rgba(235, 235, 235, 0.95);

    box-shadow:
      0 20px 46px rgba(0, 0, 0, 0.16),
      0 8px 18px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);

    overflow: hidden;
    isolation: isolate;
  }

  .nav-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.72),
        rgba(255, 255, 255, 0.38));
    pointer-events: none;
    z-index: 0;
  }

  .nav-glass.active {
    display: block;
  }

  .nav-glass .nav,
  .nav-glass .mobile-call-btn {
    position: relative;
    z-index: 1;
  }

  .nav-glass .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-glass .nav a {
    width: 100%;
    text-align: left;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 16px;
    color: #111;
    background: rgba(246, 246, 246, 0.96);
    border: 1px solid rgba(232, 232, 232, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 2px 8px rgba(0, 0, 0, 0.04);
    transform: none !important;
  }

  .nav-glass .nav a:hover {
    background: #ffffff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      0 4px 10px rgba(0, 0, 0, 0.06);
  }

  .mobile-call-btn {
    display: inline-flex;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: #111;
    color: #fff;
  }
}

/* =========================
   FLOATING CALL BUTTON
========================= */
.floating-call-btn {
  display: none;
  position: fixed;
  right: 32px;
  bottom: 90px;
  z-index: 1400;

  text-decoration: none;
  color: #fff;
  background: #111;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;

  align-items: center;
  justify-content: center;

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
}

.hero-bg {
  position: relative;
  width: min(1550px, 100%);
  height: min(95vh, 860px);
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  background: url("bg1.png") center center / cover no-repeat;
  transition:
    transform 0.6s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.6s cubic-bezier(.22, .61, .36, 1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8%;
  text-align: center;
}

.hero-overlay h1 {
  text-align: center;
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  color: white;
  letter-spacing: -0.055em;
  max-width: 980px;
  white-space: nowrap;
  margin: 0 auto;
}

.hero-bottom-text {
  position: absolute;
  left: 10%;
  bottom: 10%;
  max-width: 680px;
  text-align: left;
}

.hero-bottom-text p {
  color: #fff;
  font-size: clamp(12px, 1.15vw, 18px);
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
}

/* =========================
   CONTENT ON BUILT-IN CARD AREA
========================= */
.info-content {
  position: absolute;
  right: 2%;
  bottom: 4.6%;
  z-index: 3;
  width: 320px;
}

.info-top {
  position: absolute;
  top: -35px;
  right: 20px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.call-btn:hover {
  background: #111;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.171),
    inset 0 2px 4px rgba(255, 255, 255, 0.103),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px) scale(1.02);
}

.info-bottom {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-top: 40px;
}

.avatars {
  display: flex;
  align-items: center;
  min-width: 118px;
  position: relative;
  left: -35px;
  top: 10px;
}

.avatars img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -50px;
  position: relative;
  flex-shrink: 0;
  display: block;
}

.avatars img:first-child {
  margin-left: 0;
  z-index: 3;
}

.avatars img:nth-child(2) {
  z-index: 2;
}

.avatars img:nth-child(3) {
  z-index: 1;
}

.info-text h4 {
  font-size: 16px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 5px;
  color: white;
}

.info-text p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.42;
  color: var(--muted);
  max-width: 150px;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================
   FOLLOW
========================= */
.follow-pill {
  margin-top: 18px;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  padding: 12px 18px;
}

.follow-pill span {
  font-size: 15px;
  font-weight: 500;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.socials a.fb {
  background: #3478f6;
  color: #fff;
  border-color: #3478f6;
}

/* =========================
   BELOW SECTION
========================= */
.popular {
  margin-top: 70px;
  padding-left: 6px;
}

.popular h2 {
  font-size: clamp(44px, 4vw, 74px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.055em;
  margin-bottom: 8px;
}

.popular p {
  font-size: 18px;
  color: #8a8a8a;
}

/* =========================
   LAPTOP / SMALL DESKTOP
========================= */
@media (max-width: 1200px) {
  .wrapper {
    width: calc(100vw - 20px);
  }

  .logo {
    margin-right: 56px;
  }

  .book-btn {
    margin-left: 56px;
    padding: 12px 30px;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 11px;
    padding: 8px 8px;
  }

  .hero-overlay h1 {
    font-size: clamp(30px, 4vw, 52px);
    max-width: 900px;
  }
}

/* =========================
   TABLET / iPAD
========================= */
@media (max-width: 1024px) {
  .book-btn {
    display: none;
  }

  .floating-call-btn {
    display: inline-flex;
  }

  .hero-bg {
    background: url("bg2.png") center center / cover no-repeat;
    border-radius: 26px;
    transform: translateY(-14px);
    box-shadow:
      0 32px 60px rgba(0, 0, 0, 0.12),
      0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .navbar {
    margin: 8px auto -12px;
  }

  .hero-overlay {
    padding-top: 10%;
  }

  .hero-overlay h1 {
    font-size: clamp(26px, 4.2vw, 42px);
    max-width: 720px;
    white-space: normal;
  }

  /* centered tablet layout like mobile */
  .hero-bottom-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    width: 80%;
    max-width: 360px;
    text-align: center;
  }

  .hero-bottom-text p {
    font-size: 10px;
    line-height: 1.24;
  }

  .info-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 62px;
    width: 80%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    right: auto;
  }

  .info-top {
    position: static;
    order: 2;
    margin-top: 10px;
  }

  .info-bottom {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 0;
  }

  .avatars {
    position: static;
    left: auto;
    top: auto;
    min-width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .avatars img {
    display: block !important;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 2px solid #fff;
    margin-left: -12px;
  }

  .avatars img:first-child {
    margin-left: 0;
  }

  .avatars img:nth-child(1) {
    z-index: 3;
  }

  .avatars img:nth-child(2) {
    z-index: 2;
  }

  .avatars img:nth-child(3) {
    z-index: 1;
  }

  .call-btn {
    font-size: 12px;
    padding: 9px 16px;
  }

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

  .info-text h4 {
    font-size: 11px;
    line-height: 1.12;
    margin-bottom: 0;
  }

  .info-text p {
    display: none;
  }
}

/* =========================
   TABLET NARROW
========================= */
@media (max-width: 860px) {
  .wrapper {
    width: calc(100vw - 14px);
    margin-top: 8px;
  }

  .navbar {
    gap: 12px;
    padding: 10px 14px;
    margin: 8px auto -10px;
  }

  .logo {
    margin-right: 24px;
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    font-size: 10px;
    padding: 7px 6px;
    letter-spacing: 0.04em;
  }

  .hero-bg {
    border-radius: 24px;
    height: auto;
    aspect-ratio: 1680 / 945;
    min-height: 420px;
    background: url("bg2.png") center center / cover no-repeat;
    transform: translateY(-12px);
    box-shadow:
      0 28px 52px rgba(0, 0, 0, 0.12),
      0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .hero-overlay {
    padding-top: 11%;
  }

  .hero-overlay h1 {
    font-size: clamp(24px, 4.6vw, 38px);
    max-width: 680px;
    white-space: normal;
  }

  .hero-bottom-text {
    width: 82%;
    max-width: 320px;
    bottom: 18px;
  }

  .hero-bottom-text p {
    font-size: 9px;
    line-height: 1.22;
  }

  .info-content {
    bottom: 56px;
    width: 220px;
    max-width: 220px;
  }

  .avatars img {
    display: block !important;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    margin-left: -10px;
  }

  .avatars img:first-child {
    margin-left: 0;
  }

  .call-btn {
    font-size: 10px;
    padding: 7px 12px;
  }

  .info-text h4 {
    font-size: 10px;
  }

  .info-text p {
    display: none;
  }

  .follow-pill {
    margin-left: 0;
  }

  .popular {
    padding-left: 0;
    margin-top: 46px;
  }

  .floating-call-btn {
    display: inline-flex;
    right: 28px;
    bottom: 80px;
  }
}

/* =========================
   MOBILE HAMBURGER ONLY
========================= */
@media (max-width: 680px) {
  .wrapper {
    width: calc(100vw - 12px);
    margin-top: 6px;
  }

  .navbar {
    width: calc(100vw - 16px);
    max-width: none;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    margin: 8px auto 8px;
  }

  .logo {
    margin-right: 0;
  }

  .book-btn {
    display: none;
  }

  .floating-call-btn {
    right: 22px;
    bottom: 70px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-glass {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
      0 8px 30px rgba(0, 0, 0, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .nav-glass.active {
    display: block;
  }

  .nav-glass .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-glass .nav a {
    width: 100%;
    text-align: left;
    font-size: 12px;
    padding: 10px 12px;
  }

  .mobile-call-btn {
    display: inline-flex;
    margin-top: 14px;
    width: 100%;
  }

  .hero-bg {
    background: url("bg2.png") center 40% / cover no-repeat;
    min-height: 360px;
    border-radius: 18px;
    transform: translateY(-10px);
    box-shadow:
      0 24px 46px rgba(0, 0, 0, 0.13),
      0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .hero-overlay {
    padding: 14px 12px 14px;
  }

  .hero-overlay h1 {
    font-size: 22px;
    line-height: 1.05;
    max-width: 88%;
    white-space: normal;
  }

  .hero-bottom-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    width: 88%;
    max-width: 300px;
    text-align: center;
  }

  .hero-bottom-text p {
    font-size: 8px;
    line-height: 1.22;
  }

  .info-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 52px;
    width: 90%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    right: auto;
  }

  .info-top {
    position: static;
    order: 2;
    margin-top: 8px;
  }

  .info-bottom {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 0;
  }

  .avatars {
    position: static;
    left: auto;
    top: auto;
    min-width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .avatars img {
    display: block !important;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .avatars img:first-child {
    margin-left: 0;
  }

  .avatars img:nth-child(1) {
    z-index: 3;
  }

  .avatars img:nth-child(2) {
    z-index: 2;
  }

  .avatars img:nth-child(3) {
    z-index: 1;
  }

  .call-btn {
    font-size: 11px;
    padding: 8px 16px;
  }

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

  .info-text h4 {
    font-size: 11px;
    line-height: 1.12;
    margin-bottom: 0;
  }

  .info-text p {
    display: none;
  }

  .follow-pill {
    margin-top: 14px;
    padding: 10px 14px;
    gap: 12px;
  }

  .follow-pill span {
    font-size: 13px;
  }

  .socials {
    gap: 8px;
  }

  .socials a {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .popular {
    margin-top: 34px;
  }

  .popular h2 {
    font-size: 30px;
    line-height: 1.02;
  }

  .popular p {
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .logo-img {
    height: 30px;
  }

  .hero-bg {
    min-height: 330px;
  }

  .hero-overlay h1 {
    font-size: 20px;
  }

  .hero-bottom-text {
    width: 90%;
    max-width: 280px;
    bottom: 12px;
  }

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

  .info-content {
    bottom: 46px;
    max-width: 220px;
  }

  .avatars img {
    display: block !important;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin-left: -8px;
  }

  .avatars img:first-child {
    margin-left: 0;
  }

  .call-btn {
    font-size: 9px;
    padding: 6px 12px;
  }

  .info-text h4 {
    font-size: 9px;
  }

  .popular h2 {
    font-size: 28px;
  }

  .popular p {
    font-size: 12px;
  }

  .floating-call-btn {
    right: 12px;
    bottom: 12px;
    padding: 11px 16px;
    font-size: 12px;
  }
}


/* =========================
   FLIGHT SEARCH SECTION
========================= */

.flight-search-section {
  padding: 72px 0;
  display: flex;
  justify-content: center;
}

.flight-search-section .container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.search-panel {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 34px 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.search-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.search-panel-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
}

.search-panel-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}

.search-call-link {
  text-decoration: none;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 6px;
}

.flight-form {
  width: 100%;
}

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

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #333333;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #d9dee7;
  border-radius: 16px;
  background: #ffffff;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: #bbbbbb;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.field select {
  appearance: auto;
  cursor: pointer;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

.search-btn {
  min-width: 220px;
  height: 54px;
  padding: 0 26px;
  border: none;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.search-btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn .btn-text {
  line-height: 1;
}

.search-btn .plane {
  font-size: 17px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.search-btn:hover .plane {
  transform: translateX(2px);
}

.form-note {
  margin-left: auto;
  text-align: right;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  color: #777777;
}

/* =========================
   LARGE TABLET
========================= */
@media (max-width: 1100px) {
  .flight-search-section .container {
    width: min(94%, 1180px);
  }

  .search-panel {
    padding: 30px 28px 26px;
  }

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

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .flight-search-section {
    padding: 56px 0;
  }

  .flight-search-section .container {
    width: min(94%, 100%);
  }

  .search-panel {
    border-radius: 24px;
    padding: 24px 20px 22px;
  }

  .search-panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .search-panel-head h2 {
    font-size: 22px;
  }

  .search-panel-head p {
    font-size: 14px;
  }

  .search-call-link {
    margin-top: 0;
    font-size: 15px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field input,
  .field select {
    height: 50px;
    border-radius: 14px;
    font-size: 15px;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 18px;
  }

  .search-btn {
    width: 100%;
    min-width: 100%;
    height: 52px;
  }

  .form-note {
    margin-left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .flight-search-section {
    padding: 42px 0;
  }

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

  .search-panel {
    border-radius: 20px;
    padding: 20px 14px 18px;
  }

  .search-panel-head {
    margin-bottom: 18px;
  }

  .search-panel-head h2 {
    font-size: 20px;
  }

  .search-panel-head p {
    font-size: 13px;
    line-height: 1.45;
  }

  .field label {
    font-size: 12px;
    margin-bottom: 7px;
  }

  .field input,
  .field select {
    height: 48px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 14px;
  }

  .search-btn {
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
  }

  .form-note {
    font-size: 13px;
    line-height: 1.5;
  }
}



/* =========================
   AIRLINE PARTNERS SECTION
========================= */

.airline-partners-section {
  padding: 34px 0 90px;
}

.airline-partners-section .container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.partners-head {
  text-align: center;
  margin-bottom: 34px;
}

.partners-head h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: #111111;
}

.partners-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
}

/* marquee */

.airline-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}

.airline-marquee-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
}

/* fade masks */

.airline-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 3;
  pointer-events: none;
}

.airline-fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(245, 246, 248, 1), rgba(245, 246, 248, 0));
}

.airline-fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(245, 246, 248, 1), rgba(245, 246, 248, 0));
}

/* pills */

.airline-pill {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 0 24px 0 0;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: width .35s ease, transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.airline-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.airline-pill.active {
  width: 470px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
}

.pill-icon {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.pill-icon img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transform: scale(1.15);
}

.pill-content {
  min-width: 250px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .22s ease, transform .22s ease;
  text-align: left;
}

.airline-pill.active .pill-content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .1s;
}

.pill-content strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
}

.pill-content small {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

/* tablet */

@media (max-width: 900px) {
  .partners-head h2 {
    font-size: 30px;
  }

  .partners-head p {
    font-size: 15px;
  }

  .airline-marquee-track {
    gap: 18px;
  }

  .airline-pill {
    width: 96px;
    height: 96px;
    padding-right: 18px;
  }

  .airline-pill.active {
    width: 360px;
  }

  .pill-icon {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
  }

  .pill-content {
    min-width: 180px;
  }

  .pill-content strong {
    font-size: 16px;
  }

  .pill-content small {
    font-size: 13px;
  }

  .airline-fade {
    width: 72px;
  }
}

/* mobile */

@media (max-width: 600px) {
  .airline-partners-section {
    padding: 18px 0 48px;
  }

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

  .partners-head {
    margin-bottom: 22px;
  }

  .partners-head h2 {
    font-size: 24px;
  }

  .partners-head p {
    font-size: 14px;
    line-height: 1.45;
  }

  .airline-marquee-track {
    gap: 18px;
  }

  .airline-pill {
    width: 84px;
    height: 84px;
    padding-right: 14px;
  }

  .airline-pill.active {
    width: 300px;
    max-width: 78vw;
  }

  .pill-icon {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
  }

  .pill-icon img {
    width: 92%;
    height: 92%;
    transform: scale(1.18);
  }

  .pill-content {
    min-width: 150px;
  }

  .pill-content strong {
    font-size: 14px;
  }

  .pill-content small {
    font-size: 12px;
    line-height: 1.4;
  }

  .airline-fade {
    width: 44px;
  }
}









/* ===============================
POPULAR DESTINATIONS SECTION
=============================== */

.popular-destinations-section {
  padding: 72px 0 90px;
  position: relative;
}

.popular-destinations-section .container {
  width: 92%;
  max-width: 1320px;
  margin: auto;
}

.destinations-head {
  text-align: center;
  margin-bottom: 40px;
}

.destinations-head h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
}

.destinations-head p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.5;
  color: #667085;
}

/* carousel */

.destinations-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.destinations-slider-wrap {
  width: 100%;
  overflow: hidden;
  padding-inline: 8%;
  box-sizing: border-box;
}

.destinations-slider {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: transform .45s ease;
  will-change: transform;
}

/* side arrows */

.dest-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all .25s ease;
}

.dest-side-arrow:hover {
  background: #111111;
  color: #ffffff;
}

.dest-side-arrow-left {
  left: 8px;
}

.dest-side-arrow-right {
  right: 8px;
}

/* cards */

.destination-card {
  flex: 0 0 calc((100% - 80px) / 3);
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  align-self: flex-start;
  transition: opacity .35s ease, filter .35s ease, transform .35s ease;
}

.destination-card.preview {
  opacity: .58;
  filter: blur(2px);
  transform: scale(.98);
}

.destination-card-top {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
}

.destination-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
  background: #dbe4ee;
}

.destination-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.destination-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
}

.destination-main h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: #111827;
}

.destination-main p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #6b7280;
}

.destination-rating {
  white-space: nowrap;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
}

/* expand */

.destination-expand {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  border-top: 1px solid transparent;
  transition: max-height .35s ease, padding .35s ease, border-color .35s ease;
}

.destination-card.active-expand .destination-expand {
  max-height: 260px;
  padding: 20px;
  border-top-color: #eeeeee;
}

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

.info-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px;
}

.info-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: #6b7280;
}

.info-item strong {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #111827;
}

.info-item-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.destination-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}

.destination-book-btn:hover {
  transform: translateY(-1px);
  opacity: .96;
}

/* tablet */

@media (max-width: 900px) {
  .destinations-head h2 {
    font-size: 30px;
  }

  .destinations-slider-wrap {
    padding-inline: 8%;
  }

  .destination-card {
    flex: 0 0 calc((100% - 40px) / 2);
    border-radius: 24px;
  }

  .destination-image {
    height: 210px;
  }

  .dest-side-arrow {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .dest-side-arrow-left {
    left: 6px;
  }

  .dest-side-arrow-right {
    right: 6px;
  }
}

/* mobile */

@media (max-width: 600px) {
  .popular-destinations-section {
    padding: 56px 0 60px;
  }

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

  .destinations-head {
    margin-bottom: 28px;
  }

  .destinations-head h2 {
    font-size: 24px;
  }

  .destinations-head p {
    font-size: 14px;
  }

  .destinations-slider-wrap {
    padding-inline: 8%;
  }

  .destination-card {
    flex: 0 0 84%;
    border-radius: 22px;
  }

  .destination-image {
    height: 200px;
  }

  .destination-main {
    padding: 18px 16px;
  }

  .destination-main h3 {
    font-size: 18px;
  }

  .destination-expand {
    padding: 0 16px;
  }

  .destination-card.active-expand .destination-expand {
    max-height: 340px;
    padding: 16px;
  }

  .destination-info-grid {
    grid-template-columns: 1fr;
  }

  .dest-side-arrow {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .dest-side-arrow-left {
    left: 4px;
  }

  .dest-side-arrow-right {
    right: 4px;
  }
}




/* =========================
   JOURNEY SECTION
========================= */

.journey-section {
  padding: 60px 20px;
}

/* =========================
   CONTAINER
========================= */

.journey-container {
  max-width: 1500px;
  margin: auto;

  padding: 60px 50px;

  border-radius: 34px;

  background: linear-gradient(145deg,
      #f7f9ff,
      #eef3ff);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.7);

  position: relative;
}

/* soft glow overlay */

.journey-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;

  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.8), transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(59, 130, 246, 0.08), transparent 40%);

  pointer-events: none;
}


/* =========================
   HEADER
========================= */

.journey-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 55px;
}

.journey-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.journey-header p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}


/* =========================
   CAPSULE WRAPPER
========================= */

.journey-capsules {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  gap: 70px;
  /* large premium spacing */
}


/* =========================
   CAPSULE CARD
========================= */

.journey-capsule {

  width: 260px;
  height: 360px;

  border-radius: 220px;

  padding: 40px 28px;

  text-align: center;

  background: #ffffff;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition: all .35s ease;
}


/* hover lift */

.journey-capsule:hover {
  transform: translateY(-12px);

  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.12);
}


/* =========================
   ICON
========================= */

.journey-icon {
  width: 78px;
  height: 78px;

  border-radius: 50%;

  margin: auto;
  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg,
      #3b82f6,
      #2563eb);

  box-shadow:
    0 12px 28px rgba(37, 99, 235, 0.35);
}

.journey-icon span {
  font-size: 26px;
  color: white;
}


/* =========================
   CAPSULE TEXT
========================= */

.journey-capsule h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.journey-capsule p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}



/* =========================
   TABLET
========================= */

@media (max-width:1000px) {

  .journey-container {
    padding: 50px 30px;
  }

  .journey-capsules {
    gap: 40px;
  }

}



/* =========================
   MOBILE
========================= */

@media (max-width:768px) {

  .journey-section {
    padding: 30px 14px;
  }

  .journey-container {
    padding: 28px 16px 30px;
    border-radius: 22px;
  }

  .journey-header {
    margin-bottom: 25px;
  }

  .journey-header h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .journey-header p {
    font-size: 13px;
    line-height: 1.55;
    max-width: 300px;
    margin: auto;
  }

  .journey-capsules {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .journey-capsule {

    width: 240px;
    height: 270px;

    border-radius: 150px;

    padding: 28px 20px;
  }

  .journey-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .journey-icon span {
    font-size: 22px;
  }

  .journey-capsule h3 {
    font-size: 16px;
  }

  .journey-capsule p {
    font-size: 12px;
    line-height: 1.5;
    max-width: 170px;
    margin: auto;
  }

}



/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px) {

  .journey-container {
    padding: 22px 12px 24px;
  }

  .journey-header h2 {
    font-size: 19px;
  }

  .journey-header p {
    font-size: 12px;
  }

  .journey-capsule {

    width: 220px;
    height: 250px;

    border-radius: 130px;
  }

}


/* ===================================
   SUPPORT EDITORIAL SECTION - FINAL
=================================== */

.support-editorial-v2 {
  padding: 36px 20px 90px;
}

.support-editorial-v2-wrap {
  max-width: 1120px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: 440px 78px;

  column-gap: 34px;
  row-gap: 18px;

  align-items: end;
  justify-content: center;
}


/* ===================================
   LEFT IMAGE
=================================== */

.support-v2-image {
  grid-column: 1;
  grid-row: 1;

  height: 440px;
  min-height: 440px;

  border-radius: 30px;
  overflow: hidden;
}

.support-v2-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ===================================
   RIGHT TYPOGRAPHY AREA
=================================== */

.support-v2-content {
  grid-column: 2;
  grid-row: 1;

  padding: 0 4px 8px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;

  transform: translateY(-100px);
}

.support-v2-line {
  display: flex;
  align-items: flex-start;
}

.support-v2-line h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #000;
}

/* LINE 1 */

.support-v2-line-1 {
  gap: 14px;
  align-items: flex-start;
}

.support-v2-line-1 h2 {
  font-size: clamp(44px, 4.8vw, 68px);
}

.support-v2-line-1 p {
  margin: 8px 0 0;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.45;
  color: #4b5563;
}

/* LINE 2 */

.support-v2-line-2 h2 {
  font-size: clamp(44px, 4.8vw, 68px);
}

/* LINE 3 */

.support-v2-line-3 {
  gap: 20px;
  align-items: flex-end;
}

.support-v2-line-3 p {
  margin: 0 0 8px;
  width: 280px;
  font-size: 13px;
  line-height: 1.42;
  color: #4b5563;
}

.support-v2-line-3 h2 {
  font-size: clamp(44px, 4.8vw, 68px);
  margin-left: 25px;
}


/* ===================================
   OFFER CARD
=================================== */

.support-v2-offer {
  grid-column: 1;
  grid-row: 2;

  min-height: 78px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  background: #f5f5f7;
  border-radius: 20px;

  text-decoration: none;
  color: inherit;
}

.support-v2-offer:hover {
  background: #f0f0f3;
  transform: translateY(-1px);
  transition: all .2s ease;
}

.offer-v2-big {
  font-size: 20px;
  font-weight: 700;
  color: #3483fa;
  white-space: nowrap;
}

.offer-v2-small {
  max-width: 92px;
  font-size: 13px;
  line-height: 1.2;
  color: #555;
}


/* ===================================
   CTA IMAGE BUTTON
=================================== */

.support-v2-cta {
  grid-column: 2;
  grid-row: 2;

  position: relative;
  overflow: hidden;

  width: 83%;
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  justify-self: start;
  align-self: start;

  border-radius: 999px;
  text-decoration: none;
  color: inherit;
}

.support-v2-cta:hover,
.support-v2-cta:focus,
.support-v2-cta:active {
  text-decoration: none;
  color: inherit;
}

.support-v2-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-v2-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
}

.support-v2-cta span,
.support-v2-cta strong {
  position: relative;
  z-index: 2;
  color: #111;
  text-decoration: none;
}

.support-v2-cta span {
  font-size: 17px;
  font-weight: 500;
}

.support-v2-cta strong {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}


/* ===================================
   SUPPORT EDITORIAL SECTION - FINAL
=================================== */

.support-editorial-v2 {
  padding: 36px 20px 90px;
}

.support-editorial-v2-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: 440px 78px;
  column-gap: 34px;
  row-gap: 18px;
  align-items: end;
  justify-content: center;
}

/* ===================================
   IMAGE
=================================== */

.support-v2-image {
  grid-column: 1;
  grid-row: 1;
  height: 440px;
  min-height: 440px;
  border-radius: 30px;
  overflow: hidden;
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.10),
    0 6px 12px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.support-v2-image:hover {
  transform: translateY(-10px);
  box-shadow:
    0 26px 48px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08);
}

.support-v2-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===================================
   CONTENT
=================================== */

.support-v2-content {
  grid-column: 2;
  grid-row: 1;
  padding: 0 4px 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  transform: translateY(-100px);
}

.support-v2-line {
  display: flex;
  align-items: flex-start;
}

.support-v2-line h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #000;
}

.support-v2-line p {
  font-size: 13px;
  color: #4b5563;
}

/* line 1 */
.support-v2-line-1 {
  gap: 14px;
  align-items: flex-start;
}

.support-v2-line-1 h2 {
  font-size: clamp(44px, 4.8vw, 68px);
}

.support-v2-line-1 p {
  margin: 8px 0 0;
  max-width: 320px;
  line-height: 1.45;
}

/* line 2 */
.support-v2-line-2 h2 {
  font-size: clamp(44px, 4.8vw, 68px);
}

/* line 3 */
.support-v2-line-3 {
  gap: 14px;
  align-items: flex-end;
}

.support-v2-line-3 p {
  margin: 0 0 8px;
  width: 280px;
  line-height: 1.45;
}

.support-v2-line-3 h2 {
  font-size: clamp(44px, 4.8vw, 68px);
  margin-left: 0;
}

.support-v2-mobile-text {
  display: none;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
}

/* ===================================
   OFFER
=================================== */

.support-v2-offer {
  grid-column: 1;
  grid-row: 2;
  min-height: 78px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f5f5f7;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transform: translateY(-6px);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.support-v2-offer:hover,
.support-v2-offer:focus,
.support-v2-offer:active {
  text-decoration: none;
  color: inherit;
  background: #f0f0f3;
  transform: translateY(-10px);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.10),
    0 6px 14px rgba(0, 0, 0, 0.06);
}

.offer-v2-big {
  font-size: 20px;
  font-weight: 700;
  color: #3483fa;
  white-space: nowrap;
}

.offer-v2-small {
  max-width: 110px;
  font-size: 13px;
  line-height: 1.2;
  color: #555;
}

/* ===================================
   CTA
=================================== */

.support-v2-cta {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  overflow: hidden;
  width: 83%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  justify-self: start;
  align-self: start;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.support-v2-cta:hover,
.support-v2-cta:focus,
.support-v2-cta:active {
  text-decoration: none;
  color: inherit;
  transform: translateY(-10px);
  box-shadow:
    0 26px 48px rgba(0, 0, 0, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.09);
}

.support-v2-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-v2-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
}

.support-v2-cta span,
.support-v2-cta strong {
  position: relative;
  z-index: 2;
  color: #111;
  text-decoration: none;
}

.support-v2-cta span {
  font-size: 17px;
  font-weight: 500;
}

.support-v2-cta strong {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

/* ===================================
   UTILITY
=================================== */

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ===================================
   LARGE LAPTOP
=================================== */

@media (max-width: 1200px) {
  .support-editorial-v2-wrap {
    max-width: 1020px;
    grid-template-columns: 255px 1fr;
    grid-template-rows: 410px 74px;
    column-gap: 28px;
  }

  .support-v2-image {
    height: 410px;
    min-height: 410px;
  }

  .support-v2-content {
    transform: translateY(-78px);
  }

  .support-v2-line-1 h2,
  .support-v2-line-2 h2,
  .support-v2-line-3 h2 {
    font-size: clamp(38px, 4.7vw, 58px);
  }

  .support-v2-line-1 p {
    max-width: 290px;
    font-size: 12px;
  }

  .support-v2-line-3 p {
    width: 250px;
    font-size: 12px;
  }

  .support-v2-cta {
    width: 85%;
    min-height: 74px;
  }
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {
  .support-editorial-v2 {
    padding: 28px 18px 72px;
  }

  .support-editorial-v2-wrap {
    max-width: 860px;
    grid-template-columns: 220px 1fr;
    grid-template-rows: 360px 68px;
    column-gap: 24px;
    row-gap: 16px;
  }

  .support-v2-image {
    height: 360px;
    min-height: 360px;
    border-radius: 24px;
  }

  .support-v2-content {
    transform: translateY(-54px);
    gap: 8px;
  }

  .support-v2-line-1 {
    gap: 10px;
  }

  .support-v2-line-1 h2,
  .support-v2-line-2 h2,
  .support-v2-line-3 h2 {
    font-size: clamp(34px, 4.8vw, 50px);
  }

  .support-v2-line-1 p {
    max-width: 220px;
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.4;
  }

  .support-v2-line-3 {
    gap: 12px;
  }

  .support-v2-line-3 p {
    width: 185px;
    font-size: 11.5px;
    line-height: 1.4;
  }

  .support-v2-offer {
    min-height: 68px;
    padding: 0 16px;
    border-radius: 18px;
  }

  .offer-v2-big {
    font-size: 18px;
  }

  .offer-v2-small {
    font-size: 12px;
    max-width: 100px;
  }

  .support-v2-cta {
    width: 88%;
    min-height: 68px;
  }

  .support-v2-cta span {
    font-size: 16px;
  }

  .support-v2-cta strong {
    font-size: 24px;
  }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .support-editorial-v2 {
    padding: 22px 14px 56px;
  }

  .support-editorial-v2-wrap {
    max-width: 420px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    row-gap: 14px;
  }

  .support-v2-image,
  .support-v2-content,
  .support-v2-offer,
  .support-v2-cta {
    grid-column: auto;
    grid-row: auto;
  }

  .support-v2-image {
    height: 340px;
    min-height: 340px;
    border-radius: 22px;
    transform: translateY(0);
  }

  .support-v2-image:hover {
    transform: translateY(-4px);
  }

  .support-v2-content {
    padding: 2px 0 0;
    transform: none;
    gap: 8px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .support-v2-line {
    display: block;
    margin: 0;
  }

  .support-v2-line-1,
  .support-v2-line-2,
  .support-v2-line-3 {
    order: 1;
  }

  .support-v2-line h2 {
    line-height: 0.95;
    margin: 0;
  }

  .support-v2-line-1 h2,
  .support-v2-line-2 h2,
  .support-v2-line-3 h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .support-v2-line-3 h2 {
    margin-left: 0;
  }

  .support-v2-mobile-text {
    display: block;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
  }

  .support-v2-mobile-text:first-of-type {
    order: 2;
    margin-top: 6px;
  }

  .support-v2-mobile-text:last-of-type {
    order: 3;
  }

  .support-v2-offer {
    min-height: 66px;
    padding: 0 16px;
    border-radius: 18px;
    transform: translateY(0);
  }

  .support-v2-offer:hover,
  .support-v2-offer:focus,
  .support-v2-offer:active {
    transform: translateY(-4px);
  }

  .offer-v2-big {
    font-size: 19px;
  }

  .offer-v2-small {
    font-size: 12px;
    max-width: 110px;
  }

  .support-v2-cta {
    width: 100%;
    min-height: 68px;
    border-radius: 999px;
    justify-self: stretch;
    transform: translateY(0);
  }

  .support-v2-cta:hover,
  .support-v2-cta:focus,
  .support-v2-cta:active {
    transform: translateY(-4px);
  }

  .support-v2-cta span {
    font-size: 16px;
  }

  .support-v2-cta strong {
    font-size: 24px;
  }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {
  .support-editorial-v2 {
    padding: 18px 12px 48px;
  }

  .support-editorial-v2-wrap {
    row-gap: 12px;
  }

  .support-v2-image {
    height: 300px;
    min-height: 300px;
    border-radius: 20px;
  }

  .support-v2-line-1 h2,
  .support-v2-line-2 h2,
  .support-v2-line-3 h2 {
    font-size: 30px;
  }

  .support-v2-mobile-text {
    font-size: 12px;
    line-height: 1.45;
  }

  .support-v2-offer {
    min-height: 62px;
    padding: 0 14px;
  }

  .offer-v2-big {
    font-size: 17px;
  }

  .offer-v2-small {
    font-size: 11px;
    max-width: 95px;
  }

  .support-v2-cta {
    min-height: 62px;
    gap: 12px;
  }

  .support-v2-cta span {
    font-size: 15px;
  }

  .support-v2-cta strong {
    font-size: 22px;
  }
}




/* ===================================
   WHY CHOOSE US
=================================== */

.why-choose-us {
  padding: 60px 20px 90px;
}

.why-choose-us-container {
  max-width: 1320px;
  margin: 0 auto;
}

.why-choose-us-header {
  text-align: center;
  margin-bottom: 42px;
}

.why-choose-us-header h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111a33;
}

.why-choose-us-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #667085;
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: #eef4ff;
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 28px;
  padding: 30px 28px 30px;
  text-align: center;
  min-height: 218px;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.why-card-icon span {
  font-size: 24px;
  line-height: 1;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #1b2438;
}

.why-card p {
  margin: 0 auto;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.5;
  color: #667085;
}

/* ===================================
   LAPTOP
=================================== */

@media (max-width: 1200px) {
  .why-choose-us {
    padding: 52px 18px 78px;
  }

  .why-choose-us-header {
    margin-bottom: 34px;
  }

  .why-choose-us-grid {
    gap: 18px;
  }

  .why-card {
    border-radius: 24px;
    padding: 26px 22px;
    min-height: 205px;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 15px;
  }
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .why-card {
    min-height: auto;
    padding: 26px 22px;
  }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .why-choose-us {
    padding: 42px 14px 56px;
  }

  .why-choose-us-header {
    margin-bottom: 26px;
  }

  .why-choose-us-header h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .why-choose-us-header p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
  }

  .why-choose-us-grid {
    gap: 14px;
  }

  .why-card {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .why-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .why-card-icon span {
    font-size: 21px;
  }

  .why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .why-card p {
    font-size: 14px;
    max-width: 100%;
  }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {
  .why-choose-us {
    padding: 36px 12px 48px;
  }

  .why-card {
    padding: 20px 16px;
  }

  .why-card h3 {
    font-size: 17px;
  }

  .why-card p {
    font-size: 13px;
  }
}






/* ===================================
   STATS SECTION
=================================== */

.stats-section {
  position: relative;
  margin: 30px 20px 90px;
  border-radius: 28px;
  overflow: hidden;
  background: url("images/1234.jpg") center center / cover no-repeat;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.24);
  backdrop-filter: blur(1px);
}

.stats-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 36px;

  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  text-align: center;
}

.stat-item {
  padding: 10px 20px;
}

.stat-number {
  margin: 0 0 10px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.05em;
}

.stat-item p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 28px);
  line-height: 1.25;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.stat-divider {
  width: 1px;
  height: 180px;
  justify-self: center;
  background: rgba(255, 255, 255, 0.45);
}

/* ===================================
   LARGE LAPTOP
=================================== */

@media (max-width: 1200px) {
  .stats-section {
    min-height: 300px;
  }

  .stats-container {
    max-width: 1080px;
    padding: 34px 28px;
  }

  .stat-divider {
    height: 150px;
  }
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {
  .stats-section {
    margin: 24px 16px 72px;
    min-height: 260px;
    border-radius: 24px;
  }

  .stats-container {
    padding: 28px 18px;
  }

  .stat-number {
    font-size: clamp(40px, 7vw, 68px);
  }

  .stat-item p {
    font-size: clamp(14px, 2vw, 20px);
  }

  .stat-divider {
    height: 120px;
  }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .stats-section {
    margin: 20px 14px 56px;
    min-height: auto;
    border-radius: 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 20px;
  }

  .stat-divider {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
  }

  .stat-item {
    padding: 0;
  }

  .stat-number {
    font-size: clamp(40px, 12vw, 58px);
    margin-bottom: 6px;
  }

  .stat-item p {
    font-size: 15px;
  }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {
  .stats-section {
    margin: 18px 12px 48px;
  }

  .stats-container {
    padding: 24px 16px;
    gap: 18px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-divider {
    width: 80px;
  }
}





/* ===================================
   REVIEWS SECTION
=================================== */

.reviews-section {
  padding: 48px 20px 90px;
  overflow: hidden;
}

.reviews-container {
  max-width: 1320px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 34px;
}

.reviews-header h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #161616;
}

.reviews-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #667085;
}

/* ===================================
   SLIDER WRAP
=================================== */

.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 34px;
}

.reviews-slider-wrap::before,
.reviews-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.reviews-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f5 20%, rgba(245, 245, 245, 0));
}

.reviews-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f5 20%, rgba(245, 245, 245, 0));
}

.reviews-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 8px;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

/* ===================================
   NAV BUTTONS
=================================== */

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #1c1c1c;
  font-size: 24px;
  cursor: pointer;
  box-shadow:
    0 12px 26px rgba(15, 23, 42, 0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.14);
}

.reviews-prev {
  left: 6px;
}

.reviews-next {
  right: 6px;
}

/* ===================================
   CARDS
=================================== */

.review-card {
  flex: 0 0 calc(25% - 14px);
  min-width: 280px;
  background: #eef4ff;
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.review-card.featured {
  background: linear-gradient(180deg, #f4f8ff 0%, #e8f1ff 100%);
}

.review-stars {
  padding: 22px 22px 0;
  font-size: 20px;
  letter-spacing: 4px;
  color: #2f80ed;
  line-height: 1;
}

.review-text {
  padding: 18px 22px 24px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #2e2e2e;
  flex: 1;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(17, 24, 39, 0.04);
}

.review-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-user h4 {
  margin: 0 0 4px;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 600;
  color: #1c1c1c;
}

.review-user span {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #555;
}

/* ===================================
   ACTION + FORM
=================================== */

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.add-review-btn,
.submit-review-btn {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #2f80ed;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 14px 28px rgba(47, 128, 237, 0.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.add-review-btn:hover,
.submit-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(47, 128, 237, 0.28);
}

.review-form-wrap {
  max-width: 900px;
  margin: 26px auto 0;
  display: none;
}

.review-form-wrap.active {
  display: block;
}

.review-form {
  background: #eef4ff;
  border: 1px solid rgba(17, 24, 39, 0.05);
  border-radius: 28px;
  padding: 24px;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  color: #1c1c1c;
  outline: none;
}

.review-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 16px;
}

.review-form-actions {
  display: flex;
  justify-content: center;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1100px) {
  .review-card {
    flex: 0 0 calc(33.333% - 12px);
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 36px 14px 56px;
  }

  .reviews-slider-wrap {
    padding: 0 20px;
  }

  .reviews-slider-wrap::before,
  .reviews-slider-wrap::after {
    width: 45px;
  }

  .reviews-nav {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .reviews-prev {
    left: 0;
  }

  .reviews-next {
    right: 0;
  }

  .review-card {
    flex: 0 0 82%;
    min-width: 82%;
    border-radius: 20px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .review-form {
    border-radius: 20px;
    padding: 18px;
  }

  .review-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
}


/* ===================================
   FOOTER
=================================== */

.site-footer {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  background: linear-gradient(180deg, #edf2f8 0%, #e9eef5 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);

  padding: 52px 0 22px;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.72;
  color: #4b5563;
  margin: 0 0 22px;
}

.footer-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #2f80ed;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(47, 128, 237, 0.22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.footer-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(47, 128, 237, 0.28);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #4b5563;
  font-size: 15px;
  margin-bottom: 12px;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #2f80ed;
  transform: translateX(2px);
}

.footer-contact p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #4b5563;
}

.footer-phone-link {
  display: inline-block;
  text-decoration: none;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 4px;
  transition: color .2s ease;
}

.footer-phone-link:hover {
  color: #2f80ed;
}

.footer-support-note {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.footer-divider {
  margin: 34px 0 18px;
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

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

.footer-bottom-links a {
  text-decoration: none;
  font-size: 14px;
  color: #6b7280;
  transition: color .2s ease;
}

.footer-bottom-links a:hover {
  color: #2f80ed;
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.55;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .footer-inner {
    padding: 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-phone-link {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 38px 0 18px;
    margin-top: 34px;
  }

  .footer-inner {
    padding: 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .footer-phone-link {
    font-size: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    gap: 12px;
  }
}







/* =========================
   MOBILE FULL WIDTH GLOSSY BLACK CALL BAR
========================= */

.mobile-call-glassbar {
  display: none;
}

@media (max-width:768px) {

  .mobile-call-glassbar {

    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;

    height: 60px;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 999px;

    text-decoration: none;

    color: #ffffff;

    font-weight: 600;
    font-size: 17px;

    /* GLOSSY BLACK */
    background:
      linear-gradient(180deg, #2a2a2a 0%, #0a0a0a 45%, #000000 100%);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    /* DEPTH SHADOW */
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.45),
      0 6px 16px rgba(0, 0, 0, 0.35),
      inset 0 2px 0 rgba(255, 255, 255, 0.10),
      inset 0 -6px 12px rgba(0, 0, 0, 0.55);

    overflow: hidden;

    transition: all .25s ease;

  }


  /* TOP GLOSS REFLECTION */

  .mobile-call-glassbar::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;

    border-radius: 999px 999px 0 0;

    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.30),
        rgba(255, 255, 255, 0.08),
        transparent);

    pointer-events: none;

  }


  /* MOVING SHINE */

  .mobile-call-glassbar::after {

    content: "";

    position: absolute;

    top: -40%;
    left: -35%;

    width: 30%;
    height: 180%;

    transform: rotate(20deg);

    background:
      linear-gradient(90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0));

    animation: mobileCallShine 3s ease-in-out infinite;

    pointer-events: none;

  }


  /* ICON CIRCLE */

  .mobile-call-glassbar-icon {

    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
      linear-gradient(180deg, #3a3a3a, #111);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.20),
      0 4px 10px rgba(0, 0, 0, 0.35);

    position: relative;
    z-index: 2;

  }

  .mobile-call-glassbar-icon svg {

    width: 17px;
    height: 17px;

    color: #ffffff;

    display: block;

  }


  /* TEXT */

  .mobile-call-glassbar-text {

    color: #ffffff;
    font-weight: 600;
    letter-spacing: .02em;

    position: relative;
    z-index: 2;

  }


  /* HOVER / PRESS EFFECT */

  .mobile-call-glassbar:hover {

    transform: translateY(-2px);

    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.55),
      0 8px 18px rgba(0, 0, 0, 0.40),
      inset 0 2px 0 rgba(255, 255, 255, 0.12),
      inset 0 -8px 16px rgba(0, 0, 0, 0.65);

  }


  /* SPACE FOR BUTTON */

  body {
    padding-bottom: 85px;
  }

}


/* SMALL PHONES */

@media (max-width:480px) {

  .mobile-call-glassbar {

    left: 12px;
    right: 12px;
    bottom: 12px;

    height: 56px;
    font-size: 16px;

  }

  .mobile-call-glassbar-icon {

    width: 28px;
    height: 28px;

  }

  .mobile-call-glassbar-icon svg {

    width: 16px;
    height: 16px;

  }

}


/* SHINE ANIMATION */

@keyframes mobileCallShine {

  0% {
    left: -40%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    left: 120%;
    opacity: 0;
  }

  100% {
    left: 120%;
    opacity: 0;
  }

}








/* ===============================
   HERO COUNTDOWN
================================ */

.hero-heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding: 14px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.30);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.countdown-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.countdown-unit {
  min-width: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-unit strong {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.countdown-unit small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.count-separator {
  font-size: 24px;
  font-weight: 800;
  color: #fffdfd;
  transform: translateY(-4px);
  opacity: 0.75;
}


/* MOBILE COUNTDOWN FIX */

@media (max-width:768px) {

  .hero-heading-wrap {
    gap: 10px;
  }

  .hero-countdown {
    padding: 10px 14px;
    border-radius: 18px;
  }

  .countdown-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .countdown-timer {
    gap: 6px;
  }

  .countdown-unit {
    min-width: 40px;
  }

  .countdown-unit strong {
    font-size: 20px;
  }

  .countdown-unit small {
    font-size: 8px;
    margin-top: 2px;
  }

  .count-separator {
    font-size: 16px;
    transform: translateY(-2px);
  }

}





/* =========================
   FARE POPUP BACKDROP
========================= */

#farePopupBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 9998;
}

#farePopupBackdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   FARE POPUP
========================= */

#farePopup {
  position: fixed;
  left: 50%;
  bottom: -220px;
  transform: translateX(-50%) scale(0.72);
  width: 360px;
  max-width: calc(100vw - 40px);

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);

  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 22px;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);

  padding: 26px 24px 26px;
  z-index: 9999;
  opacity: 0;

  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    bottom .45s cubic-bezier(.22, 1, .36, 1),
    opacity .3s ease;

  overflow: hidden;
  isolation: isolate;
}

#farePopup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

#farePopup.show {
  bottom: 50%;
  transform: translate(-50%, 50%) scale(1);
  opacity: 1;
}

#farePopup.hide {
  bottom: 18px;
  transform: translate(-50%, 0) scale(0.18);
  opacity: 0;
}

/* =========================
   CLOSE BUTTON
========================= */

#farePopupClose {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;

  border: none;
  background: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.58);
  transition: color .2s ease, transform .2s ease;
}

#farePopupClose:hover {
  color: rgba(0, 0, 0, 0.9);
  transform: scale(1.06);
}

/* =========================
   POPUP CONTENT
========================= */

.popup-content {
  position: relative;
  z-index: 2;
}

.popup-alert {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ff0000;
}

.popup-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  color: #111;
}

.popup-content p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #3f3f46;
}

.popup-content p strong {
  color: #111;
}

.popup-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.popup-points li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.4;
  color: #111;
}

/* =========================
   POPUP CTA
========================= */

.popup-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 54px;
  width: 100%;

  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;

  border-radius: 12px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);

  transition: transform .2s ease, box-shadow .2s ease;
}

.popup-call-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
