:root {
  --green-950: #062d27;
  --green-900: #0b4338;
  --green-700: #11775e;
  --green-500: #19a274;
  --gold-500: #c89b3c;
  --gold-100: #fff4d7;
  --coral-500: #c86b4a;
  --ink: #14201d;
  --muted: #60716c;
  --line: #dbe5e1;
  --soft: #f5f8f6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 44, 36, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
html, body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 225, 0.82);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 315px;
}
.brand img, .footer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}
.brand strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #324640;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--green-700); }
.nav-action, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}
.nav-action svg, .btn svg, .eyebrow svg, .trust-strip svg, .contact-lines svg { width: 17px; height: 17px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,45,39,0.95) 0%, rgba(6,45,39,0.78) 44%, rgba(6,45,39,0.36) 100%),
    linear-gradient(0deg, rgba(6,45,39,0.78), transparent 42%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 56px;
  align-items: center;
  padding: 86px 0 70px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 18px;
}
.hero-actions, .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn.primary { background: var(--gold-500); color: var(--green-950); }
.btn.secondary {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
}
.hero-proof span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.hero-proof strong { color: var(--white); }

.booking-panel {
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--green-900);
  font-weight: 800;
  font-size: 18px;
}
.quick-form, .contact-form {
  display: grid;
  gap: 12px;
}
label {
  display: grid;
  gap: 7px;
  color: #263b35;
  font-size: 13px;
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cfdcd8;
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}
textarea { resize: vertical; min-height: 96px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(25, 162, 116, 0.12);
}
.form-btn { width: 100%; }
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}
.form-status.error { color: #b33828; }

.trust-strip {
  background: var(--green-950);
  color: rgba(255,255,255,0.86);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 700;
}
.trust-grid svg { color: var(--gold-500); }

.section { padding: 86px 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head.compact { max-width: 560px; }
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--green-950);
}
.section-head p:not(.section-kicker), .section-text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro { background: var(--soft); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(20, 32, 29, 0.08);
}
.package-card.featured {
  border-color: rgba(200,155,60,0.65);
  box-shadow: 0 24px 60px rgba(200,155,60,0.2);
}
.package-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.card-body { padding: 22px; }
.tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #e9f7f2;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}
.tag.gold { background: var(--gold-100); color: #8c6418; }
.tag.premium { background: #fff0e9; color: var(--coral-500); }
.card-body h3, .service-grid h3, .why-list h3, .cert-content h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 20px;
  line-height: 1.2;
}
.price {
  margin: 8px 0 14px;
  color: var(--green-700);
  font-weight: 800;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}
li svg { flex: 0 0 17px; width: 17px; height: 17px; color: var(--green-500); margin-top: 2px; }
.card-btn {
  width: 100%;
  margin-top: 22px;
  background: #eaf3ef;
  color: var(--green-900);
}
.card-btn.filled { background: var(--green-700); color: var(--white); }

.services { background: var(--green-950); color: var(--white); }
.services h2, .services .service-grid h3 { color: var(--white); }
.services .section-head p:not(.section-kicker), .services .service-grid p { color: rgba(255,255,255,0.68); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}
.service-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--gold-500);
}
.service-grid p { margin: 10px 0 0; }

.leadership { background: var(--soft); }
.leader-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 32, 29, 0.09);
}
.leader-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.leader-profile h3, .executive-grid h3 {
  margin: 7px 0 0;
  color: var(--green-950);
  font-size: 27px;
  line-height: 1.15;
}
.profile-role {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.profile-credentials {
  margin: 7px 0 14px;
  color: var(--green-700);
  font-weight: 800;
}
.leader-profile p:last-child, .executive-grid p:last-child { color: var(--muted); }
.executive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.executive-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}
.media-grid figure {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}
.media-large { grid-row: span 2; }
.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figcaption, .video-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(6,45,39,0.84);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
}
.videos { background: #f7faf8; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(20, 32, 29, 0.08);
}
.video-frame {
  position: relative;
  background: var(--green-950);
}
.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.video-card h3 {
  margin: 0;
  padding: 13px 14px 15px;
  color: var(--green-950);
  font-size: 14px;
  line-height: 1.35;
}

.certifications { background: var(--soft); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cert-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.cert-preview {
  height: 230px;
  background: #e9efec;
}
.cert-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}
.pdf-preview {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--green-900);
  background: linear-gradient(135deg, #e7f3ee, #fff8e8);
}
.pdf-preview.red {
  color: #9d2530;
  background: linear-gradient(135deg, #fff1f1, #f5f8f6);
}
.pdf-preview.blue {
  color: #174b77;
  background: linear-gradient(135deg, #eaf4fb, #f5f8f6);
}
.pdf-preview svg { width: 52px; height: 52px; }
.cert-content { padding: 22px; }
.cert-content span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}
.cert-content p { color: var(--muted); margin: 10px 0 18px; }
.cert-content a {
  color: var(--green-700);
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.why-list {
  display: grid;
  gap: 14px;
}
.why-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(20, 32, 29, 0.06);
}
.why-list span {
  color: var(--gold-500);
  font-size: 28px;
  font-weight: 800;
}
.why-list p { grid-column: 2; margin: -8px 0 0; color: var(--muted); }

.contact {
  background:
    linear-gradient(90deg, rgba(6,45,39,0.96), rgba(6,45,39,0.9)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Masjid%20al-Haram%20panorama.JPG") center/cover;
  color: var(--white);
}
.contact h2 { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-copy p:not(.section-kicker) { color: rgba(255,255,255,0.74); font-size: 17px; }
.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255,255,255,0.86);
}
.contact-lines a, .contact-lines span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer {
  padding: 54px 0 22px;
  background: #041f1b;
  color: rgba(255,255,255,0.68);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}
.footer p { max-width: 360px; }
.footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 14px;
}
.footer a, .footer span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav-shell { min-height: 70px; }
  .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .nav-links, .nav-action {
    display: none;
  }
  .nav-shell.open {
    flex-wrap: wrap;
    padding: 10px 0 16px;
  }
  .nav-shell.open .nav-links {
    order: 3;
    display: grid;
    width: 100%;
    gap: 10px;
    justify-content: stretch;
  }
  .nav-shell.open .nav-links a {
    padding: 12px;
    border-radius: 8px;
    background: var(--soft);
  }
  .hero-grid, .split, .why-grid, .contact-grid, .leader-profile {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 24px; }
  .booking-panel { max-width: 560px; }
  .trust-grid, .package-grid, .service-grid, .cert-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-large { grid-row: auto; grid-column: span 2; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand { min-width: 0; }
  .brand img { width: 60px; height: 60px; }
  .brand strong { font-size: 12px; }
  .brand small { font-size: 11px; }
  .hero { min-height: 0; }
  .hero-grid { padding: 56px 0 36px; }
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 16px; }
  .section { padding: 58px 0; }
  .trust-grid, .package-grid, .service-grid, .cert-grid, .media-grid, .footer-grid, .form-row, .executive-grid, .video-grid {
    grid-template-columns: 1fr;
  }
  .media-large { grid-column: auto; }
  .media-grid figure { min-height: 245px; }
  .why-list article { grid-template-columns: 48px 1fr; padding: 18px; }
  .why-list p { grid-column: 1 / -1; margin: 0; }
  .footer-bottom { display: grid; }
}

/* 2026 visual refresh using the current Mamil logo palette. */
:root {
  --green-950: #022a21;
  --green-900: #073d31;
  --green-700: #0c674f;
  --green-500: #14946f;
  --gold-500: #b98013;
  --gold-300: #e6c36d;
  --gold-100: #fff3cf;
  --ink: #131820;
  --muted: #53635d;
  --soft: #f6f4ee;
  --shadow: 0 28px 80px rgba(2, 42, 33, 0.18);
}

body {
  font-size: 17px;
  background:
    radial-gradient(circle at top left, rgba(185, 128, 19, 0.08), transparent 32rem),
    linear-gradient(180deg, #fff, #fbfaf6 42%, #fff);
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(2, 42, 33, 0.07);
}

.nav-shell {
  min-height: 106px;
}

.brand {
  min-width: 365px;
}

.brand img {
  width: 104px !important;
  height: 104px !important;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(2, 42, 33, 0.12);
}

.footer img {
  width: 98px;
  height: 98px;
}

.brand strong {
  font-size: 16px;
  color: var(--green-950);
}

.brand small {
  font-size: 13px;
}

.nav-links {
  gap: 22px;
  font-size: 15px;
}

.nav-action,
.btn {
  min-height: 48px;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-action:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(2, 42, 33, 0.18);
}

.hero {
  min-height: calc(100vh - 30px);
}

.hero-media img {
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2,42,33,0.98) 0%, rgba(2,42,33,0.82) 48%, rgba(2,42,33,0.3) 100%),
    linear-gradient(0deg, rgba(2,42,33,0.82), transparent 48%);
}

.hero-grid-single {
  grid-template-columns: minmax(0, 920px);
  min-height: 720px;
  align-content: center;
  padding: 118px 0 92px;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(58px, 8vw, 106px);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 820px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.9);
}

.compliance-eyebrow {
  gap: 10px;
}

.compliance-eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(230, 195, 109, 0.48);
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(2, 42, 33, 0.55);
  color: #ffe6a4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-proof span {
  font-size: 15px;
  border-color: rgba(230, 195, 109, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

.hero-compliance {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 30px;
}

.hero-compliance div,
.compliance-logos span,
.compliance-preview {
  border: 1px solid rgba(230, 195, 109, 0.34);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
    radial-gradient(circle at top left, rgba(230,195,109,0.22), transparent 70%);
}

.hero-compliance div {
  min-height: 92px;
  border-radius: 14px;
  padding: 16px;
  color: var(--white);
}

.hero-compliance strong,
.compliance-logos strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1;
  color: var(--gold-300);
}

.hero-compliance span,
.compliance-logos em {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.trust-grid.compliance-logos {
  gap: 12px;
  padding: 18px 0;
}

.compliance-logos span {
  display: block;
  min-height: 110px;
  border-radius: 14px;
  padding: 22px;
}

.section {
  padding: 104px 0;
}

h2 {
  font-size: clamp(38px, 4.8vw, 64px);
}

.section-head p:not(.section-kicker),
.section-text {
  font-size: 18px;
}

.package-card,
.service-grid article,
.leader-profile,
.executive-grid article,
.cert-card,
.video-card,
.why-list article {
  border-radius: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.package-card:hover,
.service-grid article:hover,
.cert-card:hover,
.video-card:hover,
.why-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(2, 42, 33, 0.14);
}

.package-card img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
}

.card-body h3,
.service-grid h3,
.why-list h3,
.cert-content h3 {
  font-size: 22px;
}

.services {
  background:
    radial-gradient(circle at top right, rgba(230,195,109,0.18), transparent 30rem),
    linear-gradient(135deg, #022a21, #073d31 56%, #051a16);
}

.service-grid article {
  background: rgba(255,255,255,0.075);
}

.leader-profile {
  grid-template-columns: 380px 1fr;
}

.executive-card.with-photo {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
}

.executive-card.with-photo img,
.female-placeholder {
  width: 150px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}

.executive-card.with-photo img {
  object-fit: cover;
  object-position: center top;
}

.female-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(2,42,33,0.93), rgba(12,103,79,0.78)),
    radial-gradient(circle at top, rgba(230,195,109,0.3), transparent 60%);
  color: rgba(255,255,255,0.86);
}

.female-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--gold-300);
}

.media-grid figure {
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(2, 42, 33, 0.1);
}

.media-grid img {
  transition: transform 500ms ease;
}

.media-grid figure:hover img {
  transform: scale(1.04);
}

.compliance-preview {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  height: 230px;
  padding: 24px;
  text-align: center;
  color: var(--green-950);
}

.compliance-preview strong {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 3px solid currentColor;
  border-radius: 999px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  letter-spacing: 0;
  background: rgba(255,255,255,0.72);
}

.compliance-preview small {
  max-width: 180px;
  color: var(--muted);
  font-weight: 800;
}

.iata-mark { color: #911f2f; }
.cac-mark { color: #0c674f; }
.scuml-mark { color: #174b77; }

.contact {
  background:
    linear-gradient(90deg, rgba(2,42,33,0.96), rgba(2,42,33,0.88)),
    url("../images/events/mamil-team-at-haram.jpg") center/cover;
}

.contact-form {
  border-radius: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-18px, -10px, 0); }
}

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

@media (max-width: 980px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 84px !important;
    height: 84px !important;
  }

  .hero-grid-single {
    min-height: 620px;
    padding: 82px 0 64px;
  }

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

  .leader-profile {
    grid-template-columns: 1fr;
  }

  .executive-card.with-photo {
    grid-template-columns: 120px 1fr;
  }

  .executive-card.with-photo img,
  .female-placeholder {
    width: 120px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand img {
    width: 76px !important;
    height: 76px !important;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 46px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-media img {
    animation: none;
    transform: none;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-proof {
    width: 100%;
  }

  .hero-proof span {
    flex: 1 1 calc(50% - 8px);
    min-width: 132px;
  }

  .hero-compliance,
  .trust-grid.compliance-logos {
    grid-template-columns: 1fr;
  }

  .hero-compliance div,
  .compliance-logos span {
    min-height: 84px;
  }

  .executive-card.with-photo {
    grid-template-columns: 1fr;
  }

  .executive-card.with-photo img,
  .female-placeholder {
    width: 100%;
    max-width: 240px;
  }

  .package-card img {
    aspect-ratio: 0.72;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-media,
  .hero-overlay {
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-media img {
    max-width: 100vw;
    animation: none !important;
    transform: none !important;
  }
}

/* Final brand polish: larger typography, real compliance logos, green/gold consistency. */
body {
  font-size: 19px;
}

.nav-shell {
  min-height: 112px;
}

.brand {
  gap: 14px;
  min-width: 390px;
}

.brand img {
  width: 112px !important;
  height: 112px !important;
}

.brand strong {
  font-size: 18px;
  line-height: 1.16;
}

.brand small {
  font-size: 14px;
  color: #3c514b;
}

.nav-links {
  gap: 20px;
  font-size: 19px;
  font-weight: 900;
}

.nav-action,
.btn {
  font-size: 18px;
  font-weight: 850;
}

.hero-cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}

.hero-cert-logos img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(230, 195, 109, 0.62);
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hero h1 {
  color: #fff;
}

.hero-lead {
  font-weight: 500;
}

.hero-proof span {
  font-size: 17px;
}

.section-kicker {
  font-size: 17px;
  color: var(--gold-500);
}

h2 {
  color: var(--green-950);
  font-size: clamp(42px, 5vw, 68px);
}

.section-head p:not(.section-kicker),
.section-text,
.contact-copy p:not(.section-kicker) {
  font-size: 21px;
  line-height: 1.72;
}

.card-body h3,
.service-grid h3,
.why-list h3,
.cert-content h3 {
  font-size: 27px;
}

.leader-profile h3,
.executive-grid h3 {
  font-size: 32px;
}

.price,
.profile-credentials {
  font-size: 19px;
}

li,
.service-grid p,
.leader-profile p,
.executive-grid p,
.cert-content p,
.why-list p,
.footer p,
.footer a,
.footer span,
.contact-lines a,
.contact-lines span,
label,
input,
select,
textarea {
  font-size: 18px;
}

.tag,
.profile-role,
.cert-content span {
  font-size: 15px;
}

.video-card h3 {
  font-size: 20px;
}

figcaption,
.video-caption {
  font-size: 16px;
}

.logo-preview {
  display: grid;
  place-items: center;
  height: 230px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(230, 195, 109, 0.18), transparent 62%),
    linear-gradient(145deg, #fff, #f7fbf8);
}

.logo-preview img {
  width: auto;
  height: auto;
  max-width: 178px;
  max-height: 154px;
  object-fit: contain;
  background: transparent;
}

.cert-content a,
.nav-links a:hover {
  color: var(--green-700);
}

.btn.primary,
.tag.gold,
.why-list span {
  color: var(--green-950);
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 96px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 92px !important;
    height: 92px !important;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-links {
    font-size: 18px;
  }

  .hero-cert-logos img {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 18px;
  }

  .nav-shell {
    min-height: 88px;
    width: min(100% - 22px, 1240px);
  }

  .brand img {
    width: 78px !important;
    height: 78px !important;
  }

  .brand span {
    max-width: 190px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 13px;
  }

  .nav-links {
    font-size: 18px;
  }

  .hero-cert-logos {
    gap: 10px;
  }

  .hero-cert-logos img {
    width: 64px;
    height: 64px;
    padding: 7px;
    border-radius: 12px;
  }

  h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .section-head p:not(.section-kicker),
  .section-text,
  .contact-copy p:not(.section-kicker) {
    font-size: 18px;
  }

  .card-body h3,
  .service-grid h3,
  .why-list h3,
  .cert-content h3 {
    font-size: 23px;
  }

  .leader-profile h3,
  .executive-grid h3 {
    font-size: 27px;
  }
}
