:root {
  --ink: #0a4b49;
  --ink-2: #2d6462;
  --green: #00675f;
  --green-dark: #004b47;
  --whatsapp: #19b463;
  --gold: #c99548;
  --gold-soft: #ead9bd;
  --paper: #fffdfa;
  --soft: #f7f3eb;
  --line: #e6ddd0;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(17, 62, 59, 0.11);
  --soft-shadow: 0 10px 24px rgba(17, 62, 59, 0.08);
  --radius: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.55;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 149, 72, 0.58);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(10, 75, 73, 0.1);
  box-shadow: 0 4px 22px rgba(24, 59, 57, 0.06);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100%, var(--container));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  width: 158px;
  flex: 0 0 auto;
}

.brand img {
  width: 158px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

.site-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #163f3d;
  font-size: 15px;
  font-weight: 800;
}

.site-menu a {
  position: relative;
  padding: 25px 0 21px;
}

.site-menu a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 14px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(50%);
  transition: width 160ms ease;
}

.site-menu a:hover::after,
.site-menu a.active::after {
  width: 40px;
}

.whatsapp,
.primary-action,
.secondary-action,
.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.whatsapp svg,
.primary-action svg,
.secondary-action svg,
.outline-action svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}

.menu-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 603px;
  overflow: hidden;
  background: var(--soft);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.1) 0%, rgba(255, 253, 250, 0.35) 31%, rgba(255, 253, 250, 0.92) 60%, rgba(255, 253, 250, 1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 253, 250, 0.96) 100%);
}

.hero-content {
  position: relative;
  width: min(100%, var(--container));
  min-height: 603px;
  margin: 0 auto;
  padding: 75px 18px 34px;
  display: grid;
  align-items: center;
}

.hero-copy {
  width: min(100%, 520px);
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.hero h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy p {
  width: min(100%, 500px);
  margin: 21px 0 0;
  color: #295a58;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  gap: 14px;
  width: min(100%, 470px);
  margin-top: 28px;
}

.primary-action {
  min-height: 56px;
  padding: 0 26px;
  color: var(--white);
  background: linear-gradient(180deg, #007368, #005e57);
  box-shadow: 0 12px 22px rgba(0, 103, 95, 0.22);
}

.secondary-action {
  min-height: 54px;
  padding: 0 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
  border: 2px solid rgba(0, 103, 95, 0.55);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(100%, 460px);
  margin-top: 29px;
  color: #355e5b;
  font-size: 14px;
  font-weight: 700;
}

.hero-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}

.benefits {
  padding: 24px 18px 20px;
  background: linear-gradient(180deg, #fffefa 0%, var(--paper) 100%);
}

.benefits-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 25px 23px 23px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 221, 208, 0.58);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(31, 73, 70, 0.08);
}

.benefit {
  min-height: 134px;
  padding: 4px 22px 0;
  text-align: center;
  border-left: 1px solid var(--line);
}

.benefit:first-child {
  border-left: 0;
}

.benefit svg,
.why-card svg {
  width: 39px;
  height: 39px;
  margin: 0 auto 11px;
  fill: none;
  stroke: #3c7775;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h2,
.benefit p,
.section-title h2,
.course-card h3,
.why-card h3,
.why-card p,
.gallery-note,
.location-info p,
.faq-list summary,
.faq-list p,
.final-cta h2,
.final-cta p,
.site-footer h2,
.site-footer p {
  overflow-wrap: anywhere;
}

.benefit h2 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 900;
}

.benefit p {
  margin: 6px auto 0;
  max-width: 185px;
  color: #53706e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 24px 18px;
}

.intent-section,
.courses-section,
.testimonials-section,
.why-section,
.gallery-section,
.steps-section,
.location-section,
.faq-section,
.final-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 680px;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

.section-title h2 {
  position: relative;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 39px);
  line-height: 1.18;
  font-weight: 900;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: var(--gold);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.course-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.course-image {
  position: relative;
  aspect-ratio: 1.55;
  overflow: hidden;
  background: var(--soft);
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.english-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(10,75,73,0.28));
}

.english-image span {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #143d79;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.ielts-image {
  background: var(--soft);
}

.ielts-image::after,
.arabic-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,75,73,0.08), rgba(10,75,73,0.36));
}

.ielts-image span {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 2;
  min-width: 72px;
  height: 30px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #b9282c, #70212a);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.arabic-image {
  background: var(--soft);
  color: var(--white);
  text-align: center;
}

.arabic-image strong {
  position: absolute;
  right: 12px;
  left: 12px;
  top: calc(50% - 24px);
  z-index: 2;
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 3px 10px rgba(0,0,0,0.22);
}

.arabic-image span {
  position: absolute;
  right: 12px;
  left: 12px;
  top: calc(50% + 19px);
  z-index: 2;
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 3px 10px rgba(0,0,0,0.22);
}

.course-body {
  padding: 22px 20px 21px;
  text-align: center;
}

.course-body h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 900;
}

.course-body p {
  margin: 9px 0 14px;
  color: #536d6b;
  font-size: 16px;
  font-weight: 700;
}

.course-points {
  min-height: 72px;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 7px;
  color: #456866;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  list-style: none;
  text-align: right;
}

.course-points li {
  position: relative;
  padding-right: 18px;
}

.course-points li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.course-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 148px;
  padding: 0 18px;
  color: #a8712c;
  background: #fffaf2;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.why-section {
  padding-top: 30px;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 322px);
  gap: 28px;
  align-items: center;
  direction: ltr;
}

.center-photo {
  min-height: 290px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--soft-shadow);
  padding: 0;
}

.center-photo img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  direction: rtl;
}

.center-photo {
  direction: rtl;
}

.why-card {
  min-height: 197px;
  padding: 23px 17px 19px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(230, 221, 208, 0.8);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(31, 73, 70, 0.06);
}

.why-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 900;
}

.why-card p {
  margin: 10px 0 0;
  color: #536d6b;
  font-size: 14px;
  font-weight: 700;
}

.gallery-section {
  padding-top: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(270px, 31vw, 380px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  padding: 2px 2px 12px;
  direction: ltr;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-grid:focus-visible {
  outline: 3px solid rgba(201, 149, 72, 0.58);
  outline-offset: 5px;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  scroll-snap-align: center;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.gallery-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin: 20px 0 0;
  color: #466866;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.gallery-note svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: 15px;
  box-shadow: var(--soft-shadow);
  direction: ltr;
}

.map-art {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  border-radius: 12px;
  background: #edf6f5;
}

.carousel-dots {
  min-height: 10px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  direction: ltr;
}

.carousel-dots span {
  width: 18px;
  height: 4px;
  display: block;
  background: rgba(0, 103, 95, 0.18);
  border-radius: 999px;
  transition: width 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.carousel-dots span.is-active {
  width: 34px;
  background: var(--green);
}

.location-photo {
  position: relative;
  min-height: 235px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
}

.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 235px;
  object-fit: cover;
}

.location-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(0, 75, 71, 0.82);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.map-water {
  position: absolute;
  inset: 0 0 auto auto;
  width: 47%;
  height: 100%;
  background: #bae4ed;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 34% 100%, 49% 54%, 20% 22%);
}

.map-park {
  position: absolute;
  left: -2%;
  bottom: -6%;
  width: 47%;
  height: 58%;
  background: #cfe7ce;
  transform: rotate(-7deg);
}

.map-streets {
  position: absolute;
  inset: 0;
  opacity: 0.92;
  background:
    linear-gradient(35deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%),
    linear-gradient(104deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(196, 207, 207, 0.72) 29px 31px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(196, 207, 207, 0.62) 45px 47px);
}

.map-label {
  position: absolute;
  right: 76px;
  bottom: 46px;
  color: #5b6d72;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.map-label span {
  font-size: 18px;
}

.pin {
  position: absolute;
  right: 48%;
  top: 39%;
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 22px rgba(0, 75, 71, 0.25);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 11px;
  background: var(--paper);
  border-radius: 50%;
}

.location-info {
  min-height: 235px;
  padding: 26px 28px;
  display: grid;
  align-content: center;
  gap: 18px;
  background: linear-gradient(135deg, #fffaf2, #fffdf9);
  border-radius: 12px;
  direction: rtl;
}

.location-info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.location-info svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: #376b69;
  stroke-width: 2;
}

.phone-link {
  color: inherit;
  border-bottom: 2px solid rgba(201, 149, 72, 0.55);
}

.phone-link:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.outline-action {
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 103, 95, 0.5);
}

.small-whatsapp {
  min-height: 42px;
  padding: 0 21px;
  color: var(--white);
  background: var(--whatsapp);
}

.faq-section {
  padding-top: 32px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.95);
  border-radius: 9px;
  box-shadow: 0 5px 15px rgba(31, 73, 70, 0.035);
}

.faq-list summary {
  position: relative;
  min-height: 42px;
  padding: 10px 18px 10px 54px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "⌄";
  position: absolute;
  left: 18px;
  top: 8px;
  color: var(--ink-2);
  font-size: 22px;
  line-height: 1;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 15px;
  color: #526d6b;
  font-size: 16px;
  font-weight: 700;
}

.final-cta {
  position: relative;
  width: min(calc(100% - 36px), var(--container));
  min-height: 190px;
  margin: 36px auto 38px;
  overflow: hidden;
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201,149,72,0.25), transparent 31%),
    linear-gradient(135deg, #006d63, #003f3b);
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: -42px;
  top: -30px;
  width: 210px;
  height: 210px;
  border: 2px solid rgba(201, 149, 72, 0.42);
  border-radius: 50%;
}

.cta-mosque {
  position: absolute;
  inset: auto auto 0 0;
  width: 38%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0,63,59,0.05), rgba(0,63,59,0.95)),
    url("assets/abjad-kids-active-class.webp") center/cover;
  opacity: 0.58;
}

.cta-content {
  position: relative;
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 37px 18px 30px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 43px);
  line-height: 1.16;
  font-weight: 900;
}

.final-cta p {
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 800;
}

.final-cta .primary-action {
  min-width: 252px;
  min-height: 52px;
  background: var(--whatsapp);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.sticky-contact-bar {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 80;
  width: min(430px, calc(100% - 28px));
  min-height: 62px;
  padding: 7px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(230, 221, 208, 0.95);
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(17, 62, 59, 0.18);
  backdrop-filter: blur(14px);
  direction: rtl;
}

.sticky-contact-bar a {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.sticky-call {
  background: linear-gradient(180deg, #007368, #005e57);
}

.sticky-whatsapp {
  background: var(--whatsapp);
}

.sticky-contact-bar svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  background: #fffefa;
  border-top: 1px solid rgba(230, 221, 208, 0.75);
  text-align: center;
}

.footer-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 33px 18px 28px;
  display: grid;
  grid-template-columns: 1.34fr 0.85fr 0.95fr 1.05fr;
  gap: 38px;
  justify-items: center;
  text-align: center;
}

.footer-grid > div {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
}

.footer-brand img {
  width: 142px;
  height: 76px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-inline: auto;
}

.site-footer h2 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.site-footer p {
  margin: 11px 0 0;
  color: #546e6c;
  font-size: 15px;
  font-weight: 700;
}

.site-footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  margin-right: auto;
  margin-left: auto;
  color: #405f5d;
  font-size: 15px;
  font-weight: 700;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.social-links a {
  width: 32px;
  height: 32px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(10,75,73,0.3);
  border-radius: 50%;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-social {
  flex: 0 0 auto;
  margin-top: 0;
}

.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.site-footer .footer-social a {
  width: 32px;
  height: 32px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.contact-line {
  line-height: 1.5;
}

.copyright {
  min-height: 40px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.hero-copy .hero-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 7px 12px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 149, 72, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.hero-proof-row {
  width: min(100%, 520px);
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
  align-items: stretch;
}

.hero-copy .hero-microcopy {
  margin: 14px 0 0;
  color: #315f5d;
  font-size: 14px;
  font-weight: 800;
}

.google-rating-badge {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding: 8px;
  display: grid;
  grid-template-columns: 46px 82px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: #254d4b;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(201, 149, 72, 0.36);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(31, 73, 70, 0.08);
}

.review-abjad-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(10, 75, 73, 0.13);
  border-radius: 9px;
}

.review-abjad-mark img {
  width: 39px;
  height: 28px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.google-rating-logo {
  width: 82px;
  height: auto;
}

.rating-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.google-rating-badge strong {
  font-size: 14px;
  font-weight: 900;
}

.rating-copy span {
  color: #8a642e;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ielts-hero-badge {
  min-width: 0;
  min-height: 64px;
  padding: 7px 8px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: #6a1420;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(201, 149, 72, 0.34);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(31, 73, 70, 0.08);
  text-align: center;
}

.ielts-hero-badge img {
  width: 106px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.ielts-hero-badge span {
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
}

.stars {
  color: #d99a23;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 1;
}

.section-title p {
  width: min(100%, 620px);
  margin: 10px auto 0;
  color: #526d6b;
  font-size: 17px;
  font-weight: 700;
}

.intent-section {
  padding-top: 30px;
}

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

.intent-card {
  min-width: 0;
  min-height: 208px;
  padding: 19px 16px 17px;
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.92);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.intent-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 149, 72, 0.7);
  box-shadow: 0 15px 28px rgba(31, 73, 70, 0.1);
}

.intent-icon {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  padding: 4px 10px;
  display: inline-grid;
  place-items: center;
  color: var(--green-dark);
  background: #fff7e8;
  border: 1px solid rgba(201, 149, 72, 0.36);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.intent-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.intent-card p {
  margin: 0;
  color: #536d6b;
  font-size: 15px;
  font-weight: 700;
}

.intent-card strong {
  margin-top: auto;
  color: #996c2d;
  font-size: 14px;
  font-weight: 900;
}

.intent-card[dir="ltr"],
.course-card[dir="ltr"] .course-body {
  text-align: left;
}

.course-card[dir="ltr"] .course-for,
.course-card[dir="ltr"] .course-outcome {
  text-align: left;
}

#general-english,
#ielts,
#kids,
#arabic-course,
#testimonials,
#location,
#faq {
  scroll-margin-top: 110px;
}

.testimonials-section {
  padding-top: 30px;
}

.testimonials-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 37vw, 460px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  padding: 2px 2px 12px;
  direction: ltr;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-track:focus-visible {
  outline: 3px solid rgba(201, 149, 72, 0.58);
  outline-offset: 5px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-shot {
  min-width: 0;
  min-height: clamp(178px, 20vw, 250px);
  margin: 0;
  padding: 10px;
  display: grid;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.92);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  scroll-snap-align: center;
}

.testimonial-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.course-card {
  display: grid;
}

.course-label {
  width: max-content;
  margin: 0 auto 7px;
  padding: 4px 9px;
  color: #8a642e;
  background: #fff7e8;
  border: 1px solid rgba(201, 149, 72, 0.32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.course-for,
.course-outcome {
  margin: 10px 0 0;
  color: #4f6967;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  text-align: right;
}

.course-for strong,
.course-outcome strong {
  color: var(--green-dark);
  font-weight: 900;
}

.course-body .course-cta {
  width: 100%;
  margin-top: 17px;
  color: var(--white);
  background: linear-gradient(180deg, #007368, #005e57);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0, 103, 95, 0.16);
}

.steps-section {
  padding-top: 34px;
}

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

.step-card {
  min-height: 170px;
  padding: 22px 18px;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.step-card span {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.step-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.step-card p {
  margin: 9px 0 0;
  color: #536d6b;
  font-size: 15px;
  font-weight: 700;
}

.section-action {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.location-points {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #456866;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.location-points li {
  position: relative;
  padding-right: 18px;
}

.location-points li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.final-rating {
  margin: 0 0 8px;
  color: #ffd98f;
  font-size: 16px;
  font-weight: 900;
}

.final-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.review-text-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumbs {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 16px 18px 0;
  color: #607977;
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-right: 7px;
  color: #9b8b74;
}

.breadcrumbs a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-hero .hero-copy {
  width: min(100%, 575px);
}

.landing-hero .hero-actions {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  width: min(100%, 560px);
}

.landing-hero .secondary-action {
  background: rgba(255, 255, 255, 0.82);
}

.landing-proof-list {
  width: min(100%, 560px);
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  list-style: none;
}

.landing-proof-list li {
  min-height: 56px;
  padding: 9px 10px;
  display: grid;
  align-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 149, 72, 0.3);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.landing-section {
  padding-top: 34px;
}

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

.detail-card,
.result-panel,
.hub-intro-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.detail-card {
  min-height: 190px;
  padding: 22px 18px;
  text-align: center;
}

.detail-card svg {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  fill: none;
  stroke: #3c7775;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-card h3,
.result-panel h3,
.hub-intro-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
}

.detail-card p,
.result-panel p,
.hub-intro-card p {
  margin: 10px 0 0;
  color: #536d6b;
  font-size: 15px;
  font-weight: 700;
}

.learning-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.learning-photo {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
  box-shadow: var(--soft-shadow);
}

.learning-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.learning-list {
  margin: 0;
  padding: 24px;
  display: grid;
  gap: 12px;
  align-content: center;
  background: linear-gradient(135deg, #fffaf2, #fffdf9);
  border: 1px solid rgba(230, 221, 208, 0.9);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  list-style: none;
}

.learning-list li {
  position: relative;
  padding: 14px 38px 14px 14px;
  color: #466866;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(230, 221, 208, 0.85);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
}

.learning-list li::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.result-panel {
  padding: 25px 24px;
}

.result-panel ul {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: #456866;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.result-panel li {
  position: relative;
  padding-right: 20px;
}

.result-panel li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hub-hero {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 44px 18px 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}

.hub-intro-card {
  padding: 34px 30px;
}

.hub-intro-card h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.14;
  font-weight: 900;
}

.hub-intro-card p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
}

.hub-media {
  min-height: 340px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hub-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.hub-card .course-body a,
.course-nav-link {
  margin-top: 17px;
}

.primary-action,
.secondary-action,
.outline-action,
.course-body a {
  white-space: normal;
  text-align: center;
}

.sticky-contact-bar {
  grid-template-columns: 1.18fr 0.82fr;
  padding-bottom: max(7px, env(safe-area-inset-bottom));
}

.sticky-whatsapp {
  background: linear-gradient(180deg, #1fc46d, #11a857);
  box-shadow: 0 9px 16px rgba(25, 180, 99, 0.24);
}

.sticky-call {
  color: var(--green-dark) !important;
  background: #eef7f5;
  border: 1px solid rgba(0, 103, 95, 0.28);
}

.final-actions .primary-action {
  width: min(100%, 370px);
}

@media (max-width: 980px) {
  .nav-shell {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 8px;
  }

  .brand {
    order: 1;
  }

  .menu-button {
    display: inline-flex;
    order: 2;
    margin-right: auto;
  }

  .header-social {
    order: 3;
    display: none;
  }

  .site-menu {
    order: 5;
    flex-basis: 100%;
    display: none;
    justify-content: stretch;
    gap: 0;
    padding: 6px 0 9px;
  }

  .site-menu.is-open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .site-menu a {
    padding: 12px 10px;
    border-top: 1px solid rgba(230, 221, 208, 0.65);
  }

  .site-menu a::after {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 570px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255,253,250,0.05), rgba(255,253,250,0.82) 50%, rgba(255,253,250,1) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,253,250,0.95));
  }

  .hero-copy {
    width: min(100%, 390px);
  }

  .benefits-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:nth-last-child(-n+2) {
    border-bottom: 0;
  }

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

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

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

  .why-layout,
  .location-card,
  .learning-band,
  .hub-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .center-photo {
    order: -1;
  }

  .hub-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }

  .nav-shell {
    min-height: 66px;
    padding-inline: 12px;
    gap: 8px;
  }

  .brand,
  .brand img {
    width: 120px;
  }

  .brand img {
    height: 54px;
  }

  .menu-button {
    padding: 8px 10px;
    font-size: 15px;
  }

  .header-social {
    order: 3;
    flex-basis: auto;
    justify-content: flex-end;
    gap: 6px;
    margin-right: 0;
  }

  .social-links a {
    width: 29px;
    height: 29px;
  }

  .social-links svg {
    width: 15px;
    height: 15px;
  }

  .site-menu.is-open {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-media {
    position: relative;
    height: 196px;
  }

  .hero-media img {
    object-position: 21% center;
  }

  .hero-shade {
    inset: 164px 0 0;
    background: linear-gradient(180deg, rgba(255,253,250,0), var(--paper) 30%);
  }

  .hero-content {
    min-height: 0;
    padding: 0 18px 22px;
  }

  .hero-copy {
    width: 100%;
    margin-top: -30px;
    padding: 15px 15px 0;
    background: linear-gradient(180deg, rgba(255,253,250,0.93), var(--paper));
    border-radius: 18px 18px 0 0;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  .landing-hero h1 {
    font-size: 29px;
  }

  .landing-hero .hero-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-right: auto;
    margin-left: auto;
  }

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

  .landing-hero .hero-actions,
  .landing-hero .hero-proof-row,
  .landing-proof-list {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-proof-row {
    grid-template-columns: minmax(0, 1fr) 94px;
    gap: 7px;
    margin-bottom: 10px;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    margin-top: 16px;
  }

  .primary-action,
  .secondary-action {
    min-height: 50px;
    padding-inline: 16px;
    line-height: 1.25;
  }

  .landing-hero .hero-actions,
  .landing-proof-list {
    grid-template-columns: 1fr;
  }

  .landing-proof-list {
    gap: 8px;
  }

  .hero-copy .hero-kicker {
    margin: 0 auto 8px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .hero-copy .hero-microcopy {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .google-rating-badge {
    grid-template-columns: 36px 66px minmax(0, 1fr);
    gap: 6px;
    padding: 7px;
  }

  .review-abjad-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .review-abjad-mark img {
    width: 31px;
    height: 22px;
  }

  .google-rating-logo {
    width: 66px;
  }

  .google-rating-badge strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .rating-copy span {
    display: none;
  }

  .ielts-hero-badge {
    min-height: 52px;
    padding: 6px;
  }

  .ielts-hero-badge img {
    width: 80px;
    max-height: 30px;
  }

  .ielts-hero-badge span {
    font-size: 11px;
  }

  .hero-note {
    align-items: flex-start;
    font-size: 13px;
  }

  .benefits {
    padding-top: 13px;
  }

  .benefits-shell {
    grid-template-columns: 1fr;
    padding: 8px 14px;
    border-radius: 17px;
  }

  .benefit {
    min-height: auto;
    padding: 18px 8px;
  }

  .benefit:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .course-grid,
  .intent-grid,
  .steps-grid,
  .why-cards,
  .detail-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hub-hero {
    padding-top: 28px;
  }

  .hub-intro-card {
    padding: 26px 20px;
  }

  .hub-intro-card h1 {
    font-size: 31px;
  }

  .hub-media,
  .hub-media img,
  .learning-photo,
  .learning-photo img {
    min-height: 230px;
  }

  .learning-list {
    padding: 16px;
  }

  .learning-list li {
    padding: 12px 32px 12px 12px;
    font-size: 15px;
  }

  .testimonials-section {
    padding-top: 18px;
  }

  .testimonials-track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(274px, 88%);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 6px;
    padding: 2px 2px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-shot {
    min-height: 178px;
    padding: 9px;
    scroll-snap-align: center;
  }

  .gallery-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 84%);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 6px;
    padding: 2px 2px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid figure {
    scroll-snap-align: center;
    border-radius: 12px;
  }

  .gallery-grid img {
    aspect-ratio: 1.36;
  }

  .intent-card,
  .step-card {
    min-height: 0;
  }

  .section {
    padding: 22px 18px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }

  .course-body h3 {
    font-size: 24px;
  }

  .course-body {
    padding: 19px 16px 18px;
  }

  .course-for,
  .course-outcome {
    font-size: 14px;
  }

  .why-card {
    min-height: 0;
  }

  .center-photo {
    min-height: 220px;
  }

  .location-card {
    padding: 8px;
  }

  .map-art {
    min-height: 210px;
  }

  .location-photo,
  .location-photo img {
    min-height: 240px;
  }

  .location-info {
    min-height: auto;
    padding: 21px 16px;
  }

  .location-info p {
    font-size: 17px;
  }

  .location-actions {
    display: grid;
  }

  .faq-list summary {
    min-height: 46px;
    font-size: 17px;
  }

  .final-cta {
    width: min(calc(100% - 28px), var(--container));
    margin-top: 27px;
    margin-bottom: 110px;
  }

  .final-cta h2 {
    font-size: 27px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .sticky-contact-bar {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: min(390px, calc(100% - 22px));
    min-height: 58px;
    padding: 6px 6px max(6px, env(safe-area-inset-bottom));
    gap: 6px;
  }

  .sticky-contact-bar a {
    min-height: 46px;
    padding: 0 9px;
    font-size: 14px;
    gap: 6px;
  }

  .sticky-contact-bar svg {
    width: 20px;
    height: 20px;
  }

  .cta-mosque {
    width: 100%;
    opacity: 0.22;
  }

  .footer-grid {
    gap: 26px;
    padding-top: 28px;
    padding-bottom: 112px;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    gap: 6px;
    padding-inline: 10px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .brand img {
    height: 51px;
  }

  .menu-button {
    padding: 7px 9px;
    font-size: 14px;
  }

  .social-links a {
    width: 27px;
    height: 27px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-media {
    height: 184px;
  }

  .testimonials-track {
    grid-auto-columns: minmax(260px, 90%);
  }

  .testimonial-shot {
    min-height: 166px;
  }

  .hero-proof-row {
    grid-template-columns: minmax(0, 1fr) 86px;
    gap: 6px;
  }

  .google-rating-badge {
    grid-template-columns: 34px 61px minmax(0, 1fr);
    gap: 5px;
  }

  .review-abjad-mark {
    width: 34px;
    height: 34px;
  }

  .review-abjad-mark img {
    width: 29px;
    height: 21px;
  }

  .google-rating-logo {
    width: 61px;
  }

  .ielts-hero-badge img {
    width: 74px;
  }

  .sticky-contact-bar a {
    padding: 0 7px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
