:root {
  --navy: #013e7d;
  --navy-deep: #012552;
  --navy-dark: #001833;
  --navy-glow: rgba(1, 62, 125, 0.4);
  --blue: #1a6fbe;
  --blue-glow: rgba(26, 111, 190, 0.25);
  --sky: #60b8ff;
  --sky-soft: #eaf5ff;
  --sky-mid: #cfe8ff;
  --orange: #eb7909;
  --orange-hot: #ff8c00;
  --orange-glow: rgba(235, 121, 9, 0.35);
  --gold: #e0b13a;
  --gold-soft: #fff9e6;
  --emerald: #10b981;
  --emerald-soft: #e6f7f0;
  --purple: #8b5cf6;
  --purple-soft: #f3e8ff;
  --text: #0f2744;
  --muted: #5b6b80;
  --line: #d5e4f3;
  --line-glow: rgba(213, 228, 243, 0.8);
  --bg: #f6faff;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(1, 37, 82, 0.12);
  --shadow-soft: 0 10px 30px rgba(1, 37, 82, 0.08);
  --shadow-hover: 0 22px 60px rgba(1, 37, 82, 0.18);
  --radius: 22px;
  --header-h: 84px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 10000;
}

.skip-link:focus {
  inset-inline-start: 12px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(1, 37, 82, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  height: 48px;
  width: auto;
}

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

.header-actions .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav a:hover,
.nav a.active {
  background: var(--sky-soft);
  color: var(--blue);
  transform: translateY(-1px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 24px;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 0.95em;
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(-3px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-orange {
  background: linear-gradient(135deg, #ff9a1f 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: 0 10px 24px var(--orange-glow);
}

.btn-orange:hover {
  box-shadow: 0 14px 30px rgba(235, 121, 9, 0.45);
}

.btn-navy {
  background: linear-gradient(135deg, #1a73c7 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 10px 24px var(--navy-glow);
}

.btn-navy:hover {
  box-shadow: 0 14px 30px rgba(1, 62, 125, 0.45);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px var(--navy-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--sky-soft);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  height: 2.5px;
  width: 20px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 42px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%,
      rgba(255, 154, 31, 0.22),
      transparent 38%),
    radial-gradient(circle at 10% 85%,
      rgba(96, 184, 255, 0.32),
      transparent 42%),
    linear-gradient(180deg, #eef7ff 0%, #f7fbff 48%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#7eb6e6 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
}

.eyebrow img {
  width: 22px;
  height: 22px;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.22;
  color: var(--navy-deep);
  font-weight: 900;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--orange), #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.lead-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 6px 18px var(--navy-glow);
}

.hero-copy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17.5px;
  max-width: 56ch;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: nowrap;
}

.hero-actions .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  padding: 14px 18px;
  font-size: 15px;
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

.hero-stats div strong {
  display: block;
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 800;

}

.hero-stats div span {
  color: var(--muted);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-plane {
  position: absolute;
  top: 24px;
  inset-inline-end: 6%;
  width: 58px;
  opacity: 0.95;
  animation: floaty 4.5s ease-in-out infinite;
  z-index: 1;
  filter: drop-shadow(0 8px 12px rgba(235, 121, 9, 0.3));
}

.orbit {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(96, 184, 255, 0.32),
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.float-chip {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  animation: floaty 4.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.float-chip:hover {
  transform: scale(1.05);
}

.float-chip.one {
  top: 50px;
  inset-inline-start: -12px;
}

.float-chip.two {
  bottom: 84px;
  inset-inline-end: -10px;
  animation-delay: 1.4s;
}

.chip-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
}

.chip-ico.blue {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.chip-ico.orange {
  background: linear-gradient(135deg, var(--orange), #ff8c00);
}

.phone {
  position: relative;
  z-index: 2;
  width: 295px;
  height: 600px;
  background: #0d1527;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 35px 70px rgba(1, 24, 51, 0.32),
    inset 0 0 0 2.5px #2b3b55;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 45px 85px rgba(1, 24, 51, 0.4);
}

.phone::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 90px;
  height: 18px;
  transform: translateX(-50%);
  background: #0d1527;
  border-radius: 20px;
  z-index: 5;
}

.phone-screen {
  height: 100%;
  background: #f4f8fd;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px 0;
  font-size: 11.5px;
  font-weight: 800;
  color: #111;
}

.app-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 4px;
}

.app-head img {
  width: 28px;
  height: 28px;
}

.app-head strong {
  font-size: 14px;
  color: var(--navy);
  font-weight: 800;
}

.app-banner {
  margin: 8px 12px;
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: #fff;
  border-radius: 16px;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(1, 62, 125, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 12px;
}

.app-cats div {
  background: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 8px 2px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 4px 10px rgba(1, 37, 82, 0.06);
  transition: transform 0.2s ease;
}

.app-cats div:hover {
  transform: translateY(-2px);
}

.app-cats span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 4px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}

.app-section-title {
  padding: 12px 14px 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-cards {
  display: flex;
  gap: 8px;
  padding: 0 12px;
  overflow: hidden;
}

.app-card {
  min-width: 132px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(1, 37, 82, 0.08);
}

.app-card img {
  height: 78px;
  width: 100%;
  object-fit: cover;
}

.app-card p {
  padding: 7px 8px 2px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
}

.app-card small {
  display: block;
  padding: 0 8px 8px;
  font-size: 10px;
  color: var(--orange);
  font-weight: 800;
}

.app-nav {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid #e6eef6;
  padding: 8px 0 12px;
  font-size: 10px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.app-nav i {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--navy);
}

.app-nav div.active i {
  color: var(--orange);
}

/* Trust Bar */
.trust-bar {
  position: relative;
  margin-top: 48px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 14px;
  font-weight: 800;
  font-size: 15px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.trust-bar li:hover {
  background: rgba(255, 255, 255, 0.06);
}

.trust-bar li:last-child {
  border: 0;
}

.trust-bar span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  color: var(--orange-hot);
  font-size: 17px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Overview Section */
.overview-section {
  padding: 84px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  position: relative;
}

.overview-switcher {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.switcher-btn {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--navy);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.switcher-btn i {
  font-size: 1.1em;
  color: var(--blue);
  transition: color 0.3s ease;
}

.switcher-btn:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.switcher-btn.active {
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px var(--navy-glow);
}

.switcher-btn.active i {
  color: var(--orange-hot);
}

.overview-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.overview-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.overview-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky-mid);
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sky-soft), #dceeff);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(26, 111, 190, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.step-card:hover .step-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, var(--orange), #ff9a1f);
  color: #fff;
}

.step-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  background: var(--sky-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 20px;
  color: var(--navy-deep);
  margin-bottom: 10px;
  font-weight: 800;
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Stats Counter Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0c3364 100%);
  color: #fff;
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card i {
  font-size: 28px;
  color: var(--orange-hot);
  margin-bottom: 12px;
  display: inline-block;
}

.stat-val {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff, var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 6px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

/* Sections Global */
.section {
  padding: 84px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 46px;
}

.kicker {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kicker i {
  font-size: 0.9em;
}

.section-head h2,
.block-title h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--navy-deep);
  line-height: 1.32;
  margin-top: 6px;
  font-weight: 900;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.about-card,
.vision-card,
.service-card,
.extra-card,
.company-card,
.app-panel,
.contact-card,
.review-card,
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-card {
  padding: 36px;
}

.about-card p {
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.85;
}

.about-card p+p {
  margin-top: 14px;
}

.vision-card {
  padding: 36px;
  background:
    radial-gradient(circle at 90% 10%, rgba(235, 121, 9, 0.3), transparent 45%),
    linear-gradient(160deg, var(--navy-deep) 0%, #155596 70%, var(--navy-dark) 100%);
  color: #fff;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vision-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vision-card h3 i {
  color: var(--orange-hot);
}

.vision-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.8;
}

.collage {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.collage img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.collage img:hover {
  transform: scale(1.03);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 26px 22px;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky-mid);
}

.ico {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.service-card:hover .ico {
  transform: scale(1.1);
}

.ico.blue {
  background: var(--sky-soft);
  color: var(--blue);
}

.ico.orange {
  background: #fff1de;
  color: var(--orange);
}

.ico.gold {
  background: var(--gold-soft);
  color: #c99316;
}

.ico.teal {
  background: var(--emerald-soft);
  color: var(--emerald);
}

.ico.purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.service-card h3 {
  color: var(--navy-deep);
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 50px 0 22px;
}

.subhead h3 {
  color: var(--navy-deep);
  font-size: 26px;
  font-weight: 900;
}

/* Premium Umrah Feature Showcase Card */
.umrah-feature-card {
  position: relative;
  margin-top: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #041021 0%, #0d274c 50%, #071933 100%);
  padding: 48px 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(1, 24, 51, 0.35);
  color: #ffffff;
}

.umrah-glow-bg {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 180%;
  background: radial-gradient(circle, rgba(235, 121, 9, 0.18) 0%, rgba(26, 111, 190, 0.14) 40%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.umrah-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.umrah-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(235, 121, 9, 0.16);
  border: 1px solid rgba(235, 121, 9, 0.4);
  color: #ff9a1f;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.umrah-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 30%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.umrah-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-weight: 500;
}

.umrah-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  width: 100%;
}

.umrah-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.umrah-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(235, 121, 9, 0.5);
  transform: translateY(-2px);
}

.umrah-pill i {
  color: var(--orange);
  font-size: 16px;
}

.umrah-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.extra-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.extra-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  display: block;
  background: #dbeafe;
  transition: transform 0.4s ease;
}

.extra-card:hover img {
  transform: scale(1.05);
}

.extra-card>div:last-child {
  padding: 16px 18px 20px;
}

.extra-card h3 {
  font-size: 17px;
  color: var(--navy-deep);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.extra-card h3 i {
  color: var(--blue);
}

.extra-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

/* Companies Section */
.companies {
  background:
    radial-gradient(circle at 10% 20%,
      rgba(96, 184, 255, 0.2),
      transparent 32%),
    linear-gradient(180deg, rgba(0, 18, 40, 0.94), rgba(1, 37, 82, 0.96)),
    url("../assets/promo-companies.png") center/cover;
  color: #fff;
  position: relative;
}

.companies .section-head h2,
.companies .section-head p {
  color: #fff;
}

.companies .section-head p {
  color: rgba(255, 255, 255, 0.85);
}

.companies-intro {
  text-align: center;
  max-width: 740px;
  margin: -18px auto 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17.5px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.company-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 22px 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.company-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

.num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), #ff9a1f);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
  font-size: 16px;
  box-shadow: 0 6px 14px var(--orange-glow);
}

.company-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 800;
}

.company-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

/* Apps Section */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.app-panel {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.app-panel.company {
  background: linear-gradient(180deg, #fff 0%, #f3f8ff 100%);
}

.app-panel h3 {
  font-size: 28px;
  color: var(--navy-deep);
  font-weight: 900;
}

.app-panel .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.app-panel.company .tag {
  background: #fff1de;
  color: var(--orange);
}

.app-panel p {
  color: var(--muted);
  margin: 10px 0 18px;
  font-size: 15.5px;
}

.qr-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.qr-box:hover {
  transform: scale(1.04);
}

.qr-box img {
  width: 148px;
  height: 148px;
  border-radius: 8px;
}

.qr-box small {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
}

.play-badge {
  height: 58px;
  width: auto;
  margin-inline-start: -10px;
  transition: transform 0.2s ease;
}

.play-badge:hover {
  transform: scale(1.03);
}

/* Reviews / Testimonials Section */
.reviews-section {
  padding: 84px 0;
  background: var(--bg);
}

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

.review-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.review-text {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
}

.author-info strong {
  display: block;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 800;
}

.author-info span {
  font-size: 12.5px;
  color: var(--muted);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 84px 0;
  background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: start;
  font-size: 17.5px;
  font-weight: 800;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question i {
  font-size: 16px;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-question {
  color: var(--blue);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-card {
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card h3 {
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 800;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 15px;
}

.contact-card a:hover {
  color: var(--orange);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sky-soft);
  color: var(--navy);
  font-size: 18px;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px var(--navy-glow);
}

.map-note {
  background:
    linear-gradient(160deg, rgba(1, 62, 125, 0.8), rgba(235, 121, 9, 0.6)),
    url("../assets/promo-beach.png") center/cover;
  min-height: 290px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow);
}

.map-note strong {
  font-size: 24px;
  display: block;
  font-weight: 900;
  margin-bottom: 4px;
}

/* CTA */
.final-cta {
  padding: 20px 0 84px;
}

.cta-box {
  background: linear-gradient(125deg, var(--navy-dark) 0%, var(--navy-deep) 45%, var(--orange) 100%);
  color: #fff;
  border-radius: 34px;
  padding: 48px 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  inset-inline-end: -60px;
  top: -70px;
  pointer-events: none;
}

.cta-box h2 {
  grid-column: 1 / -1;
  font-size: clamp(26px, 3.2vw, 40px);
  position: relative;
  font-weight: 900;
  margin-bottom: 8px;
}

.cta-side {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.cta-side:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.cta-side h3 {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 800;
}

.cta-side p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer .brand img {
  height: 52px;
  filter: none;
}

section[id] {
  scroll-margin-top: 96px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 800;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  transition: color 0.25s ease;
}

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

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.legal-links {
  display: flex;
  gap: 16px;
}

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseRipple 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.6);
}

/* Reveal & Keyframe Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.95);
  }

  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes pulseRipple {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(200%) rotate(25deg);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg,
      transparent 30%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 70%);
  transform: translateX(-100%) rotate(25deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.shine-effect:hover::after {
  transform: translateX(100%) rotate(25deg);
}

/* Enhanced Phone Mockup Toggle & Dual View */
.phone-mode-switch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  z-index: 10;
  position: relative;
  width: auto;
  align-self: center;
}

.phone-mode-btn {
  background: #ffffff;
  border: 1.5px solid rgba(1, 62, 125, 0.15);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(1, 24, 51, 0.08);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  height: auto;
  align-self: auto;
}

.phone-mode-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.phone-mode-btn.active {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px var(--navy-glow);
}

.phone-screen-view {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: fadeIn 0.35s ease forwards;
}

.phone-screen-view.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Agency Mockup Screen Details */
.app-agency-banner {
  margin: 8px 12px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.agency-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.agency-stat-mini {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}

.agency-stat-mini span {
  font-size: 14px;
  font-weight: 900;
  color: var(--orange-hot);
  display: block;
}

.agency-stat-mini small {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* Interactive Trip Explorer Demo Widget in Overview */
.trip-explorer-widget {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(1, 37, 82, 0.1);
  padding: 28px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.trip-explorer-widget::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--emerald));
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}

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

.widget-title i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #ff9a1f);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 6px 16px var(--orange-glow);
}

.widget-title h3 {
  font-size: 20px;
  color: var(--navy-deep);
  font-weight: 800;
}

.widget-title p {
  font-size: 13.5px;
  color: var(--muted);
}

.trip-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trip-filter-btn {
  background: var(--sky-soft);
  border: 1px solid transparent;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trip-filter-btn:hover {
  background: var(--sky-mid);
  color: var(--blue);
  transform: translateY(-1px);
}

.trip-filter-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px var(--blue-glow);
}

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

.demo-trip-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.demo-trip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky);
}

.demo-trip-img {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.demo-trip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.demo-trip-card:hover .demo-trip-img img {
  transform: scale(1.06);
}

.demo-trip-tag {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  background: rgba(1, 37, 82, 0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-trip-rating {
  position: absolute;
  bottom: 10px;
  inset-inline-end: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: #d97706;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.demo-trip-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.demo-trip-body h4 {
  font-size: 16px;
  color: var(--navy-deep);
  font-weight: 800;
  margin-bottom: 4px;
}

.demo-trip-body p {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.demo-trip-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

.demo-trip-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--orange-hot);
}

.demo-trip-price small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.demo-trip-btn {
  background: var(--sky-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-trip-card:hover .demo-trip-btn {
  background: var(--orange);
  color: #fff;
}

/* Stat Progress Bar */
.stat-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin-top: 12px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
  border-radius: 999px;
}

/* Back to Top Floating Button */
.back-to-top {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 92px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.progress-ring-circle {
  stroke: var(--orange);
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
  transition: stroke-dashoffset 0.1s ease;
}

.mobile-panel {
  display: none;
}

/* Responsive Design Breakpoints */

@media (max-width: 1100px) {
  .company-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .overview-steps,
  .stats-grid,
  .reviews-grid,
  .trip-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {

  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .apps-grid,
  .contact-grid,
  .cta-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    grid-column: auto;
  }

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

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar li {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .phone {
    width: 270px;
    height: 540px;
  }

  .orbit {
    width: 340px;
    height: 340px;
  }

  .float-chip {
    display: none;
  }

  .mobile-panel.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: var(--header-h);
    inset-inline: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    z-index: 30;
    max-height: calc(100vh - var(--header-h) - 20px);
    overflow-y: auto;
  }

  .header {
    position: sticky;
  }

  .mobile-panel a {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
  }
}

@media (max-width: 768px) {

  .section,
  .overview-section,
  .reviews-section,
  .faq-section {
    padding: 50px 0;
  }

  .hero-copy {
    font-size: 16px;
  }

  .umrah-feature-card {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .umrah-title {
    font-size: 24px;
  }

  .umrah-desc {
    font-size: 14.5px;
  }

  .umrah-pill {
    padding: 10px 16px;
    font-size: 13px;
  }

  .cta-box {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .trip-explorer-widget {
    padding: 20px 16px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {

  .services-grid,
  .company-grid,
  .trust-bar,
  .footer-grid,
  .collage,
  .overview-steps,
  .stats-grid,
  .reviews-grid,
  .trip-results-grid {
    grid-template-columns: 1fr;
  }

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

  .overview-switcher,
  .hero-actions,
  .umrah-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .umrah-actions .btn,
  .switcher-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .trust-bar li {
    padding: 16px 12px;
    font-size: 14px;
  }

  .app-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .brand img {
    height: 38px;
  }

  .widget-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-wrapper {
    margin-top: 20px;
    border-radius: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 28px 0 20px;
  }

  .eyebrow {
    font-size: 12.5px;
    padding: 5px 12px;
  }

  .lead-pill {
    font-size: 13px;
    padding: 6px 14px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .phone {
    width: 240px;
    height: 480px;
    border-radius: 36px;
    padding: 8px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .phone-mode-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .orbit {
    width: 260px;
    height: 260px;
  }

  .stat-card {
    padding: 20px 14px;
  }

  .about-card,
  .vision-card {
    padding: 24px 18px;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 18px;
    inset-inline-end: 14px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    font-size: 15px;
    bottom: 74px;
    inset-inline-end: 14px;
  }
}

/* Video Showcase Section Styling */
.video-section {
  padding: 54px 0 36px;
  position: relative;
}

.video-wrapper {
  position: relative;
  max-width: 920px;
  margin: 32px auto 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(1, 38, 77, 0.25);
  border: 2px solid rgba(1, 62, 125, 0.15);
  background: #000000;
}

.video-glow {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(235, 121, 9, 0.22) 0%, rgba(1, 62, 125, 0.25) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.video-container {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 26px;
  display: block;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .float-chip,
  .wa-float {
    animation: none;
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Legal Pages Styling (Privacy Policy & Terms & Conditions) */
.legal-hero {
  position: relative;
  padding: 54px 0 38px;
  background: linear-gradient(180deg, #eef7ff 0%, #f7fbff 60%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.legal-hero-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px var(--navy-glow);
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy-deep);
  font-weight: 900;
  margin-bottom: 8px;
}

.legal-hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.legal-breadcrumb a {
  color: var(--navy);
  transition: color 0.2s ease;
}

.legal-breadcrumb a:hover {
  color: var(--orange);
}

.legal-breadcrumb span {
  color: var(--muted);
}

.legal-main-section {
  padding: 54px 0 84px;
}

.legal-container {
  max-width: 920px;
  margin: 0 auto;
}

.legal-toggle-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  background: #ffffff;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  max-width: 480px;
  margin-inline: auto;
}

.legal-toggle-btn {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.legal-toggle-btn i {
  font-size: 1.05em;
  color: var(--blue);
  transition: color 0.3s ease;
}

.legal-toggle-btn.active {
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  color: #ffffff;
  box-shadow: 0 8px 20px var(--navy-glow);
}

.legal-toggle-btn.active i {
  color: var(--orange-hot);
}

.legal-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky-mid);
}

.legal-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.legal-card-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-soft), #dceeff);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 111, 190, 0.12);
}

.legal-card h2,
.legal-card h3 {
  font-size: 20px;
  color: var(--navy-deep);
  font-weight: 800;
  margin: 0;
}

.legal-card-body {
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.legal-card-body p {
  margin-bottom: 12px;
}

.legal-card-body p:last-child {
  margin-bottom: 0;
}

.legal-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.legal-card-body li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 15.5px;
  color: var(--muted);
}

.legal-card-body li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: 2px;
  color: var(--emerald);
  font-size: 13px;
}

.legal-alert {
  background: var(--sky-soft);
  border-inline-start: 4px solid var(--blue);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--navy-deep);
  font-weight: 600;
}

.legal-alert i {
  color: var(--blue);
  font-size: 18px;
  margin-top: 2px;
}

.legal-contacts-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.legal-contact-chip {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
}

.legal-contact-chip:hover {
  background: #ffffff;
  border-color: var(--orange);
  transform: translateY(-2px);
  color: var(--orange);
}

.legal-contact-chip i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .legal-toggle-row {
    flex-direction: column;
    border-radius: 20px;
    padding: 6px;
  }

  .legal-toggle-btn {
    width: 100%;
  }

  .legal-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .legal-card h2,
  .legal-card h3 {
    font-size: 17.5px;
  }
}