:root {
  --navy: #10315f;
  --navy-deep: #0a2142;
  --green: #116b1f;
  --gold: #d59c2a;
  --gold-soft: #f3e4bb;
  --text: #182231;
  --muted: #5f6d7c;
  --line: #d8dee6;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --shadow: 0 24px 60px rgba(16, 49, 95, 0.12);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 35%);
}

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

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.topbar-inner {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.7rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 49, 95, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand strong,
.brand span,
.site-nav a,
.button,
h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.85rem;
}

.brand-logo {
  width: 170px;
  max-width: 100%;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
}

.site-nav a.active {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(16, 49, 95, 0.18);
}

.button-small {
  padding: 0.75rem 1rem;
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(16, 49, 95, 0.15);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(213, 156, 42, 0.25), transparent 32%),
    radial-gradient(circle at right center, rgba(17, 107, 31, 0.18), transparent 28%);
  pointer-events: none;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.hero-copy h1,
.page-hero h1,
.thank-you h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.narrow {
  max-width: 46rem;
}

.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--green);
  margin-bottom: 0.85rem;
}

.card-label {
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-points,
.check-list,
.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.hero-points li,
.check-list li,
.contact-list li,
.footer-links li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
}

.hero-points li::before,
.check-list li::before,
.contact-list li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 49, 95, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.8rem;
}

.inquiry-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: #fff;
}

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

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

.hidden {
  display: none;
}

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

.section {
  padding: 4.8rem 0;
}

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

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.cta-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

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

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

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

.feature-card h3,
.benefit-card h3,
.destination-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.feature-card,
.benefit-card {
  min-height: 220px;
}

.destination-card {
  min-height: 240px;
  display: flex;
  align-items: end;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.destination-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.destination-dubai {
  background-image: linear-gradient(180deg, transparent, rgba(10, 33, 66, 0.88)), url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1200&q=80");
}

.destination-jeddah {
  background-image: linear-gradient(180deg, transparent, rgba(10, 33, 66, 0.88)), url("https://images.unsplash.com/photo-1584551246679-0daf3d275d0f?auto=format&fit=crop&w=1200&q=80");
}

.destination-istanbul {
  background-image: linear-gradient(180deg, transparent, rgba(10, 33, 66, 0.88)), url("https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=1200&q=80");
}

.destination-london {
  background-image: linear-gradient(180deg, transparent, rgba(10, 33, 66, 0.88)), url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1200&q=80");
}

.destination-bangkok {
  background-image: linear-gradient(180deg, transparent, rgba(10, 33, 66, 0.88)), url("https://images.unsplash.com/photo-1508009603885-50cf7c579365?auto=format&fit=crop&w=1200&q=80");
}

.destination-kuala {
  background-image: linear-gradient(180deg, transparent, rgba(10, 33, 66, 0.88)), url("https://images.unsplash.com/photo-1596422846543-75c6fc197f07?auto=format&fit=crop&w=1200&q=80");
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: #fff;
  border-radius: calc(var(--radius) + 10px);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 4.8rem 0 3rem;
}

.page-hero-flights,
.page-hero-about,
.page-hero-contact,
.page-hero-holidays,
.page-hero-umrah,
.page-hero-visa {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.96)),
    linear-gradient(135deg, rgba(17, 107, 31, 0.12), rgba(16, 49, 95, 0.18));
}

.stack {
  display: grid;
  gap: 1.35rem;
}

.route-list {
  display: grid;
  gap: 1rem;
}

.route-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.route-list span {
  color: var(--muted);
  text-align: right;
}

.site-footer {
  padding: 3rem 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.brand-footer strong,
.brand-footer span,
.site-footer h3,
.site-footer a {
  color: inherit;
}

.brand-footer .brand-logo {
  width: 170px;
  height: 50px;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.thank-you-card {
  max-width: 760px;
  text-align: center;
}

.admin-card {
  max-width: 1080px;
  margin: 0 auto;
}

.admin-login {
  max-width: 420px;
}

.admin-panel {
  margin-top: 2rem;
}

.admin-metrics h2 {
  margin: 0.25rem 0;
  font-size: 2rem;
}

.admin-sections {
  margin-top: 1.5rem;
}

.metric-card-live {
  background: linear-gradient(180deg, #f7fbff, #eef6ff);
}

.trend-list {
  display: grid;
  gap: 0.85rem;
}

.trend-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.trend-item span {
  color: var(--muted);
  text-align: right;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-grid,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    color: var(--text);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 49, 95, 0.08);
    border-radius: 22px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .split,
  .split-3,
  .grid-2,
  .grid-3,
  .grid-4,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .route-list div {
    flex-direction: column;
  }

  .trend-item {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .card,
  .cta-banner {
    padding: 1.3rem;
  }
}
