:root {
  --orange: #ff6600;
  --orange-dark: #de5200;
  --burgundy: #990000;
  --charcoal: #333333;
  --grey: #999999;
  --paper: #f7f7f7;
  --cream: #f7f7e7;
  --white: #ffffff;
  --line: #e7e1dc;
  --shadow: 0 18px 45px rgba(51, 51, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Ubuntu", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: 0 5px 22px rgba(51, 51, 51, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 13px);
  gap: 4px;
}

.brand-mark span {
  width: 13px;
  height: 13px;
  background: var(--orange);
  border-radius: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #4d4d4d;
  font-weight: 500;
}

.main-nav a {
  padding: 12px 4px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--burgundy);
  border-bottom-color: var(--orange);
}

.header-action,
.primary-btn,
.search-form button,
.popup-form button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
  font-weight: 700;
  background: var(--orange);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.25);
}

.header-action:hover,
.primary-btn:hover,
.search-form button:hover,
.popup-form button:hover,
.contact-form button:hover {
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 72px 6vw 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(51, 24, 12, 0.82), rgba(153, 0, 0, 0.62), rgba(51, 51, 51, 0.12)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.search-panel {
  max-width: 1050px;
  color: var(--charcoal);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trip-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trip-tabs button {
  min-height: 38px;
  padding: 0 16px;
  color: var(--burgundy);
  font-weight: 700;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
}

.trip-tabs button.active {
  color: var(--white);
  background: var(--burgundy);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  padding: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.popup-form label {
  color: #555;
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.contact-form input,
.contact-form textarea,
.popup-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.search-message {
  min-height: 22px;
  margin: 0 18px 18px;
  color: var(--burgundy);
  font-weight: 700;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-row article,
.deal-card,
.airline-card,
.destination-card,
.service-card,
.info-card,
.legal-card {
  background: var(--white);
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(51, 51, 51, 0.08);
}

.trust-row article {
  padding: 18px;
  color: var(--charcoal);
}

.trust-row strong {
  display: block;
  margin-bottom: 5px;
  color: var(--burgundy);
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--white);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.section-header h2,
.page-hero h1 {
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.section-header p {
  max-width: 600px;
  margin: 0;
  line-height: 1.55;
}

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

.deal-card,
.airline-card,
.service-card,
.info-card,
.legal-card {
  padding: 22px;
}

.deal-card .route {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: 1.25rem;
  font-weight: 700;
}

.price {
  display: block;
  margin: 18px 0;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 700;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 7px 10px;
  color: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 700;
  background: var(--cream);
  border-radius: 999px;
}

.destination-card {
  min-height: 280px;
  display: flex;
  align-items: end;
  padding: 22px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.destination-card div {
  width: 100%;
  padding-top: 90px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
}

.destination-card h3 {
  margin: 0 0 6px;
  font-size: 1.65rem;
}

.page-hero {
  padding: 62px 6vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(153, 0, 0, 0.88), rgba(255, 102, 0, 0.72)),
    url("https://images.unsplash.com/photo-1529074963764-98f45c47344b?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  max-width: 700px;
  font-size: 1.15rem;
  line-height: 1.6;
}

.content-list {
  display: grid;
  gap: 14px;
}

.content-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-list h2,
.service-card h2,
.info-card h2,
.legal-card h2 {
  margin: 0 0 8px;
  color: var(--burgundy);
  font-size: 1.25rem;
}

.content-list p,
.service-card p,
.info-card p,
.legal-card p {
  margin: 0;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 680px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #555;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.site-footer {
  padding: 42px 6vw 24px;
  color: var(--white);
  background: var(--charcoal);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  color: var(--white);
}

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

.footer-columns h2 {
  color: var(--orange);
  font-size: 1rem;
}

.footer-columns a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-note {
  width: min(1180px, 100%);
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 0, 0, 0.62);
}

.popup-backdrop[hidden] {
  display: none;
}

.popup {
  position: relative;
  width: min(540px, 100%);
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.popup::before {
  content: "";
  display: block;
  height: 8px;
  margin: -30px -30px 24px;
  background: linear-gradient(90deg, var(--orange), var(--burgundy));
  border-radius: 8px 8px 0 0;
}

.popup h2 {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.05;
}

.popup p {
  line-height: 1.55;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: var(--charcoal);
  font-size: 2rem;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.popup-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 7px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  max-width: 360px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 5vw;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-action {
    display: none;
    width: 100%;
  }

  .site-header.open .main-nav,
  .site-header.open .header-action {
    display: flex;
  }

  .site-header.open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .search-form,
  .grid,
  .trust-row,
  .footer-top,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .search-form button {
    width: 100%;
  }

  .section-header,
  .content-list article {
    display: block;
  }

  .content-list article .price {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding: 48px 5vw 38px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .section,
  .page-hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .popup-form div {
    grid-template-columns: 1fr;
  }
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 20px;
  color: var(--white);
  font-weight: 700;
  background: var(--orange);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.25);
}

.call-btn:hover {
  background: var(--orange-dark);
}
 
.agent-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 12px auto;
    border: 3px solid #ea6919;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.phone-number {
  text-align: center;
  margin-top: 10px;
  font-size: 28px;
}