:root {
  --text: #0f172a;
  --muted: #64748b;
  --blue: #2563eb;
  --blue-soft: #93c5fd;
  --bg: #f1f5f9;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

.hidden {
  display: none !important;
}

.container {
  width: min(1400px, 98vw);
  margin: 0 auto;
}

.container.small {
  width: min(1100px, 98vw);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 4vw 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 18px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #fff;
  position: relative;
}

.brand-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.brand-icon i {
  position: relative;
  z-index: 1;
}

.brand-text span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  transition: 0.2s ease;
}

.nav-link.active {
  background: #eff6ff;
  color: var(--blue);
}

.nav-link:hover {
  background: #eef2ff;
  color: #1d4ed8;
}

.nav-link.hot {
  position: relative;
}

.nav-link.hot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  right: 6px;
}

.nav-dropdown {
  position: relative;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 200px;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: scaleY(0.95);
  transform-origin: top;
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}

.airline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  color: var(--text);
}

.airline img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f8fafc;
  padding: 4px;
}

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

.support {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  color: var(--muted);
  background: #eff6ff;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #bfdbfe;
  transition: 0.2s ease;
}

.support strong {
  color: #1d4ed8;
}

.support:hover {
  background: #dbeafe;
  border-color: #93c5fd;
}

.premium {
  background: #fff7ed;
  color: #d97706;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.menu-btn {
  border: none;
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: none;
  transition: 0.2s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  width: 100%;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #475569;
  transition: 0.2s ease;
}

.mobile-link.active {
  background: #eff6ff;
  color: var(--blue);
  font-weight: 700;
}

.mobile-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #94a3b8;
}

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-grid a {
  background: #f8fafc;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}

.mobile-premium,
.mobile-call {
  background: #fff7ed;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

main {
  padding-top: 0;
}

.hero {
  position: relative;
  min-height: 90vh;
  padding: 140px 4vw 80px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero-bg {
  background-image: url("img/photo-1469854523086-cc02fe5d8800.jpeg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 18px 0 10px;
}

.hero h1 span {
  color: var(--blue-soft);
}

.hero p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.85);
}

.search {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: var(--text);
  text-align: left;
  backdrop-filter: blur(6px);
}

.search-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 24px 24px 0 0;
}

.search-top label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: #475569;
  font-size: 14px;
}

.search-top input[type="radio"] {
  accent-color: var(--blue);
}

.cabin {
  margin-left: auto;
  position: relative;
}

.cabin-btn {
  border: none;
  background: none;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
}

.cabin-menu {
  position: absolute;
  top: 120%;
  right: -35;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  padding: 8px;
  min-width: 145px;
}

.cabin-menu button {
  border: none;
  background: none;
  padding: 8px;
  text-align: left;
  border-radius: 8px;
}

.search-grid {
  display: grid;
  grid-template-columns: 1.4fr auto 1.4fr 1fr 1fr 1.2fr auto;
  gap: 12px;
  padding: 16px;
  align-items: end;
}

.field {
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px;
  position: relative;
  transition: 0.2s ease;
}

.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}

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

.input input {
  border: none;
  background: none;
  width: 100%;
  font-weight: 700;
  outline: none;
}

.results {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: 220px;
  overflow-y: auto;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.swap {
  border: none;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.travelers {
  position: relative;
}

.travelers-btn {
  border: none;
  background: none;
  width: 100%;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.travelers-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: grid;
  gap: 12px;
  min-width: 220px;
  z-index: 10;
}

.counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-controls {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.counter-controls button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #cbd5f5;
  background: #fff;
}

.done {
  border: none;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
}

.search-btn {
  border: none;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.section {
  padding: 80px 3vw;
  background: #fff;
}

.section.alt {
  background: #f8fafc;
}

.call-strip {
  background: #fff;
  padding: 24px 6vw 0;
}

.call-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #eff6ff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.call-text h2 {
  margin: 4px 0 6px;
  font-size: 22px;
}

.call-text p {
  margin: 0;
  color: var(--muted);
}

.call-kicker {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

.call-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.2s ease;
}

.call-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 28px;
  gap: 12px;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

.link-more {
  font-weight: 600;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.card.feature h3 {
  margin: 12px 0 8px;
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  color: #fff;
}

.icon.blue {
  background: #2563eb;
}
.icon.pink {
  background: #db2777;
}
.icon.green {
  background: #16a34a;
}
.icon.purple {
  background: #7c3aed;
}
.icon.orange {
  background: #f97316;
}
.icon.teal {
  background: #0d9488;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: 0.25s ease;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.3s ease;
}

.image-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-info span {
  color: #facc15;
  font-weight: 700;
}

.image-info strong {
  color: #fff;
  background: rgba(15, 23, 42, 0.8);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.image-card.modern {
  position: relative;
  border-radius: 22px;
}

.image-card.modern img {
  height: 300px;
}

.image-card.modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0.8) 100%);
}

.image-card.modern .image-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  color: #fff;
  z-index: 1;
}

.image-card.modern .image-info h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.image-card.modern .image-info div {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.image-card.modern .image-info span {
  color: #facc15;
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.image-card.modern .image-info strong {
  background: rgba(15, 23, 42, 0.55);
}

.deals {
  border-top: 1px solid #e2e8f0;
}

.deals-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.timer {
  background: #fee2e2;
  color: #dc2626;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.deal-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  transition: 0.2s ease;
}

.deal-card img {
  width: 120px;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
}

.deal-body {
  display: grid;
  gap: 6px;
}

.deal-card h3 {
  margin: 0;
  font-size: 18px;
}

.deal-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
}

.deal-price s {
  color: #94a3b8;
  font-weight: 500;
}

.deal-price strong {
  color: #ef4444;
  font-size: 18px;
}

.deal-footer {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid #eef2f7;
  padding-top: 10px;
  margin-top: 4px;
}

.deal-footer a {
  color: var(--blue);
  font-weight: 700;
}

.tag {
  display: inline-block;
  padding: 4px 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  justify-self: start;
  width: fit-content;
}

.tag.blue {
  background: #dbeafe;
  color: #2563eb;
}
.tag.green {
  background: #dcfce7;
  color: #16a34a;
}
.tag.orange {
  background: #ffedd5;
  color: #ea580c;
}
.tag.purple {
  background: #ede9fe;
  color: #7c3aed;
}
.tag.cyan {
  background: #cffafe;
  color: #0891b2;
}
.tag.yellow {
  background: #fef9c3;
  color: #ca8a04;
}

.center {
  text-align: center;
  margin-bottom: 28px;
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.stars {
  color: #facc15;
  margin-bottom: 10px;
}

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

.person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.article {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.article-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

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

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0;
}

.read-more {
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-body {
  padding: 0 18px 14px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-body {
  display: block;
}

.cta {
  background: #2f66e4;
  color: #fff;
  padding: 90px 4vw;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner .fa-paper-plane {
  font-size: 44px;
  margin-bottom: 10px;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta::before {
  width: 220px;
  height: 220px;
  left: -80px;
  top: -80px;
}

.cta::after {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -120px;
}

.cta-form {
  display: flex;
  gap: 10px;
  margin: 18px auto 8px;
  max-width: 520px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  flex-wrap: nowrap;
}

.cta-form input {
  flex: 1;
  padding: 12px 16px 12px 42px;
  border-radius: 999px;
  border: none;
  min-width: 0;
}

.cta-form button {
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  white-space: nowrap;
}

.cta-form::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 14px;
}

.footer {
  background: radial-gradient(circle at top left, #1e293b 0%, #0b1220 45%, #0a0f1c 100%);
  color: #fff;
  padding: 70px 4vw 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer a {
  color: #cbd5f5;
  display: block;
  margin: 6px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-brand span span {
  color: #3b82f6;
}

.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.footer h4 {
  margin: 0 0 10px;
  font-size: 16px;
}

.footer p {
  color: #9fb2d0;
  line-height: 1.6;
  margin: 0;
}

.footer-form {
  display: grid;
  gap: 10px;
}

.footer-form input,
.footer-form button {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
}

.footer-form button {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  transition: 0.2s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9fb2d0;
  width: min(1400px, 98vw);
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  padding: 140px 4vw 60px;
  background: radial-gradient(circle at top, #e0edff 0%, #f6f8ff 45%, #ffffff 100%);
  text-align: center;
}

.page-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.page-section {
  padding: 70px 4vw;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.policy-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.policy-card h3 {
  margin-top: 0;
}

.policy-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

.payments i {
  font-size: 22px;
  margin-left: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(32px, 14vh, 160px);
  padding-left: 16px;
  padding-right: 16px;
  z-index: 2000;
}

body.popup-low .modal {
  padding-top: clamp(48px, 18vh, 220px);
}

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

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0;
  background: #fff;
  color: var(--text);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  transform: scale(0.95) translateY(10px);
  transition: 0.2s ease;
}

.modal.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
}

.modal-header {
  text-align: center;
  background: #2f66f0;
  color: #fff;
  padding: 22px 20px 16px;
}

.modal-header h3 {
  margin: 12px 0 6px;
  font-size: 18px;
}

.modal-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.modal-body {
  text-align: center;
  padding: 18px 20px 22px;
  color: #475569;
}

.modal-body p {
  margin: 0 0 14px;
  font-size: 14px;
}

.modal-call {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: #2f66f0;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  margin-top: 6px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(47, 102, 240, 0.3);
}

.modal-later {
  border: none;
  background: none;
  color: #94a3b8;
  margin-top: 14px;
  font-weight: 600;
}

.support-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
  transition: 0.2s ease;
}

.premium:hover,
.mobile-premium:hover,
.mobile-call:hover,
.menu-btn:hover,
.support-fab:hover,
.cta-form button:hover,
.search-btn:hover,
.swap:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.field:hover {
  background: #eef2ff;
}

.card:hover,
.deal-card:hover,
.testimonial:hover,
.article:hover,
.image-card:hover {
  transform: translateY(-4px);
}

.image-card:hover img,
.deal-card:hover img,
.article:hover img {
  transform: scale(1.06);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: grid;
    place-items: center;
  }
  .support {
    display: none;
  }
}

@media (max-width: 900px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-btn {
    grid-column: 1 / -1;
  }
  .swap {
    display: none;
  }
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .deals-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .container,
  .container.small {
    width: min(520px, 94vw);
    margin: 0 auto;
  }
  .nav {
    flex-wrap: wrap;
    padding: 10px 14px;
    border-radius: 16px;
  }
  .nav-actions {
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
  }
  .mobile-menu {
    display: none;
    flex-basis: 100%;
  }
  .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .brand-text {
    font-size: 15px;
  }
  .premium {
    display: none;
  }
  .menu-btn {
    background: none;
    margin-left: auto;
  }
  .hero {
    min-height: auto;
    padding: 120px 6vw 60px;
  }
  .search-top {
    gap: 10px;
  }
  .cabin {
    width: 100%;
    margin-left: 0;
  }
  .cabin-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cabin-menu {
    left: 0;
    right: auto;
    min-width: 100%;
    z-index: 10;
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 4vw;
  }
  .call-strip {
    padding: 16px 6vw 0;
  }
  .call-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .call-action {
    width: 100%;
    justify-content: center;
  }
  .grid {
    gap: 18px;
    justify-items: center;
    justify-content: center;
  }
  .grid > * {
    width: min(520px, 100%);
  }
  .image-card,
  .deal-card,
  .article,
  .testimonial,
  .card {
    margin: 0 auto;
  }
  .image-card img {
    height: 220px;
  }
  .image-card.modern img {
    height: 240px;
  }
  .image-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .deal-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .deal-card img {
    width: 100%;
    height: 160px;
  }
  .deal-footer {
    grid-column: 1;
  }
  .cta-form {
    flex-direction: row;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
  }
  .cta-form input,
  .cta-form button {
    width: auto;
  }
  .cta-form input {
    flex: 1;
    min-width: 0;
  }
  .footer {
    padding: 56px 6vw 28px;
  }
  .footer-form {
    justify-items: center;
    text-align: center;
  }
  .footer-form input,
  .footer-form button {
    max-width: 320px;
  }
  .footer-form input,
  .footer-form button {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .support-fab {
    right: 16px;
    bottom: 16px;
  }
}
