/* =============================================================================
   Saqaya Hqaal — Business 4 inspired brand layer
   Light corporate canvas, wave hero, gradient banners, soft cards
   ============================================================================= */

:root {
  --brand-deep: #0e3d5a;
  --brand-deep-2: #14506e;
  --brand-water: #2ba7d1;
  --brand-water-soft: #7cc4e0;
  --brand-mountain: #4fa84a;
  --brand-mountain-soft: #8fcb6b;
  --brand-mist: #f3f8fb;
  --brand-ink: #1a1a1a;
  --brand-ink-muted: #6b7a86;
  --brand-surface: #ffffff;
  --brand-line: rgba(14, 61, 90, 0.08);
  --grad-cta: linear-gradient(135deg, #2ba7d1 0%, #4fa84a 100%);
  --grad-banner: linear-gradient(90deg, #0e3d5a 0%, #2ba7d1 55%, #4fa84a 100%);
  --shadow-soft: 0 18px 50px rgba(14, 61, 90, 0.08);
  --shadow-card: 0 14px 40px rgba(14, 61, 90, 0.07);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --font-ar: "Tajawal", "IBM Plex Arabic", "Cairo", system-ui, sans-serif;
  --font-en: "Outfit", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 80px;
  --main: var(--brand-water);
  --hover: var(--brand-deep);
  --main2: var(--grad-cta);
  --white: #ffffff;
  --gray: var(--brand-ink-muted);
}

/* ---------- Base ---------- */
body.brand-site {
  font-family: var(--font-ar);
  font-weight: 500;
  color: var(--brand-ink);
  background: var(--brand-surface);
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body.brand-site {
  font-family: var(--font-en);
}

.body-content {
  margin-top: 0;
}

body.brand-site a:focus-visible,
body.brand-site button:focus-visible,
body.brand-site input:focus-visible,
body.brand-site textarea:focus-visible {
  outline: 2px solid var(--brand-water);
  outline-offset: 3px;
}

.sec-padd {
  padding-top: var(--s-8);
  padding-bottom: var(--s-8);
}

/* Shared typography primitives */
.xtra-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-water);
  margin-bottom: var(--s-3);
}

.xtra-heading {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--brand-ink);
  line-height: 1.3;
  margin-bottom: var(--s-4);
}

.xtra-lead {
  color: var(--brand-ink-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 0;
}

.xtra-lead--center {
  margin-inline: auto;
}

.xtra-center {
  text-align: center;
  margin-bottom: var(--s-7);
}

.text-accent {
  color: var(--brand-water);
}

.xtra-icon-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--s-4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand-mountain);
  font-size: 1.35rem;
  background: rgba(79, 168, 74, 0.1);
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
  background: #fff;
  color: var(--brand-water) !important;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(43, 167, 209, 0.22);
  color: var(--brand-deep) !important;
}

.btn-pill--solid {
  background-image: var(--grad-cta);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(43, 167, 209, 0.35);
}

.btn-pill--solid:hover {
  color: #fff !important;
}

.link-underline {
  color: var(--brand-water) !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.btn-main {
  background-image: var(--grad-cta) !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  width: auto !important;
  min-width: 160px;
  padding-inline: var(--s-5) !important;
  box-shadow: 0 10px 28px rgba(43, 167, 209, 0.3);
  border: 0 !important;
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  .btn-pill:hover {
    transform: none;
  }
}

/* Reveal */
.brand-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

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

.brand-rise {
  opacity: 0;
  transform: translateY(16px);
  animation: brandRiseIn 0.65s var(--ease) forwards;
}

.brand-rise--2 { animation-delay: 0.12s; }

@keyframes brandRiseIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-reveal,
  .brand-rise {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Header ---------- */
header.brand-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: var(--s-3);
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid var(--brand-line);
  box-shadow: 0 8px 28px rgba(14, 61, 90, 0.05) !important;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  header.brand-header {
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
  }
}

header.brand-header .the-logo {
  max-height: 58px;
}

header.brand-header .nav_bar a {
  color: var(--brand-ink);
  font-weight: 600;
  padding: var(--s-2) var(--s-3);
  border-radius: 10px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

header.brand-header .nav_bar a:hover,
header.brand-header .nav_bar a.active {
  color: var(--brand-water) !important;
  background: rgba(43, 167, 209, 0.1);
}

header.brand-header .dropdown-toggle {
  color: var(--brand-deep);
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--brand-line);
  background: #fff;
}

header.brand-header .dropdown-menu .dropdown-item {
  color: var(--brand-deep) !important;
}

header.brand-header .close-open-nav > div span {
  background: var(--brand-water) !important;
}

/* ---------- Hero (Business 4 split + blob) ---------- */
section.hero.hero--xtra {
  background: #fff;
  padding-top: 96px;
  padding-bottom: var(--s-6);
  overflow: hidden;
}

section.hero.hero--xtra .owl-carousel {
  min-height: auto;
}

.hero-xtra {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-7);
  align-items: center;
  min-height: calc(100vh - 140px);
  padding-block: var(--s-6);
}

.hero-xtra__brand {
  display: block;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--brand-ink);
  margin-bottom: var(--s-2);
  line-height: 1.15;
}

.hero-xtra__title {
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: var(--brand-ink);
  line-height: 1.4;
  margin-bottom: var(--s-4);
}

.hero-xtra__lead {
  color: var(--brand-ink-muted);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: var(--s-5);
}

.hero-xtra__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
}

.hero-blob {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline-start: auto;
  aspect-ratio: 1 / 1.05;
  border-radius: 62% 38% 46% 54% / 48% 42% 58% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(14, 61, 90, 0.06);
  animation: blobMorph 12s ease-in-out infinite;
}

.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 62% 38% 46% 54% / 48% 42% 58% 52%; }
  50% { border-radius: 42% 58% 56% 44% / 54% 46% 54% 46%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob {
    animation: none !important;
  }
}

section.hero.hero--xtra .owl-dots {
  margin-top: var(--s-4);
}

section.hero.hero--xtra .owl-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

section.hero.hero--xtra .owl-nav > div {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff !important;
  color: var(--brand-water);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  margin: 0;
}

section.hero.hero--xtra .owl-nav .owl-prev { inset-inline-start: 0; }
section.hero.hero--xtra .owl-nav .owl-next { inset-inline-end: 0; }

/* ---------- About ---------- */
.about-xtra {
  background: var(--brand-mist);
}

.about-xtra__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.about-xtra__copy .xtra-icon-mark {
  margin-inline: 0 auto 0 0;
}

html[lang="ar"] .about-xtra__copy .xtra-icon-mark {
  margin-inline: 0 0 0 auto;
}

.about-xtra__visual {
  position: relative;
  min-height: 380px;
}

.about-xtra__shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-xtra__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-xtra__shot--main {
  width: 82%;
  height: 360px;
}

.about-xtra__shot--float {
  position: absolute;
  width: 48%;
  height: 200px;
  inset-inline-end: 0;
  bottom: 20px;
  border: 6px solid #fff;
  animation: aboutFloat 5.5s ease-in-out infinite;
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .about-xtra__shot--float { animation: none !important; }
}

/* ---------- Stats ---------- */
.stats-xtra {
  background: #fff;
}

.stats-xtra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.stat-card {
  text-align: center;
  padding: var(--s-5) var(--s-4);
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease);
}

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

.stat-card__value {
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--brand-water);
  line-height: 1.2;
  margin-bottom: var(--s-2);
}

.stat-card__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-ink-muted);
}

@media (prefers-reduced-motion: reduce) {
  .stat-card:hover { transform: none; }
}

/* ---------- Services ---------- */
.services-xtra {
  background: #fff;
}

.services-banner {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: var(--s-7) var(--s-5);
  margin-bottom: var(--s-6);
  background: var(--grad-banner);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.services-banner__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: var(--s-3);
}

.services-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: var(--s-3);
}

.services-banner__text {
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.92;
}

.services-xtra__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.service-card-xtra {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--s-5);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--brand-line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}

.service-card-xtra:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(14, 61, 90, 0.12);
}

.service-card-xtra__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: var(--s-4);
  background: rgba(43, 167, 209, 0.1);
}

.service-card-xtra__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-card-xtra h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin-bottom: var(--s-2);
}

.service-card-xtra p {
  color: var(--brand-ink-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  .service-card-xtra:hover { transform: none; }
}

/* ---------- How / process road (Business 4 split) ---------- */
.how-xtra {
  background: #fff;
  overflow: hidden;
}

.how-xtra__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-7);
  align-items: center;
}

.how-xtra__copy .xtra-lead {
  margin-bottom: var(--s-6);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}

.process-list__item {
  margin: 0;
}

.process-list__btn {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  text-align: start;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--s-3) var(--s-4);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.process-list__btn:hover {
  background: rgba(43, 167, 209, 0.06);
}

.process-list__item.is-active .process-list__btn {
  background: rgba(79, 168, 74, 0.08);
  border-color: rgba(79, 168, 74, 0.22);
  box-shadow: var(--shadow-card);
}

.process-list__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(79, 168, 74, 0.35);
  font-variant-numeric: tabular-nums;
  transition: color 0.25s var(--ease);
}

.process-list__item.is-active .process-list__num {
  color: var(--brand-mountain);
}

.process-list__title {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-ink);
  margin: 0.35rem 0 0;
  line-height: 1.45;
  transition: color 0.25s var(--ease);
}

.process-list__item.is-active .process-list__title {
  color: var(--brand-deep);
}

.how-xtra__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-blob {
  width: min(100%, 440px);
  aspect-ratio: 1 / 1.08;
  border-radius: 58% 42% 48% 52% / 44% 56% 44% 56%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  animation: blobMorph 14s ease-in-out infinite;
}

.how-blob__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}

.how-blob__img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.how-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.how-deco--square {
  width: 18px;
  height: 18px;
  background: #f0c45c;
  top: 12%;
  inset-inline-start: 8%;
  border-radius: 3px;
  animation: howFloat 4.5s ease-in-out infinite;
}

.how-deco--circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 120, 160, 0.45);
  top: 22%;
  inset-inline-end: 10%;
  animation: howFloat 5.2s ease-in-out infinite 0.4s;
}

.how-deco--triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid var(--brand-water);
  bottom: 28%;
  inset-inline-start: 4%;
  animation: howFloat 4.8s ease-in-out infinite 0.2s;
}

.how-deco--diamond {
  width: 14px;
  height: 14px;
  background: var(--brand-deep);
  transform: rotate(45deg);
  bottom: 18%;
  inset-inline-end: 14%;
  animation: howFloat 5.5s ease-in-out infinite 0.6s;
}

.how-deco--ring {
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
}

.how-deco--ring-a {
  width: 36px;
  height: 36px;
  border-color: var(--brand-mountain-soft);
  top: 8%;
  inset-inline-end: 22%;
  animation: howFloat 6s ease-in-out infinite;
}

.how-deco--ring-b {
  width: 28px;
  height: 28px;
  border-color: var(--brand-water-soft);
  bottom: 10%;
  inset-inline-start: 18%;
  animation: howFloat 5s ease-in-out infinite 0.3s;
}

@keyframes howFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.how-deco--diamond {
  animation-name: howFloatDiamond;
}

@keyframes howFloatDiamond {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .how-blob,
  .how-deco {
    animation: none !important;
  }
}

/* ---------- FAQ ---------- */
.faq-xtra {
  background: #fff;
}

.faq-xtra__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4);
  margin-bottom: var(--s-6) !important;
}

.faq-xtra__tabs .nav-item {
  flex: 0 1 auto;
}

.faq-xtra__tabs .nav-link {
  border-radius: var(--radius-pill) !important;
  border: 1px solid var(--brand-line) !important;
  color: var(--brand-ink) !important;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  white-space: nowrap;
  padding: 1rem 2.25rem !important;
  background: #fff !important;
  min-height: 56px;
  min-width: 160px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 61, 90, 0.04);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease) !important;
}

.faq-xtra__tabs .nav-link:hover {
  color: var(--brand-deep) !important;
  border-color: rgba(43, 167, 209, 0.45) !important;
  background: rgba(43, 167, 209, 0.1) !important;
  box-shadow: 0 10px 24px rgba(43, 167, 209, 0.16);
  transform: translateY(-2px);
}

.faq-xtra__tabs .nav-link.active {
  background-image: var(--grad-cta) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 12px 28px rgba(43, 167, 209, 0.28);
}

.faq-xtra__tabs .nav-link.active:hover {
  color: #fff !important;
  background-image: var(--grad-cta) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
}

.faq-xtra__panels {
  max-width: 820px;
  margin-inline: auto;
}

.faq-xtra__item {
  border-bottom: 1px solid var(--brand-line);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-2);
}

.faq-xtra__item:last-child {
  border-bottom: 0;
}

.faq-xtra__item h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-xtra__item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  background: transparent;
  border: 0;
  padding: 1.15rem 0;
  text-align: start;
  font-weight: 700;
  color: var(--brand-ink);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.faq-xtra__item button:hover {
  color: var(--brand-water);
}

.faq-xtra__item button i {
  color: var(--brand-water);
  transition: transform 0.25s var(--ease);
}

.faq-xtra__item button[aria-expanded="true"] {
  color: var(--brand-water);
}

.faq-xtra__item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-xtra__answer {
  margin: 0 0 var(--s-3);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--radius-md);
  color: var(--brand-deep);
  line-height: 1.8;
  background: linear-gradient(135deg, rgba(43, 167, 209, 0.12) 0%, rgba(79, 168, 74, 0.14) 100%);
  border: 1px solid rgba(43, 167, 209, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .faq-xtra__tabs .nav-link:hover,
  .faq-xtra__tabs .nav-link.active:hover {
    transform: none;
  }
}

/* ---------- Partners ---------- */
.partners-xtra {
  background: #fff;
}

.partners-xtra__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  align-items: stretch;
  width: 100%;
}

.partners-xtra__logo {
  width: 100%;
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: var(--s-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-line);
  background: #fff;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.partners-xtra__logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.partners-xtra__logo:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(43, 167, 209, 0.25);
}

.partners-xtra__logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

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

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

  .partners-xtra__logo {
    min-height: 110px;
  }

  .partners-xtra__logo img {
    max-height: 72px;
  }

  .faq-xtra__tabs .nav-link {
    font-size: 0.95rem;
    padding: 0.8rem 1.35rem !important;
  }
}

/* ---------- Contact CTA card ---------- */
.contact-xtra {
  background: linear-gradient(180deg, #fff 0%, var(--brand-mist) 45%, var(--brand-mist) 100%);
}

.contact-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--brand-line);
}

.contact-cta-card__meta {
  list-style: none;
  margin: var(--s-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}

.contact-cta-card__meta li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  color: var(--brand-ink-muted);
}

.contact-cta-card__meta i {
  color: var(--brand-water);
  margin-top: 3px;
}

.contact-cta-card__meta a {
  color: var(--brand-ink);
  text-decoration: none;
}

.contact-cta-card__meta a:hover {
  color: var(--brand-water);
}

.contact-cta-card__form .form-group {
  margin-bottom: var(--s-3);
}

.contact-cta-card__form .form-control {
  border-radius: 14px !important;
  border: 1px solid var(--brand-line) !important;
  padding: 0.75rem 1rem !important;
  min-height: 48px;
  background: var(--brand-mist) !important;
}

.contact-cta-card__form textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.contact-cta-card__form .form-control:focus {
  border-color: var(--brand-water) !important;
  box-shadow: 0 0 0 3px rgba(43, 167, 209, 0.18) !important;
  background: #fff !important;
}

/* ---------- Footer ---------- */
footer.brand-footer {
  background: linear-gradient(180deg, var(--brand-deep) 0%, #0a2f44 100%) !important;
  color: rgba(255, 255, 255, 0.88);
  padding-top: var(--s-7) !important;
}

footer.brand-footer .Tfooter {
  color: #fff;
  font-weight: 700;
}

footer.brand-footer .link-footer a {
  color: rgba(255, 255, 255, 0.85);
}

footer.brand-footer .link-footer a:hover {
  color: var(--brand-water-soft);
}

footer.brand-footer .under_footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  background: rgba(0, 0, 0, 0.2) !important;
  color: rgba(255, 255, 255, 0.88);
}

footer.brand-footer .under_footer a {
  color: var(--brand-water-soft);
}

footer.brand-footer .social-m li a {
  background: rgba(43, 167, 209, 0.35) !important;
  color: #fff !important;
}

footer.brand-footer .social-m li a:hover {
  background: var(--brand-water) !important;
}

.owl-carousel .owl-dot.active {
  background: var(--brand-water) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-xtra,
  .about-xtra__grid,
  .how-xtra__grid,
  .contact-cta-card {
    grid-template-columns: 1fr;
  }

  .hero-xtra {
    min-height: auto;
    text-align: center;
  }

  .hero-xtra__lead {
    margin-inline: auto;
  }

  .hero-xtra__actions {
    justify-content: center;
  }

  .hero-blob {
    margin-inline: auto;
    max-width: 420px;
  }

  .how-xtra__copy {
    text-align: center;
  }

  .how-xtra__copy .xtra-lead {
    margin-inline: auto;
  }

  .process-list {
    max-width: 420px;
    margin-inline: auto;
    text-align: start;
  }

  .how-xtra__visual {
    min-height: 340px;
    order: -1;
  }

  .about-xtra__copy {
    text-align: center;
  }

  .about-xtra__copy .xtra-icon-mark,
  html[lang="ar"] .about-xtra__copy .xtra-icon-mark {
    margin-inline: auto;
  }

  .about-xtra__copy .xtra-lead {
    margin-inline: auto;
  }

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

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

@media (max-width: 767.98px) {
  .sec-padd {
    padding-top: var(--s-7);
    padding-bottom: var(--s-7);
  }

  section.hero.hero--xtra {
    padding-top: 84px;
  }

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

  .about-xtra__shot--main {
    width: 100%;
    height: 280px;
  }

  .about-xtra__shot--float {
    width: 55%;
    height: 150px;
  }

  .contact-cta-card {
    padding: var(--s-5);
  }

  .services-banner {
    padding: var(--s-5) var(--s-4);
  }
}
