:root {
  --navy: #084070;
  --blue: #0b5f92;
  --sky: #147ea8;
  --ink: #090909;
  --muted: #343a42;
  --line: #e8e1d6;
  --soft: #fff7ea;
  --white: #fffefb;
  --brand-tint: #eef8fc;
  --cream-deep: #f7efe2;
  --success: #157a54;
  --danger: #a73535;
  --shadow: 0 22px 60px rgba(8, 64, 112, 0.16);
  --shadow-soft: 0 16px 42px rgba(8, 64, 112, 0.1);
  --shadow-premium: 0 32px 90px rgba(8, 64, 112, 0.18);
  --section-space: clamp(64px, 8vw, 112px);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.page {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(20, 126, 168, 0.1), transparent 34rem),
    linear-gradient(180deg, var(--white) 0%, #fffaf1 52%, var(--soft) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(232, 225, 214, 0.92);
  background: rgba(255, 254, 251, 0.96);
  box-shadow: 0 12px 34px rgba(8, 64, 112, 0.1);
  backdrop-filter: blur(10px);
}

.site-header .brand {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(232, 225, 214, 0.95);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 64, 112, 0.1);
}

.site-header .brand img {
  width: min(242px, 52vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--brand-tint);
  transform: translateY(-1px);
}

.site-nav a:focus-visible,
.button:focus-visible,
.call-button:focus-visible,
.mobile-call-cta:focus-visible,
.contact-link:focus-visible,
.directions-link:focus-visible,
.form-field:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(8, 64, 112, 0.26);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 820px);
  display: grid;
  place-items: center;
  padding: 28px clamp(20px, 5vw, 64px) 56px;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(8, 64, 112, 0.78) 0%, rgba(8, 64, 112, 0.58) 46%, rgba(8, 64, 112, 0.9) 100%),
    url("storefront-hero.jpg") center 42% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 254, 251, 0), rgba(255, 247, 234, 0.98));
}

.hero-content {
  width: min(920px, 100%);
  animation: slideUp 880ms 160ms ease both;
}

.subhero {
  position: relative;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 72px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(8, 64, 112, 0.86), rgba(8, 64, 112, 0.54)),
    url("jfk-contact-bg.png") center / cover no-repeat;
}

.umrah-hero {
  background:
    linear-gradient(120deg, rgba(8, 64, 112, 0.86), rgba(8, 64, 112, 0.5)),
    url("makkah-umrah-experience.jpg") center / cover no-repeat;
}

.subhero .section-inner {
  width: min(940px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #f5fbff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p,
.subhero p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2.1vw, 1.32rem);
  text-wrap: balance;
}

section {
  padding: var(--section-space) clamp(18px, 4vw, 72px);
}

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

.narrow {
  width: min(960px, 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
  animation: fadeIn 700ms ease both;
}

.section-heading h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.soft-section {
  background: var(--soft);
}

.services {
  background: var(--soft);
}

.button,
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 148px;
  padding: 0 25px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 16px 34px rgba(8, 64, 112, 0.32);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, background 180ms ease;
}

.button:hover,
.call-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 22px 42px rgba(8, 64, 112, 0.38);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(8, 64, 112, 0.14);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.airline-strip {
  padding-block: clamp(34px, 5vw, 54px);
  background: var(--white);
}

.airline-row {
  display: grid;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.94);
  box-shadow: var(--shadow-soft);
  animation: slideUp 720ms ease both;
}

.airline-title {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.airline-marquee {
  position: relative;
  overflow: hidden;
  padding-block: 4px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.airline-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 42s linear infinite;
}

.airline-marquee:hover .airline-track {
  animation-play-state: paused;
}

.airline-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 72px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(8, 64, 112, 0.07);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.airline-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 64, 112, 0.34);
  box-shadow: 0 14px 26px rgba(8, 64, 112, 0.12);
}

.airline-logo-card img {
  max-width: 118px;
  max-height: 42px;
  object-fit: contain;
}

.airline-logo-card::after {
  content: attr(data-name);
  display: none;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

.airline-logo-card.logo-fallback img {
  display: none;
}

.airline-logo-card.logo-fallback::after {
  display: block;
}

.service-grid,
.feature-grid,
.contact-grid,
.hotel-grid,
.package-grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

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

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

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

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

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

.service-card,
.content-card,
.contact-item,
.hotel-card,
.price-card,
.faq-item {
  position: relative;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hotel-card.hotel-card-with-image {
  overflow: hidden;
  padding: 0;
}

.hotel-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.hotel-content {
  padding: clamp(22px, 3vw, 34px);
}

.photo-card figcaption {
  padding: 15px 16px 17px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.photo-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
}

.rate-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(8, 64, 112, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(238, 248, 252, 0.98), rgba(255, 254, 251, 0.98));
  box-shadow: var(--shadow-soft);
}

.rate-panel h2,
.rate-panel h3 {
  margin-bottom: 4px;
  color: var(--navy);
}

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

.rate-option {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.rate-option strong {
  display: block;
  color: var(--navy);
}

.rate-option span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card {
  min-height: 292px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  animation: slideUp 760ms ease both;
}

.service-card:nth-child(2) {
  animation-delay: 120ms;
}

.service-card::before,
.content-card.accent::before,
.hotel-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.service-card::before {
  transform: scaleX(0.58);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(8, 64, 112, 0.36);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--brand-tint);
}

.icon-wrap svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-card h3,
.content-card h2,
.content-card h3,
.hotel-card h3,
.price-card h3,
.faq-item h2,
.faq-item h3 {
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: 0;
}

.service-card h3,
.hotel-card h3,
.price-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.content-card p,
.content-card li,
.service-card p,
.hotel-card p,
.faq-item p {
  color: var(--muted);
}

.content-card p:last-child,
.service-card p:last-child,
.hotel-card p:last-child,
.faq-item p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.list-clean {
  margin: 0;
  padding-left: 20px;
}

.list-clean li {
  margin-bottom: 8px;
}

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

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.9);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 64, 112, 0.09);
}

.price-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-table td {
  color: var(--muted);
  font-weight: 700;
}

.price-table td strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--brand-tint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(8, 64, 112, 0.52), rgba(8, 64, 112, 0.18) 48%, rgba(8, 64, 112, 0.5)),
    url("jfk-contact-bg.png") center / cover no-repeat;
}

.contact-panel {
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(255, 254, 251, 0.64);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.74);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(5px);
  animation: fadeIn 760ms ease both;
}

.contact-item {
  border-color: rgba(255, 254, 251, 0.72);
  background: rgba(255, 254, 251, 0.82);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link,
.contact-address {
  color: var(--navy);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-link {
  display: inline-block;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-link:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.email-list {
  display: grid;
  gap: 6px;
}

.map-card {
  margin-top: 22px;
  border: 1px solid rgba(255, 254, 251, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.82);
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.94) contrast(0.98);
}

.map-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 254, 251, 0.74);
  background: rgba(255, 254, 251, 0.88);
}

.map-meta strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.3;
}

.map-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.directions-link {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.directions-link:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.form-field,
textarea,
select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field:focus,
textarea:focus,
select:focus {
  border-color: rgba(8, 64, 112, 0.52);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 64, 112, 0.1);
}

.contact-form.was-validated .form-field:invalid,
.contact-form.was-validated textarea:invalid,
.contact-form.was-validated select:invalid {
  border-color: rgba(167, 53, 53, 0.44);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--success);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--danger);
}

.thank-you-hero {
  background:
    linear-gradient(120deg, rgba(8, 64, 112, 0.88), rgba(8, 64, 112, 0.44)),
    url("makkah-umrah-experience.jpg") center / cover no-repeat;
}

.confirmation-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 251, 0.94);
  box-shadow: var(--shadow-premium);
  text-align: center;
}

.confirmation-card h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.confirmation-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.confirmation-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  box-shadow: 0 16px 34px rgba(21, 122, 84, 0.26);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-tint);
  text-align: left;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--navy);
}

.trust-row span {
  color: var(--muted);
}

.cta-band {
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.cta-band h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.12;
}

.cta-band p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.86);
}

footer {
  padding: 22px clamp(20px, 5vw, 64px) 34px;
  color: var(--muted);
  background: var(--white);
  text-align: center;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--blue);
}

.whatsapp-widget {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 36px rgba(8, 64, 112, 0.22);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  animation: slideUp 780ms 520ms ease both;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(8, 64, 112, 0.28);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .hero,
  .contact,
  .subhero {
    background-attachment: fixed, fixed;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: column;
  }

  .site-nav {
    justify-content: center;
  }

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

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

@media (max-width: 860px) {
  .hero {
    min-height: 78vh;
    padding-bottom: 48px;
  }

  .airline-logo-card {
    width: 138px;
    height: 66px;
    padding: 12px 16px;
  }

  .service-grid,
  .hotel-grid,
  .package-grid,
  .photo-grid,
  .rate-options {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    padding-inline: 14px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    min-height: 660px;
    padding-inline: 18px;
    background-position: center top;
  }

  .feature-grid,
  .contact-grid,
  .form-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-item,
  .service-card,
  .content-card,
  .hotel-card,
  .price-card,
  .faq-item {
    padding: 22px;
  }

  .map-frame iframe {
    height: 300px;
  }

  .map-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .trust-row .button {
    width: 100%;
  }

  .directions-link {
    width: 100%;
    text-align: center;
  }

  .whatsapp-widget {
    left: 16px;
    bottom: 16px;
    min-height: 54px;
    width: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-widget span:not(.whatsapp-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .mobile-call-cta {
    position: fixed;
    right: 88px;
    bottom: 16px;
    left: 88px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    box-shadow: 0 18px 44px rgba(8, 64, 112, 0.32);
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transform: translateY(0);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  }

  .mobile-call-cta:hover,
  .mobile-call-cta:focus-visible {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 22px 54px rgba(8, 64, 112, 0.4);
    transform: translateY(-2px);
  }

  .mobile-call-cta svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
  }
}

@media (max-width: 420px) {
  .site-nav {
    grid-template-columns: 1fr;
  }

  .button,
  .call-button {
    width: 100%;
  }

  .mobile-call-cta {
    right: 82px;
    left: 82px;
    padding: 0 12px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
