﻿:root {
  --bg: #f4f7f6;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --line: rgba(12, 34, 52, 0.12);
  --ink: #102234;
  --muted: #5d6b77;
  --brand: #0d746f;
  --brand-deep: #0b4f63;
  --accent: #d8a24c;
  --shadow: 0 24px 64px rgba(10, 33, 50, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(216, 162, 76, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(13, 116, 111, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #fff8ed 0%, #f7faf9 42%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 250, 249, 0.84);
  box-shadow: 0 10px 30px rgba(10, 33, 50, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 33, 50, 0.1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
}

.site-nav .nav-provider-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.78;
}

.site-nav .nav-provider-link:hover,
.site-nav .nav-provider-link:focus-visible {
  color: var(--ink);
  opacity: 1;
}

.nav-request-mobile {
  display: none;
}

.site-nav .nav-request-link {
  color: #ffffff;
  background: linear-gradient(135deg, #1d82a7, #0d6577);
  box-shadow: 0 10px 24px rgba(13, 101, 119, 0.18);
}

.site-nav .nav-request-link:hover,
.site-nav .nav-request-link:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #187391, #0b5869);
  box-shadow: 0 12px 26px rgba(13, 101, 119, 0.2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  padding: 24px 0 34px;
  margin-bottom: -22px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(88px, 12vw, 132px);
  background: linear-gradient(
    180deg,
    rgba(247, 238, 223, 0) 0%,
    rgba(244, 235, 220, 0.42) 48%,
    rgba(244, 235, 220, 0.82) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-media,
.hero-orb {
  position: absolute;
  pointer-events: none;
}

.hero-media {
  inset: 0;
  background:
    linear-gradient(
      102deg,
      rgba(6, 22, 34, 0.84) 0%,
      rgba(6, 22, 34, 0.5) 38%,
      rgba(6, 22, 34, 0.16) 62%,
      rgba(6, 22, 34, 0.56) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 20, 28, 0.12) 0%,
      rgba(10, 20, 28, 0.54) 100%
    ),
    url("../images/Hero Design/homepage.png") center/cover no-repeat;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  box-shadow: inset 0 -28px 54px rgba(10, 33, 50, 0.14);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  opacity: 0.5;
  background-image:
    linear-gradient(120deg, rgba(140, 92, 36, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(30deg, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px 100%);
  background-size:
    118px 118px,
    148px 148px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
}

.hero-media::after {
  inset: 11% 7% auto auto;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(140, 92, 36, 0.13);
  border-radius: 50%;
  box-shadow:
    -64px 42px 0 -38px rgba(216, 162, 76, 0.14),
    inset 0 0 0 38px rgba(255, 255, 255, 0.12);
  opacity: 0.9;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.8;
}

.hero-orb-one {
  top: 90px;
  right: 8%;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(216, 162, 76, 0.22),
    transparent 68%
  );
}

.hero-orb-two {
  bottom: 30px;
  left: 6%;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(13, 116, 111, 0.14),
    transparent 68%
  );
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: end;
  min-height: 690px;
  padding: 46px 0 62px;
}

.hero-compact .hero-shell {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 548px;
}

.hero-compact .hero-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-compact .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.05rem, 6.3vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-compact .hero-text {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-compact .hero-actions {
  justify-content: center;
}

.hero-actions .button-primary {
  color: #ffffff;
  background: var(--accent);
}

.hero-actions .button-secondary {
  color: var(--brand-deep);
  border-color: rgba(11, 79, 99, 0.34);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-note {
  margin: 4px 0 0;
  color: rgba(16, 34, 52, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (min-width: 761px) {
  .home-page .hero-note {
    color: rgba(255, 255, 255, 0.68);
  }
}

@media (max-width: 768px) {
  .hero-note {
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

.trust-bar {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  background: rgba(255, 250, 241, 0.76);
}

.trust-bar-shell {
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(13, 116, 111, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(16, 34, 52, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(10, 33, 50, 0.05);
}

.page-hero .hero-shell {
  min-height: 620px;
  align-items: center;
}

@media (min-width: 761px) {
  .home-page .hero::after {
    height: clamp(72px, 10vw, 116px);
    background: linear-gradient(
      180deg,
      rgba(250, 245, 236, 0) 0%,
      rgba(250, 245, 236, 0.18) 48%,
      rgba(250, 245, 236, 0.74) 100%
    );
  }

  .home-page .hero-media {
    background:
      linear-gradient(
        104deg,
        rgba(6, 22, 34, 0.64) 0%,
        rgba(6, 22, 34, 0.42) 36%,
        rgba(6, 22, 34, 0.12) 66%,
        rgba(6, 22, 34, 0.2) 100%
      ),
      linear-gradient(
        180deg,
        rgba(10, 20, 28, 0.04) 0%,
        rgba(10, 20, 28, 0.18) 74%,
        rgba(250, 245, 236, 0.18) 100%
      ),
      url("../images/Hero Design/homepage.png") center 40% / cover no-repeat;
    box-shadow: inset 0 -10px 30px rgba(250, 245, 236, 0.16);
  }

  .home-page .hero-media::before {
    opacity: 0.22;
  }

  .home-page .hero-media::after,
  .home-page .hero-orb-one {
    display: none;
  }

  .home-page .hero-copy {
    color: #ffffff;
    text-shadow: 0 8px 28px rgba(4, 18, 28, 0.4);
  }

  .home-page .hero-text {
    color: rgba(255, 255, 255, 0.88);
  }

  .home-page .hero-compact .hero-copy h1 {
    font-size: clamp(2.65rem, 5.15vw, 4.85rem);
    letter-spacing: -0.042em;
  }

  .home-page .hero-actions .button-secondary {
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 32px rgba(5, 18, 28, 0.18);
  }

  .home-page .hero-actions .button-secondary:hover,
  .home-page .hero-actions .button-secondary:focus-visible {
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(5, 18, 28, 0.22);
  }
}

.hero-copy {
  max-width: 690px;
  color: var(--ink);
  text-shadow: 0 18px 42px rgba(104, 68, 24, 0.1);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-text {
  max-width: 35ch;
  margin-bottom: 28px;
  color: rgba(16, 34, 52, 0.72);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  font-weight: 600;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d89a36, #b9731e);
  box-shadow: 0 16px 34px rgba(185, 115, 30, 0.27);
}

.button-secondary {
  color: var(--brand-deep);
  border-color: rgba(11, 79, 99, 0.16);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 28px rgba(16, 34, 52, 0.07);
  backdrop-filter: blur(12px);
}

.button-secondary-dark {
  color: var(--ink);
  border-color: rgba(16, 34, 52, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(16, 34, 52, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(201, 133, 34, 0.4);
}

.button-secondary-dark:hover,
.button-secondary-dark:focus-visible {
  background: #ffffff;
  border-color: rgba(16, 34, 52, 0.2);
  box-shadow: 0 14px 30px rgba(16, 34, 52, 0.12);
}

.contact-email-button.button {
  color: var(--ink);
  border-color: rgba(16, 34, 52, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(16, 34, 52, 0.08);
}

.contact-email-button:not(.button) {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sticky-telegram {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 24;
  display: inline-flex;
  width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  font-weight: 800;
}

.sticky-telegram:hover,
.sticky-telegram:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.sticky-telegram img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sticky-telegram span {
  display: none;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(7, 21, 33, 0.46),
    rgba(7, 21, 33, 0.3)
  );
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(4, 18, 28, 0.18);
  backdrop-filter: blur(18px);
}

.hero-panel-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.audience-copy h2,
.cta-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading-wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  align-items: end;
  max-width: none;
}

.section-note,
.intro-card p,
.next-step-card p,
.category-card p,
.audience-copy p,
.audience-list p,
.step-card p,
.coverage-card p,
.cta-copy p,
.footer-brand span {
  color: var(--muted);
}

.intro-section {
  padding-top: 74px;
}

.next-steps-section {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 162, 76, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 237, 0.56), rgba(255, 255, 255, 0));
}

.next-steps-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(140, 92, 36, 0.18),
    transparent
  );
}

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

.next-steps-grid-needs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.next-step-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  min-height: 318px;
  border: 1px solid rgba(16, 34, 52, 0.12);
  border-radius: 8px;
  background: #0b1d2a;
  color: #ffffff;
  box-shadow: 0 24px 56px rgba(10, 33, 50, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.next-step-card:hover,
.next-step-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 26px 58px rgba(10, 33, 50, 0.17);
  outline: none;
}

.next-step-card::before,
.next-step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.next-step-card::before {
  background: linear-gradient(
    180deg,
    rgba(7, 18, 28, 0.04) 0%,
    rgba(7, 18, 28, 0.28) 52%,
    rgba(7, 18, 28, 0.58) 100%
  );
}

.next-step-card::after {
  background: linear-gradient(
    135deg,
    rgba(216, 162, 76, 0.08),
    transparent 42%
  );
  opacity: 0.36;
}

.next-step-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  transition: transform 360ms ease;
}

.next-step-card:hover .next-step-media,
.next-step-card:focus-visible .next-step-media {
  transform: scale(1.015);
}

.next-step-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100%;
  gap: 10px;
  align-content: end;
  padding: 22px;
}

.next-step-content::after {
  content: "\203A";
  position: absolute;
  top: 20px;
  right: 22px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(12px);
}

.next-step-card strong {
  max-width: 12ch;
  font-size: clamp(1.34rem, 1.8vw, 1.76rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.next-step-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.5;
}

.next-step-card-trips .next-step-media {
  background-image: url("../images/cards/snorkeling-card-optimized.jpg");
}

.next-step-card[href="/hurghada-beach/"] .next-step-media {
  background-image: url("../images/cards/sea trips.jpg");
}

.next-step-card-transport .next-step-media {
  background-image: url("../images/cards/driviers.jpg");
}

.next-step-card-airport .next-step-media {
  background-image: url("../images/cards/cia.jpg");
}

.next-step-card-stays .next-step-media {
  background-image: url("../images/cards/providers1.jpg");
}

.next-step-card-nightlife .next-step-media {
  background-image: url("../images/Nightlife/sharm-nightlife-neon-dj-night.jpg");
}

.next-step-card-vip .next-step-media {
  background-image: url("../images/cards/vip-occasion.jpg");
}

.next-step-card-providers .next-step-media {
  background-image: url("../images/cards/trusted-providers-home.jpg");
}

.next-step-card-custom .next-step-media {
  background-image: url("../images/cards/providers.jpg");
}

.partner-section {
  padding-top: 38px;
  padding-bottom: 38px;
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 26px;
  padding: 34px;
  border: 1px solid rgba(16, 34, 52, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 6% 0%, rgba(216, 162, 76, 0.12), transparent 26%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(247, 251, 250, 0.98)
    );
  box-shadow: 0 20px 54px rgba(10, 33, 50, 0.1);
}

.partner-copy p:last-of-type {
  max-width: 56ch;
  margin-bottom: 0;
  color: var(--muted);
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.partner-link {
  color: var(--brand-deep);
  border-color: rgba(16, 34, 52, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

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

.partner-point {
  padding: 22px;
  border: 1px solid rgba(16, 34, 52, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.partner-point strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.partner-point p {
  margin-bottom: 0;
  color: var(--muted);
}

.intro-shell {
  display: grid;
  gap: 26px;
}

.intro-grid,
.category-grid,
.steps-grid,
.coverage-grid {
  display: grid;
  gap: 18px;
}

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

.intro-card,
.category-card,
.step-card,
.coverage-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.intro-card h3,
.category-card h3,
.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.2;
}

.plans-section {
  padding-top: 38px;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(216, 162, 76, 0.12),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(13, 116, 111, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

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

.plan-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  min-height: 284px;
  border: 1px solid rgba(16, 34, 52, 0.1);
  border-radius: var(--radius-lg);
  background: #0b1d2a;
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(10, 33, 50, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.plan-card:hover,
.plan-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 26px 58px rgba(10, 33, 50, 0.16);
  outline: none;
}

.plan-card::before,
.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.plan-card::before {
  background: linear-gradient(
    180deg,
    rgba(7, 18, 28, 0.08) 0%,
    rgba(7, 18, 28, 0.5) 54%,
    rgba(7, 18, 28, 0.86) 100%
  );
}

.plan-card::after {
  background: linear-gradient(
    135deg,
    rgba(216, 162, 76, 0.18),
    transparent 42%
  );
  opacity: 0.8;
}

.plan-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  transition: transform 360ms ease;
}

.plan-card:hover .plan-card-media,
.plan-card:focus-visible .plan-card-media {
  transform: scale(1.015);
}

.plan-card-body {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100%;
  gap: 12px;
  align-content: end;
  padding: 22px;
}

.plan-card-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card strong {
  max-width: 11ch;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.plan-card-text {
  display: none;
}

.plan-card-cairo .plan-card-media {
  background-image: url("../images/cards/cairo-aerial.jpg");
}

.plan-card-sharm .plan-card-media {
  background-image: url("../images/Sharm/bg1.png");
}

.plan-card-hurghada .plan-card-media {
  background-image: url("../images/cards/red-sea-beach-card.jpg");
}

.plan-card-nightlife .plan-card-media {
  background-image: url("../images/Nightlife/sharm-nightlife-neon-dj-night.jpg");
}

.plan-card-vip .plan-card-media {
  background-image: url("../images/cards/vip-occasion.jpg");
}

.plan-card-multi-city .plan-card-media {
  background-image: url("../images/Cairo/city-skyline-reflecting-in-the-nile-river-at-sunse-2026-03-26-23-58-29-utc.jpg");
}

.plan-card-family .plan-card-media {
  background-image: url("../images/cards/cairo-shopping-card.jpg");
}

.plan-card-wellness .plan-card-media {
  background-image: url("../images/cards/red-sea-beach-card.jpg");
}

.categories-section {
  position: relative;
  overflow: hidden;
  margin-top: -18px;
  padding-top: 78px;
  background:
    radial-gradient(circle at 92% 0%, rgba(13, 116, 111, 0.1), transparent 28%),
    radial-gradient(
      circle at 14% 8%,
      rgba(216, 162, 76, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, rgba(255, 248, 237, 0.48), rgba(255, 255, 255, 0));
}

.categories-section::before {
  content: "";
  position: absolute;
  inset: 24px max(20px, calc((100vw - 1180px) / 2)) auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 162, 76, 0.36),
    rgba(13, 116, 111, 0.18),
    transparent
  );
}

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

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

.destination-choice-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  height: 250px;
  padding: 26px;
  border: 0;
  border-radius: var(--radius-lg);
  background-position: center;
  background-size: cover;
  text-align: left;
  box-shadow: 0 22px 54px rgba(10, 33, 50, 0.14);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.destination-choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 54%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.destination-choice-card > * {
  position: relative;
  z-index: 1;
}

.destination-choice-card:hover,
.destination-choice-card:focus-visible {
  transform: translateY(-4px);
  filter: saturate(1.06);
  box-shadow: 0 30px 68px rgba(10, 33, 50, 0.2);
  outline: none;
}

.destination-choice-card span {
  display: grid;
  gap: 6px;
}

.destination-choice-card strong {
  max-width: none;
  color: #ffffff;
  font-size: clamp(2.65rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.destination-choice-card small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.destination-choice-card-cairo {
  background-image: url("/images/cards/cairo-aerial.jpg");
}

.destination-choice-card-sharm {
  background-image: url("/images/Sharm/bg1.png");
}

.destination-choice-card-hurghada {
  background-image: url("/images/cards/red-sea-beach-card.jpg");
}

.guide-section {
  padding-top: 24px;
  padding-bottom: 42px;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(13, 116, 111, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.guide-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.95fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}

.guide-copy {
  max-width: 500px;
}

.guide-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.guide-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.guide-panel {
  display: grid;
  justify-self: end;
  width: 100%;
  max-width: 610px;
  gap: 12px;
  padding: clamp(16px, 2vw, 20px);
  border: 1px solid rgba(16, 34, 52, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(10, 33, 50, 0.1);
}

.guide-input-wrap {
  display: grid;
  gap: 8px;
}

.guide-input-wrap span {
  color: rgba(16, 34, 52, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-input-wrap input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(16, 34, 52, 0.12);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(247, 250, 249, 0.98),
    rgba(255, 255, 255, 0.98)
  );
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.guide-input-wrap input::placeholder {
  color: rgba(93, 107, 119, 0.78);
  font-weight: 600;
}

.guide-input-wrap input:focus {
  border-color: rgba(13, 116, 111, 0.42);
  box-shadow: 0 0 0 4px rgba(13, 116, 111, 0.1);
  outline: none;
}

.guide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.guide-chips button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(16, 34, 52, 0.12);
  border-radius: 999px;
  background: rgba(248, 244, 236, 0.72);
  color: var(--brand-deep);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.guide-chips button:hover,
.guide-chips button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 116, 111, 0.3);
  background: rgba(13, 116, 111, 0.08);
  outline: none;
}

.guide-result {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.guide-submit {
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
}

.guide-builder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(16, 34, 52, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-deep);
  font-weight: 800;
}

.guide-builder-link:hover,
.guide-builder-link:focus-visible {
  border-color: rgba(13, 116, 111, 0.26);
  background: rgba(13, 116, 111, 0.08);
  color: var(--ink);
  outline: none;
}

.category-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  align-content: start;
}

.category-card-featured {
  background: linear-gradient(
    160deg,
    rgba(11, 79, 99, 0.98),
    rgba(13, 116, 111, 0.9)
  );
  color: #ffffff;
  border-color: transparent;
}

.category-card-featured p,
.category-card-featured .category-tag {
  color: rgba(255, 255, 255, 0.8);
}

.category-card-featured .category-tag {
  background: rgba(255, 255, 255, 0.14);
}

.category-card-featured .text-link {
  color: #ffffff;
}

.category-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(16, 34, 52, 0.06);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  width: fit-content;
  color: var(--brand-deep);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.audience-section {
  padding: clamp(52px, 6vw, 72px) 0;
}

.audience-shell {
  display: grid;
  gap: 28px;
}

.audience-copy {
  max-width: 780px;
}

.audience-copy p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
}

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

.audience-list article {
  display: grid;
  gap: 12px;
  min-height: 230px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(16, 34, 52, 0.1);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(249, 251, 250, 0.96)
  );
  box-shadow: 0 18px 44px rgba(10, 33, 50, 0.08);
}

.audience-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 116, 111, 0.16);
  border-radius: 8px;
  color: var(--brand-deep);
  background:
    radial-gradient(
      circle at 24% 18%,
      rgba(216, 162, 76, 0.2),
      transparent 32%
    ),
    rgba(237, 247, 246, 0.88);
}

.audience-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-list strong,
.coverage-card span {
  display: block;
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.audience-list p {
  margin-bottom: 0;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
  border-color: rgba(16, 34, 52, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 251, 250, 0.96)
  );
  box-shadow: 0 18px 44px rgba(10, 33, 50, 0.08);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.step-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 162, 76, 0.13),
    transparent 68%
  );
  pointer-events: none;
}

.step-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  margin-bottom: 18px;
  border: 1px solid rgba(13, 116, 111, 0.14);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(237, 247, 246, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

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

.coverage-card {
  display: grid;
  gap: 8px;
  min-height: 220px;
  align-content: start;
}

.cta-section {
  padding-top: 42px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(16, 34, 52, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94),
    rgba(244, 247, 246, 0.98)
  );
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 28px 0 44px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.45fr);
  gap: 22px 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 34, 52, 0.12);
  align-items: start;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: 100%;
  padding: 0 13px;
  border: 1px solid rgba(16, 34, 52, 0.09);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 116, 111, 0.18);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.footer-shell .copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 34, 52, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand p {
  margin-bottom: 4px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(16, 34, 52, 0.09);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 116, 111, 0.18);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.footer-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .hero-shell,
  .audience-shell,
  .partner-card,
  .guide-shell,
  .cta-card,
  .section-heading-wide {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-compact .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 6.6vw, 4.4rem);
  }

  .hero-text {
    max-width: 42ch;
  }

  .category-grid,
  .intro-grid,
  .next-steps-grid,
  .next-steps-grid-needs,
  .plan-grid,
  .partner-points,
  .steps-grid,
  .coverage-grid,
  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  :root {
    --shell: min(calc(100% - 32px), 1180px);
  }

  .site-header {
    padding: 12px 0;
  }

  .nav-shell {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: 0;
    width: 40px;
    height: 40px;
  }

  .nav-request-mobile {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1d82a7, #0d6577);
    box-shadow: 0 8px 20px rgba(13, 101, 119, 0.2);
    white-space: nowrap;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 44px;
    margin-bottom: -30px;
  }

  .hero::after {
    height: clamp(132px, 34vw, 190px);
    background: linear-gradient(
      180deg,
      rgba(5, 18, 28, 0) 0%,
      rgba(5, 18, 28, 0.12) 54%,
      rgba(5, 18, 28, 0.32) 100%
    );
  }

  .hero-media {
    background:
      linear-gradient(
        180deg,
        rgba(4, 16, 25, 0.46) 0%,
        rgba(4, 16, 25, 0.32) 48%,
        rgba(4, 16, 25, 0.48) 100%
      ),
      url("../images/Hero Design/homepage-mobile.png") center/cover no-repeat;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .hero-media::before {
    content: none;
  }

  .hero-media::after {
    content: none;
  }

  .hero-shell {
    gap: 18px;
    padding: 28px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .hero-compact .hero-copy h1 {
    max-width: 12ch;
    margin-bottom: 8px;
    font-size: clamp(2.38rem, 11vw, 3.45rem);
    line-height: 0.98;
  }

  .hero-copy,
  .hero-text {
    color: #ffffff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.36);
  }

  .hero-text {
    max-width: 100%;
    margin-top: 8px;
    font-size: 1rem;
    text-align: left;
  }

  .hero-actions .button-secondary {
    color: var(--ink);
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.88);
  }

  .hero-actions,
  .partner-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-bar {
    padding: 12px 0;
    background: rgba(255, 250, 241, 0.88);
  }

  .trust-bar-shell {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-bar-shell::-webkit-scrollbar {
    display: none;
  }

  .trust-badges {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    padding-right: 16px;
  }

  .trust-badge {
    font-size: 0.8rem;
  }

  .sticky-telegram {
    right: 12px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: auto;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border: 0;
    box-shadow: none;
    font-size: 0;
  }

  .sticky-telegram img {
    width: 20px;
    height: 20px;
  }

  .section {
    padding: 56px 0;
  }

  .audience-section {
    padding: 46px 0;
  }

  .categories-section {
    margin-top: -10px;
    padding: 58px 0 42px;
  }

  .guide-section {
    padding: 22px 0 38px;
  }

  .guide-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 7.8vw, 2.45rem);
    line-height: 1.04;
  }

  .guide-panel {
    max-width: none;
    border-radius: 8px;
  }

  .guide-submit {
    justify-self: stretch;
  }

  .guide-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .guide-chips button {
    flex: 1 1 auto;
  }

  .categories-section .section-heading {
    gap: 8px;
    margin-bottom: 20px;
  }

  .categories-section .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .categories-section .section-heading h2 {
    font-size: clamp(1.9rem, 7.8vw, 2.45rem);
    line-height: 1.04;
  }

  .categories-section .section-note {
    max-width: 28ch;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .destination-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .intro-grid,
  .next-steps-grid,
  .next-steps-grid-needs,
  .partner-points,
  .category-grid,
  .steps-grid,
  .coverage-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .next-step-card,
  .category-card,
  .coverage-card,
  .destination-choice-card {
    min-height: 126px;
  }

  .next-step-card {
    min-height: 300px;
  }

  .next-step-content {
    gap: 10px;
    padding: 20px;
  }

  .next-step-card strong {
    font-size: 1.55rem;
    line-height: 1.05;
  }

  .next-step-description {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .plan-card {
    min-height: 230px;
    border-radius: var(--radius-md);
  }

  .plan-card-body {
    gap: 8px;
    padding: 16px;
  }

  .plan-card-label {
    display: none;
  }

  .plan-card strong {
    max-width: 13ch;
    font-size: 1.22rem;
  }

  .plan-card-text {
    display: none;
  }

  .page-hero .hero-shell {
    min-height: auto;
  }

  .audience-list article,
  .next-step-card,
  .partner-card,
  .partner-point,
  .intro-card,
  .category-card,
  .destination-choice-card,
  .step-card,
  .coverage-card,
  .cta-card {
    padding: 22px;
  }

  .audience-list {
    gap: 12px;
  }

  .audience-list article {
    min-height: auto;
  }

  .destination-choice-card {
    min-height: 176px;
    height: 176px;
    padding: 18px 14px;
    border-radius: var(--radius-lg);
  }

  .destination-choice-card strong {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 0.96;
  }

  .destination-choice-card small {
    font-size: 0.86rem;
    white-space: normal;
  }
}

.contact-telegram-button {
  background: #229ed9 !important;
  border-color: #229ed9 !important;
  color: #fff !important;
}

.contact-telegram-button:hover {
  background: #1c8bc0 !important;
  border-color: #1c8bc0 !important;
}

.contact-email-button {
  background: #ea4335 !important;
  border-color: #ea4335 !important;
  color: #fff !important;
}

.contact-email-button:hover {
  background: #d63b2f !important;
  border-color: #d63b2f !important;
}

.provider-contact-text {
  color: #334155;
}

@media (max-width: 720px) {
  .hero-media {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .hero {
    margin-bottom: 0;
  }
}

/* Clean premium homepage background */
body.home-page {
  background:
    radial-gradient(
      circle at 20% 8%,
      rgba(255, 255, 255, 0.85),
      transparent 28%
    ),
    radial-gradient(
      circle at 80% 22%,
      rgba(230, 210, 170, 0.22),
      transparent 30%
    ),
    linear-gradient(180deg, #fbf7ef 0%, #f6efe3 45%, #ffffff 100%);
  background-attachment: fixed;
}

/* Remove old texture layers */
body.home-page::before,
body.home-page::after {
  content: none;
}

/* Stage 9.16: homepage route helper */
.homepage-router-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(16, 34, 52, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 162, 76, 0.12), transparent 28%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94),
      rgba(247, 251, 250, 0.96)
    );
  box-shadow: 0 18px 44px rgba(10, 33, 50, 0.08);
  scroll-margin-top: 96px;
}

.homepage-router-copy {
  display: grid;
  gap: 8px;
}

.homepage-router-copy .eyebrow,
.homepage-router-copy h3,
.homepage-router-copy p {
  margin: 0;
}

.homepage-router-copy h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.homepage-router-copy p:last-child {
  max-width: 42ch;
  color: var(--muted);
}

.homepage-router-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.homepage-router-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(13, 116, 111, 0.14);
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.homepage-router-actions a:hover,
.homepage-router-actions a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 116, 111, 0.28);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(10, 33, 50, 0.08);
  outline: none;
}

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

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

@media (max-width: 560px) {
  .homepage-router-actions {
    grid-template-columns: 1fr;
  }
}

/* Stage 9.16: city request helper spacing */
.homepage-city-request-router {
  margin-top: 18px;
}

/* Stage 9.16: provider path helper spacing */
.homepage-provider-router {
  margin-top: 18px;
}

/* Stage 9.16: homepage router visual rhythm */
.home-page .homepage-router-card + .homepage-router-card {
  margin-top: 14px;
}

.home-page .homepage-router-card {
  position: relative;
  overflow: hidden;
}

.home-page .homepage-router-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
  opacity: 0.82;
}

.home-page .homepage-router-copy,
.home-page .homepage-router-actions {
  position: relative;
  z-index: 1;
}

.home-page .homepage-router-actions a:first-child {
  border-color: rgba(216, 162, 76, 0.3);
  color: #7b4b13;
  background: rgba(255, 248, 235, 0.9);
}

.home-page .homepage-router-actions a:first-child:hover,
.home-page .homepage-router-actions a:first-child:focus-visible {
  border-color: rgba(216, 162, 76, 0.42);
  background: #fff8eb;
}

@media (max-width: 560px) {
  .home-page .homepage-router-card {
    padding-left: 24px;
  }

  .home-page .homepage-router-card::before {
    width: 3px;
  }
}

/* Mobile destination card title sizing QA fix */
@media (max-width: 560px) {
  .destination-choice-card {
    min-height: 150px !important;
    height: 150px !important;
    padding: 16px !important;
  }

  .destination-choice-card strong {
    font-size: 1.9rem !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
  }

  .destination-choice-card small {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
  }
}

/* Final homepage missing card image override */
.next-step-card-transport .next-step-media {
  background-image: url("../images/cards/driver-transport-card.jpg") !important;
}

.next-step-card-stays .next-step-media {
  background-image: url("../images/cards/red-sea-beach-card.jpg") !important;
}

.next-step-card-custom .next-step-media {
  background-image: url("../images/cards/cairo-shopping-card.jpg") !important;
}

/* Final homepage card background fallback fix */
.next-step-card-transport {
  background-image: url("../images/cards/driver-transport-card.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.next-step-card-stays {
  background-image: url("../images/cards/red-sea-beach-card.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.next-step-card-custom {
  background-image: url("../images/cards/cairo-shopping-card.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.next-step-card-vip {
  background-image: url("../images/cards/vip-occasion.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.next-step-card-airport {
  background-image: url("../images/cards/cia.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.destination-choice-card-cairo {
  background-image: url("/images/cards/cairo-aerial.jpg") !important;
}

.plan-card-cairo .plan-card-media {
  background-image: url("../images/cards/cairo-aerial.jpg") !important;
}

/* Final homepage need-card layout and order cleanup */
.next-steps-grid-needs > .next-step-card-trips[href="#trip-router"] {
  order: 1;
}

.next-steps-grid-needs > .next-step-card[href="/hurghada-beach/"] {
  order: 2;
}

.next-steps-grid-needs > .next-step-card-airport {
  order: 3;
}

.next-steps-grid-needs > .next-step-card-transport {
  order: 4;
}

.next-steps-grid-needs > .next-step-card-stays {
  order: 5;
}

.next-steps-grid-needs > .next-step-card-nightlife {
  order: 6;
}

.next-steps-grid-needs > .next-step-card-vip {
  order: 7;
}

.next-steps-grid-needs > .next-step-card-providers {
  order: 8;
}

.next-steps-grid-needs > .next-step-card-custom {
  order: 9;
}

/* Homepage need cards: single authoritative layout block */
.home-page .next-steps-grid-needs .next-step-card {
  position: relative !important;
  display: block !important;
  min-height: 318px !important;
  overflow: hidden !important;
  color: #ffffff !important;
}

.home-page .next-steps-grid-needs .next-step-card > .next-step-media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.home-page .next-steps-grid-needs .next-step-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: linear-gradient(
    180deg,
    rgba(5, 15, 24, 0.04) 0%,
    rgba(5, 15, 24, 0.22) 38%,
    rgba(5, 15, 24, 0.86) 100%
  ) !important;
}

.home-page .next-steps-grid-needs .next-step-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    135deg,
    rgba(216, 162, 76, 0.12),
    transparent 46%
  ) !important;
}

.home-page .next-steps-grid-needs .next-step-card > .next-step-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 22px !important;
}

.home-page .next-steps-grid-needs .next-step-card > .next-step-content::after {
  content: "\203A" !important;
  position: absolute !important;
  top: 20px !important;
  right: 22px !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.14) !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: 2rem !important;
  line-height: 1 !important;
  text-align: center !important;
  backdrop-filter: blur(12px) !important;
}

.home-page .next-steps-grid-needs .next-step-card strong {
  display: block !important;
  max-width: 12ch !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(1.42rem, 1.9vw, 1.82rem) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.62) !important;
}

.home-page .next-steps-grid-needs .next-step-description {
  display: block !important;
  max-width: 25ch !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  text-shadow: 0 7px 20px rgba(0, 0, 0, 0.62) !important;
}

@media (max-width: 768px) {
  .home-page .next-steps-grid-needs .next-step-card {
    min-height: 260px !important;
  }

  .home-page .next-steps-grid-needs .next-step-card > .next-step-content {
    padding: 20px !important;
  }

  .home-page .next-steps-grid-needs .next-step-card strong {
    font-size: 1.5rem !important;
  }
}

/* Final homepage Hurghada Beach & Sea Trips card image */
.home-page .next-step-card[href="/hurghada-beach/"] .next-step-media,
.home-page .next-step-card-sea-trips .next-step-media {
  background-image: url("../images/cards/hurghada-card.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.trust-badges-section {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  padding: 0 0 34px;
}

.trust-badges-section .trust-badges-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-badges-section .trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(26, 110, 128, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(11, 46, 58, 0.08);
  color: #194e5d;
  font-size: 0.93rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.trust-badges-section .trust-badge-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(26, 110, 128, 0.1);
  color: #1a6e80;
  font-weight: 800;
}

@media (max-width: 860px) {
  .trust-badges-section {
    margin-top: -18px;
    padding-bottom: 26px;
  }

  .trust-badges-section .trust-badges-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .trust-badges-section .trust-badges-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-badges-section .trust-badge {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.82rem;
    gap: 7px;
  }

  .trust-badges-section .trust-badge-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    font-size: 0.8rem;
  }
}

.homepage-faq-section {
  padding-top: 72px;
}

.homepage-faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.homepage-faq-item {
  border: 1px solid rgba(26, 110, 128, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(11, 46, 58, 0.06);
  overflow: hidden;
}

.homepage-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #123f4c;
  font-weight: 800;
  list-style: none;
}

.homepage-faq-item summary::-webkit-details-marker {
  display: none;
}

.homepage-faq-item summary::after {
  content: "+";
  float: right;
  color: #1a6e80;
  font-size: 1.2rem;
  line-height: 1;
}

.homepage-faq-item[open] summary::after {
  content: "−";
}

.homepage-faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: #5a7a85;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .homepage-faq-section {
    padding-top: 52px;
  }

  .homepage-faq-item summary {
    padding: 16px;
  }

  .homepage-faq-item p {
    padding: 0 16px 16px;
  }
}

/* ── Sticky bottom CTA bar (mobile city pages) ──────────────────────────── */
.city-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .city-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    align-items: center;
    justify-content: center;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(16, 34, 52, 0.08);
    box-shadow: 0 -4px 20px rgba(16, 34, 52, 0.1);
  }

  .city-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #d89a36, #b9731e);
    box-shadow: 0 16px 34px rgba(185, 115, 30, 0.27);
    text-decoration: none;
    transition:
      transform 160ms ease,
      box-shadow 160ms ease;
  }

  .city-sticky-cta a:hover,
  .city-sticky-cta a:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(201, 133, 34, 0.4);
    outline: none;
  }

  /* Push page content above the bar so footer isn't hidden */
  .has-city-sticky-cta footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* ── Desktop: de-emphasise provider nav links ──────────────────────────── */
@media (min-width: 769px) {
  .site-nav .nav-provider-link {
    font-size: 0.78rem;
    opacity: 0.55;
    letter-spacing: 0;
  }

  .site-nav .nav-provider-link:hover,
  .site-nav .nav-provider-link:focus-visible {
    opacity: 0.85;
  }
}

/* ── Mobile hero: hide badge boxes, show compact trust line ────────────── */
@media (max-width: 768px) {
  .trust-badges-section {
    display: none;
  }

  .hero-note {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    letter-spacing: 0.01em;
    line-height: 1.5;
  }

  .home-page .hero {
    padding-bottom: 38px;
    margin-bottom: 0;
  }

  .home-page .hero-actions {
    gap: 10px;
  }
}
