﻿.services-circle-section {
  background-color: var(--bg);
  overflow: hidden;
}

.circle-layout {
  position: relative;
  max-width: 760px;
  width: 100%;
  min-height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px dashed rgba(31, 42, 55, 0.25);
  z-index: 0;
}

.center-content {
  width: 290px;
  height: 290px;
  background: linear-gradient(170deg, #ffffff 0%, #f9fcff 100%);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  z-index: 4;
}

.center-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: var(--fs-h3);
  font-weight: 800;
}

.center-content p {
  margin: 0.42rem 0 0;
  color: rgba(31, 42, 55, 0.72);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 14ch;
}

.orbit-track {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 500px;
  height: 500px;
  transform-origin: center;
  animation: orbit-rotate 28s linear infinite;
  z-index: 2;
}

.service-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(31, 42, 55, 0.08);
  background-color: #ffffff;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-250px) rotate(calc(-1 * var(--angle)));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 3;
}

.bubble-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.25rem;
  transform-origin: center;
  animation: orbit-counter 28s linear infinite;
}

.bubble-content i {
  font-size: 1.45rem;
}

.bubble-content span {
  font-size: 0.98rem;
  font-weight: 700;
}

.service-bubble.color-primary {
  background-color: rgba(31, 42, 55, 0.1);
  color: var(--primary);
}

.service-bubble.color-teal {
  background-color: rgba(201, 162, 74, 0.12);
  color: var(--teal-dark);
}

.service-bubble.color-gold {
  background-color: rgba(201, 162, 74, 0.18);
  color: var(--gold-dark);
}

.insurance-focus-section {
  background: linear-gradient(135deg, #f7f9fb 0%, #edf3ef 100%);
}

.insurance-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 55, 0.1);
  box-shadow: 0 22px 36px -28px rgba(31, 42, 55, 0.45);
}

.focus-card {
  position: relative;
  min-height: 320px;
  text-align: center;
  perspective: 1300px;
  overflow: visible;
}

.focus-card-inner {
  position: relative;
  width: 100%;
  min-height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.focus-card-face {
  position: absolute;
  inset: 0;
  border-radius: 0;
  padding: 2.3rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.focus-card-face::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.focus-card.personal .focus-card-face {
  background: #ffffff;
  --reveal-delay: 40ms;
}

.focus-card.personal .focus-card-face::before {
  inset: -120px auto auto -90px;
  background: radial-gradient(circle, #C8A45A, transparent 70%);
}

.focus-card.corporate .focus-card-face {
  background: #edf4ea;
  --reveal-delay: 140ms;
}

.focus-card.corporate .focus-card-face::before {
  inset: -120px -90px auto auto;
  background: radial-gradient(circle, #C8A45A, transparent 70%);
}

.focus-card-back {
  opacity: 0;
  transform: rotateY(180deg);
  pointer-events: none;
}

.focus-card-front {
  opacity: 1;
  transform: rotateY(0deg);
  pointer-events: auto;
}

.focus-card-face > * {
  position: relative;
  z-index: 1;
}

.focus-icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #C8A45A;
  background: rgba(99, 199, 95, 0.18);
  animation: focusIconFloat 3.1s ease-in-out infinite;
}

.focus-card h3 {
  margin: 0 0 0.7rem;
  color: var(--primary);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 800;
}

.focus-card p {
  margin: 0 auto;
  max-width: 30ch;
  color: rgba(31, 42, 55, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}

.focus-card a {
  display: inline-block;
  margin-top: 1.25rem;
  color: #C8A45A;
  font-size: 1.75rem;
  font-weight: 800;
  border-bottom: 2px solid rgba(89, 191, 86, 0.9);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.focus-card a:hover {
  color: #B8934A;
  border-color: #B8934A;
  transform: translateY(-2px);
}

.focus-card:hover::before {
  transform: none;
}

.focus-card.reveal-item {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (hover: hover) and (pointer: fine) {
  .focus-card:hover .focus-card-inner,
  .focus-card:focus-within .focus-card-inner {
    transform: rotateY(180deg);
  }

  .focus-card:hover .focus-card-front,
  .focus-card:focus-within .focus-card-front {
    opacity: 0;
    pointer-events: none;
  }

  .focus-card:hover .focus-card-back,
  .focus-card:focus-within .focus-card-back {
    opacity: 1;
    pointer-events: auto;
  }
}

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

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

.service-bubble:hover {
  box-shadow: 0 20px 32px -22px rgba(31, 42, 55, 0.45);
}

.node-1 {
  --angle: 0deg;
}

.node-2 {
  --angle: 72deg;
}

.node-3 {
  --angle: 144deg;
}

.node-4 {
  --angle: 216deg;
}

.node-5 {
  --angle: 288deg;
}

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

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

@keyframes orbit-counter {
  from {
    transform: rotate(0deg);
  }

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

.info-section {
  background-color: #ffffff;
}

.info-card {
  background-color: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.24s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

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

.info-card-body {
  padding: 1rem;
}

.info-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.info-card-body p {
  margin: 0.45rem 0 0;
  color: rgba(31, 42, 55, 0.74);
}

.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.2), rgba(31, 42, 55, 0.38));
}

.about-illustration-wrap {
  min-height: auto;
  background: #d8e8ef;
  box-shadow: 0 22px 36px -28px rgba(31, 42, 55, 0.42);
}

.about-illustration-image {
  height: auto;
  object-fit: contain;
  display: block;
}

.about-content h2 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 800;
}

.about-content .about-slogan {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.36rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 162, 74, 0.18), rgba(99, 199, 95, 0.2));
  color: #1F2F3F;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.about-content .about-slogan::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C8A45A;
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.2);
}

.about-content p {
  color: rgba(31, 42, 55, 0.78);
  margin-bottom: 1.2rem;
}

.mission-section {
  background-color: #ffffff;
}

.mission-card {
  background-color: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
  height: 100%;
}

.mission-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

.mission-card p {
  margin: 0.46rem 0 0;
  color: rgba(31, 42, 55, 0.75);
}

.mission-section .mission-card {
  position: relative;
  overflow: hidden;
}

.mission-section .mission-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 34%, rgba(201, 162, 74, 0.14) 50%, transparent 66%);
  transform: translateX(-130%);
  pointer-events: none;
}

.mission-section .mission-card.is-visible {
  animation: missionCardGlow 4.5s ease-in-out infinite;
}

.mission-section .col-sm-6:nth-child(1) .mission-card.is-visible {
  animation-delay: 0.05s;
}

.mission-section .col-sm-6:nth-child(2) .mission-card.is-visible {
  animation-delay: 0.2s;
}

.mission-section .col-sm-6:nth-child(3) .mission-card.is-visible {
  animation-delay: 0.35s;
}

.mission-section .col-sm-6:nth-child(4) .mission-card.is-visible {
  animation-delay: 0.5s;
}

.mission-section .mission-card.is-visible::after {
  animation: missionCardSweep 5.6s ease-in-out infinite;
}

.mission-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-origin: center;
}

.mission-section .mission-image-wrap.is-visible {
  animation: missionImageFloat 6.2s ease-in-out infinite;
}

.mission-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-section .mission-image-wrap.is-visible .mission-image {
  animation: missionImageZoom 9s ease-in-out infinite;
}
.sharia-section {
  background-color: #f1f2f4;
}

.sharia-badge {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  border: 4px solid var(--gold-dark);
  background-color: #ffffff;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
}

.badge-star {
  color: var(--gold-dark);
  font-size: 2.7rem;
  line-height: 1;
}

.sharia-badge h3 {
  margin: 0;
  color: var(--gold-dark);
  font-size: 1.65rem;
  font-weight: 800;
}

.sharia-badge p {
  margin: 0;
  color: rgba(31, 42, 55, 0.72);
  font-size: 0.9rem;
}

.sharia-content {
  text-align: center;
}

.sharia-content h2 {
  margin: 0;
  color: #0d4a3c;
  font-size: var(--fs-h2);
  font-weight: 800;
}

.sharia-content p {
  margin: 0.7rem auto 0;
  color: rgba(31, 42, 55, 0.75);
  max-width: 60ch;
  font-size: 1.45rem;
  line-height: 1.7;
}

.sharia-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.sharia-icons span {
  color: var(--gold-dark);
  font-size: 2rem;
  line-height: 1;
}

.iraq-map-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.iraq-map-shell {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 1rem;
  align-items: center;
}

.iraq-map-copy {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.11);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1rem;
}

.iraq-map-copy h3 {
  margin: 0;
  color: var(--primary);
  font-size: var(--fs-h3);
  font-weight: 800;
}

.iraq-map-copy p {
  margin: 0.55rem 0 1rem;
  color: rgba(31, 42, 55, 0.76);
  line-height: 1.75;
  font-size: 1.05rem;
}

.iraq-map-card {
  border-radius: 18px;
  border: 1px solid rgba(31, 42, 55, 0.12);
  background: linear-gradient(160deg, #f8fbff 0%, #eef5ff 100%);
  box-shadow: var(--shadow);
  padding: 0.6rem;
}

.iraq-map-figure {
  position: relative;
  margin: 0;
}

.iraq-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.map-baghdad-link {
  position: absolute;
  top: 46.8%;
  left: 48.4%;
  transform: translate(-14%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.map-baghdad-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #C8A45A;
  box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.55);
  animation: baghdadDotPulse 1.6s infinite;
}

.map-baghdad-text {
  background: rgba(255, 255, 255, 0.9);
  color: #1F2F3F;
  border: 1px solid rgba(31, 42, 55, 0.14);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.iraq-svg {
  width: 100%;
  height: auto;
  display: block;
}

.iraq-shape {
  fill: #e3f0ff;
  stroke: #1A2431;
  stroke-width: 7;
  stroke-linejoin: round;
}

.iraq-river {
  fill: none;
  stroke: rgba(41, 114, 188, 0.75);
  stroke-width: 3;
  stroke-linecap: round;
}

.iraq-river-euphrates {
  stroke: rgba(41, 114, 188, 0.5);
  stroke-width: 2.6;
}

.city-dot {
  stroke: #ffffff;
  stroke-width: 3;
}

.city-dot-muted {
  fill: #7A8796;
}

.city-dot-baghdad {
  fill: #C8A45A;
  cursor: pointer;
}

.city-pulse {
  fill: none;
  stroke: rgba(201, 162, 74, 0.5);
  stroke-width: 2.5;
  animation: baghdad-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

.city-label {
  font-family: "Cairo", sans-serif;
  font-size: 22px;
  font-weight: 800;
  dominant-baseline: middle;
}

.city-label-muted {
  fill: #1A2431;
}

.city-label-baghdad {
  fill: #1F2F3F;
  cursor: pointer;
}

@keyframes baghdad-pulse {
  0% {
    r: 14;
    opacity: 0.8;
  }

  70% {
    r: 24;
    opacity: 0.25;
  }

  100% {
    r: 30;
    opacity: 0;
  }
}

@keyframes baghdadDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.55);
  }

  70% {
    box-shadow: 0 0 0 11px rgba(201, 162, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 74, 0);
  }
}

@media (max-width: 991.98px) {
  .iraq-map-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .insurance-focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: 280px;
  }

  .focus-card-inner {
    min-height: auto;
    transform: none !important;
  }

  .focus-card-face {
    position: relative;
    inset: auto;
    padding: 1.5rem 1rem 1.6rem;
    transform: none !important;
    opacity: 1 !important;
  }

  .focus-card-front {
    display: none;
  }

  .focus-card-back {
    pointer-events: auto;
  }

  .focus-card p {
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.85;
  }

  .focus-card a {
    font-size: 1.08rem;
  }

  .iraq-map-copy p {
    font-size: 0.98rem;
  }

  .map-baghdad-text {
    font-size: 0.84rem;
    padding: 0.08rem 0.38rem;
  }

  .city-label {
    font-size: 19px;
  }
}

.claims-journey-section {
  background-color: var(--bg);
}

.claims-kicker {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.claims-timeline {
  margin-top: 0.8rem;
}

.claim-step {
  position: relative;
  text-align: center;
  padding: 0.8rem 1rem 0.4rem;
}

.claim-step::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: 0;
  width: 100%;
  border-top: 2px solid rgba(31, 42, 55, 0.13);
  z-index: 0;
}

.claims-timeline .col-lg-3:first-child .claim-step::before {
  display: none;
}

.step-number {
  position: relative;
  z-index: 2;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  margin: 0 auto 0.95rem;
  background-color: var(--gold-dark);
  color: #ffffff;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.step-icon {
  position: relative;
  z-index: 2;
  width: 3.15rem;
  height: 3.15rem;
  margin: 0 auto 0.95rem;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
}

.claim-step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.1;
  font-weight: 800;
}

.claim-step p {
  margin: 0 auto;
  max-width: 11ch;
  color: rgba(31, 42, 55, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}


/* Claims Orbit Layout */
.claims-orbit-scene {
  position: relative;
  max-width: 820px;
  min-height: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.claims-ring {
  position: absolute;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  border: 2px dashed rgba(31, 42, 55, 0.22);
  z-index: 1;
}

.claims-center-card {
  position: relative;
  z-index: 3;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(170deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(31, 42, 55, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.claims-center-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: var(--fs-h3);
  font-weight: 800;
}

.claims-center-card p {
  margin: 0.45rem 0 0;
  max-width: 15ch;
  color: rgba(31, 42, 55, 0.72);
  font-size: 1.2rem;
}

.claims-orbit-track {
  position: absolute;
  inset: 0;
  width: 530px;
  height: 530px;
  margin: auto;
  animation: claims-spin 26s linear infinite;
  z-index: 2;
}

.claim-orbit-step {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  transform: translate(-50%, -50%) rotate(var(--c-angle)) translateY(-265px);
}

.claim-step-content {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.08);
  box-shadow: var(--shadow);
  padding: 0.95rem 0.8rem 0.8rem;
  text-align: center;
  animation: claims-counter 26s linear infinite;
}

.claim-step-content h3 {
  margin: 0.15rem 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.claim-step-content p {
  margin: 0 auto;
  max-width: 16ch;
  color: rgba(31, 42, 55, 0.72);
  font-size: 0.96rem;
  line-height: 1.45;
}

.c-step-1 {
  --c-angle: 0deg;
}

.c-step-2 {
  --c-angle: 90deg;
}

.c-step-3 {
  --c-angle: 180deg;
}

.c-step-4 {
  --c-angle: 270deg;
}

@keyframes claims-spin {
  from {
    transform: rotate(0deg);
  }

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

@keyframes claims-counter {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}
.faq-section {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.08);
}

.faq-overlay {
  display: none;
}

.faq-content {
  position: relative;
  z-index: 2;
}

.faq-section .section-head.light h2 {
  color: #1F2F3F;
}

.faq-section .section-head.light p {
  color: rgba(31, 42, 55, 0.72);
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(31, 42, 55, 0.1);
  margin-bottom: 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 14px 28px -24px rgba(31, 42, 55, 0.4);
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: #1F2F3F;
  background-color: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #1F2F3F;
  background-color: #f4f8fc;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: rgba(31, 42, 55, 0.78);
  background-color: #ffffff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.site-footer {
  position: relative;
  color: #ffffff;
  background-color: var(--teal-dark);
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--teal-dark) 0%, var(--teal) 58%, var(--gold) 100%);
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 100%);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 2rem;
}

.site-footer h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0.45rem 0 0;
}

.newsletter-form {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  border: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.footer-list a {
  color: #ffffff;
  opacity: 0.9;
}

.footer-list a:hover {
  opacity: 1;
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 991.98px) {
  .circle-layout {
    min-height: auto;
    display: block;
  }

  .circle-ring {
    display: none;
  }

  .orbit-track {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    margin-top: 0.9rem;
    animation: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .service-bubble {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 14px;
    min-height: 110px;
    transform: none;
  }

  .bubble-content {
    animation: none;
    transform: none;
  }

  .center-content {
    margin-inline: auto;
  }

  .info-card img {
    height: 190px;
  }

  .about-image-wrap {
    min-height: 290px;
  }

  .about-illustration-wrap {
    min-height: auto;
  }
  .sharia-badge {
    width: 180px;
    height: 180px;
  }

  .sharia-content p {
    font-size: 1.05rem;
  }

  .sharia-icons {
    flex-direction: row;
    justify-content: center;
    gap: 1.6rem;
  }
  .claim-step::before {
    display: none;
  }

  .claim-step {
    background-color: #ffffff;
    border: 1px solid rgba(31, 42, 55, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1rem 0.75rem;
    height: 100%;
  }

  .claim-step h3 {
    font-size: 1.3rem;
  }

  .claim-step p {
    max-width: 18ch;
  }


  .claims-orbit-scene {
    min-height: auto;
    display: block;
  }

  .claims-ring {
    display: none;
  }

  .claims-orbit-track {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    margin-top: 1rem;
    animation: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .claim-orbit-step {
    position: static;
    width: 100%;
    transform: none;
  }

  .claims-center-card {
    width: min(100%, 420px);
    height: auto;
    border-radius: 14px;
    margin-inline: auto;
    padding: 1rem;
  }

  .claims-center-card h3 {
    font-size: 1.45rem;
  }

  .claims-center-card p {
    max-width: 100%;
    font-size: 1rem;
  }

  .claim-step-content {
    animation: none;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .orbit-track {
    grid-template-columns: 1fr;
  }

  .footer-content {
    padding-top: 4rem;
  }
}

























/* Footer Redesign - Match Reference */
.site-footer.modern-footer {
  position: relative;
  color: #dbe7e3;
  background: #003f35;
  border-radius: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
}

.site-footer.modern-footer .footer-content {
  position: relative;
  z-index: 2;
  padding: 3.2rem 0 1.2rem;
}

.site-footer.modern-footer h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.site-footer.modern-footer .footer-brand-title {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.site-footer.modern-footer .footer-brand-title img {
  width: min(170px, 56vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.2));
}

.site-footer.modern-footer p {
  margin: 0.75rem 0 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(220, 232, 227, 0.9);
  max-width: 38ch;
}

.site-footer.modern-footer .footer-grid h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.site-footer.modern-footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.site-footer.modern-footer .footer-list a {
  color: #d6e6e0;
  opacity: 0.95;
  font-size: 1.03rem;
}

.site-footer.modern-footer .footer-list a:hover {
  color: #ffffff;
}

.site-footer.modern-footer .footer-contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.site-footer.modern-footer .footer-contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #dbe7e3;
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer.modern-footer .footer-contact-list i {
  color: #c7a75a;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.site-footer.modern-footer .social-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.55rem;
}

.site-footer.modern-footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1.1rem;
}

.site-footer.modern-footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.28);
}

.site-footer.modern-footer .footer-bottom {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 0 0.25rem;
  display: flex;
  justify-content: center;
}

.site-footer.modern-footer .footer-bottom p {
  margin: 0;
  font-size: clamp(0.78rem, 1.45vw, 0.98rem);
  color: rgba(220, 232, 227, 0.9);
}

.site-footer.modern-footer .footer-bottom .footer-copy-line {
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  left: 26px;
  bottom: 22px;
  z-index: 1200;
  border-radius: 999px;
  background: #C8A45A;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.7rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 26px -14px rgba(37, 211, 102, 0.85);
}

.floating-whatsapp:hover {
  color: #ffffff;
  background: #B8934A;
}

.floating-top {
  position: fixed;
  right: 18px;
  bottom: 38px;
  z-index: 1200;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 12px 26px -16px rgba(0, 0, 0, 0.72);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  animation: floatingTopBob 2.2s ease-in-out infinite;
}

.floating-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-top:hover {
  color: #ffffff;
  background: #1f1f1f;
}

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

@media (max-width: 991.98px) {
  .site-footer.modern-footer .footer-content {
    padding-top: 2.4rem;
  }

  .site-footer.modern-footer .footer-grid h3,
  .site-footer.modern-footer h3 {
    font-size: 1.5rem;
  }

  .site-footer.modern-footer p,
  .site-footer.modern-footer .footer-contact-list div,
  .site-footer.modern-footer .footer-list a,
  .site-footer.modern-footer .footer-bottom p {
    font-size: 1rem;
  }

  .floating-whatsapp {
    left: 14px;
    bottom: 14px;
    padding: 0.62rem 1rem;
    font-size: 0.92rem;
  }

  .floating-top {
    right: 12px;
    bottom: 72px;
  }
}

/* Home simplification: focus on value, products, and action */
body.home-page .services-circle-section,
body.home-page .sharia-section,
body.home-page .claims-journey-section,
body.home-page .faq-section {
  display: none;
}

.unified-takaful-section {
  background: #ffffff;
}

.unified-panel {
  border: 1px solid rgba(31, 42, 55, 0.12);
  border-radius: 24px;
  background: linear-gradient(155deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 18px 42px -30px rgba(31, 42, 55, 0.46);
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.unified-top-features {
  display: grid;
  gap: 0.8rem;
}

.unified-feature-card {
  border: 1px solid rgba(31, 42, 55, 0.12);
  border-radius: 18px;
  background: #ffffff;
  padding: 1.3rem 1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.unified-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -24px rgba(31, 42, 55, 0.5);
}

.unified-feature-card.featured {
  border-color: rgba(196, 143, 58, 0.72);
}

.unified-feature-card .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0f5f53;
  background: rgba(201, 162, 74, 0.14);
  font-size: 1.45rem;
}

.unified-feature-card h3 {
  margin: 0;
  font-size: var(--fs-h3);
  font-weight: 800;
  color: #1F2F3F;
}

.unified-feature-card p {
  margin: 0.45rem 0 0;
  color: rgba(31, 42, 55, 0.78);
}

.unified-circle-wrap {
  position: relative;
  min-height: 520px;
  border-radius: 20px;
  border: 1px solid rgba(31, 42, 55, 0.1);
  background: #f9fbff;
  overflow: hidden;
}

.circle-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  max-width: calc(100% - 2rem);
  text-align: center;
  z-index: 3;
}

.circle-core h4 {
  margin: 0;
  color: #B8934A;
  font-size: var(--fs-h3);
  font-weight: 800;
}

.circle-core p {
  margin: 0.45rem 0 0;
  color: rgba(31, 42, 55, 0.82);
  line-height: 1.7;
}

.circle-ring-dotted {
  position: absolute;
  width: 390px;
  height: 390px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-rotation, 0deg));
  border-radius: 50%;
  border: 3px dotted rgba(88, 189, 84, 0.6);
  transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.circle-node {
  position: absolute;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: #C8A45A;
  color: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.65rem;
  box-shadow: 0 18px 30px -24px rgba(27, 93, 32, 0.62);
  z-index: 4;
}

.circle-node i {
  font-size: 2rem;
}

.circle-node span {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.unified-circle-wrap .circle-node {
  left: 50%;
  top: 50%;
  --node-x: 0px;
  --node-y: 0px;
  transform: translate(-50%, -50%) translate(var(--node-x), var(--node-y));
}

.unified-circle-wrap .node-car { --node-x: 0px; --node-y: -215px; }
.unified-circle-wrap .node-health { --node-x: 204px; --node-y: -66px; }
.unified-circle-wrap .node-travel { --node-x: 126px; --node-y: 174px; }
.unified-circle-wrap .node-corp { --node-x: -126px; --node-y: 174px; }
.unified-circle-wrap .node-home { --node-x: -204px; --node-y: -66px; }

@media (min-width: 992px) {
  .unified-top-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .unified-circle-wrap {
    min-height: auto;
    padding: 1rem;
  }

  .circle-core,
  .circle-ring-dotted {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    border: 0;
  }

  .circle-node {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 14px;
    margin-top: 0.6rem;
    grid-template-columns: auto 1fr;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}

/* Unified section alignment refinements */
.unified-panel .unified-feature-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unified-panel .unified-feature-card h3 {
  font-size: var(--fs-h3);
}

.unified-panel .unified-circle-wrap {
  min-height: 560px;
}

.unified-panel .circle-core {
  width: 300px;
}

.unified-panel .circle-ring-dotted {
  width: 430px;
  height: 430px;
}

.unified-panel .circle-node {
  left: 50%;
  top: 50%;
  --node-x: 0px;
  --node-y: 0px;
  transform: translate(-50%, -50%) translate(var(--node-x), var(--node-y));
}

.unified-panel .node-car { --node-x: 0px; --node-y: -215px; }
.unified-panel .node-health { --node-x: 204px; --node-y: -66px; }
.unified-panel .node-travel { --node-x: 126px; --node-y: 174px; }
.unified-panel .node-corp { --node-x: -126px; --node-y: 174px; }
.unified-panel .node-home { --node-x: -204px; --node-y: -66px; }

@media (max-width: 1199.98px) {
  .unified-panel .unified-circle-wrap {
    min-height: 520px;
  }

  .unified-panel .circle-ring-dotted {
    width: 390px;
    height: 390px;
  }

  .unified-panel .circle-node {
    width: 124px;
    height: 124px;
  }

  .unified-panel .node-car { --node-x: 0px; --node-y: -195px; }
  .unified-panel .node-health { --node-x: 185px; --node-y: -60px; }
  .unified-panel .node-travel { --node-x: 114px; --node-y: 158px; }
  .unified-panel .node-corp { --node-x: -114px; --node-y: 158px; }
  .unified-panel .node-home { --node-x: -185px; --node-y: -60px; }
}

@media (max-width: 991.98px) {
  .unified-panel .unified-top-features {
    grid-template-columns: 1fr;
  }

  .unified-panel .unified-feature-card {
    min-height: auto;
  }
}

@media (max-width: 1199.98px) {
  .unified-circle-wrap .node-car { --node-x: 0px; --node-y: -195px; }
  .unified-circle-wrap .node-health { --node-x: 185px; --node-y: -60px; }
  .unified-circle-wrap .node-travel { --node-x: 114px; --node-y: 158px; }
  .unified-circle-wrap .node-corp { --node-x: -114px; --node-y: 158px; }
  .unified-circle-wrap .node-home { --node-x: -185px; --node-y: -60px; }
}

/* Circle interactions */
.unified-circle-wrap .circle-node {
  border: 0;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.unified-circle-wrap .circle-node:hover {
  transform: translate(-50%, -50%) translate(var(--node-x, 0px), var(--node-y, 0px)) scale(1.06);
}

.unified-circle-wrap .circle-node.active {
  background: #ffffff;
  color: #1F2F3F;
  box-shadow: 0 22px 34px -22px rgba(31, 42, 55, 0.55);
  transform: translate(-50%, -50%) translate(var(--node-x, 0px), var(--node-y, 0px)) scale(1.1) translateY(-8px);
}

.unified-circle-wrap .circle-node.active i {
  color: #0f5f53;
}

.unified-circle-wrap .circle-node.node-clicked {
  animation: nodePulse 0.45s ease;
}

.unified-circle-wrap.ring-spin .circle-ring-dotted {
  animation: ringSpin 0.7s ease;
}

@keyframes nodePulse {
  0% { transform: translate(-50%, -50%) translate(var(--node-x, 0px), var(--node-y, 0px)) scale(1); }
  50% { transform: translate(-50%, -50%) translate(var(--node-x, 0px), var(--node-y, 0px)) scale(1.16); }
  100% { transform: translate(-50%, -50%) translate(var(--node-x, 0px), var(--node-y, 0px)) scale(1.1) translateY(-8px); }
}

@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(20deg); }
}

@media (max-width: 767.98px) {
  .unified-circle-wrap .circle-node:hover,
  .unified-circle-wrap .circle-node.active {
    transform: translateY(-4px);
  }

  .unified-circle-wrap .circle-node.node-clicked {
    animation: none;
  }

  .unified-circle-wrap.ring-spin .circle-ring-dotted {
    animation: none;
  }
}

/* Ring beads on circular path */
.unified-panel .circle-ring-dotted {
  overflow: visible;
}

.unified-panel .circle-ring-dotted::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 75% 6.7%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 93.3% 25%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 100% 50%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 93.3% 75%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 75% 93.3%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 50% 100%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 25% 93.3%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 6.7% 75%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 0% 50%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 6.7% 25%, #C8A45A 0 4px, transparent 4.4px),
    radial-gradient(circle at 25% 6.7%, #C8A45A 0 4px, transparent 4.4px);
}

@media (max-width: 767.98px) {
  .unified-panel .circle-ring-dotted::before {
    display: none;
  }
}

/* Professional section-wide visual pass */
.section-head h2 {
  letter-spacing: -0.01em;
}

.info-card,
.mission-card,
.unified-feature-card,
.claim-step-content,
.faq-accordion .accordion-item {
  border-color: rgba(31, 42, 55, 0.12);
  box-shadow: 0 18px 40px -30px rgba(31, 42, 55, 0.42);
}

.info-card:hover,
.unified-feature-card:hover {
  transform: translateY(-6px);
}

.faq-accordion .accordion-button {
  font-size: 1.02rem;
}

.faq-accordion .accordion-button::after {
  filter: hue-rotate(158deg) saturate(1.4);
}

.site-footer.modern-footer {
  background-color: #05080d;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(32, 220, 198, 0.14) 0 2px, transparent 2px),
    radial-gradient(circle at 78% 38%, rgba(32, 220, 198, 0.12) 0 1.8px, transparent 2px),
    radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.12) 0 1.6px, transparent 2px);
  background-size: 260px 260px, 340px 340px, 380px 380px;
  isolation: isolate;
}

.site-footer.modern-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(24deg, transparent 48%, rgba(255, 255, 255, 0.18) 50%, transparent 52%),
    linear-gradient(63deg, transparent 48%, rgba(255, 255, 255, 0.11) 50%, transparent 52%),
    linear-gradient(118deg, transparent 48%, rgba(35, 220, 196, 0.19) 50%, transparent 52%);
  background-size: 170px 170px, 210px 210px, 250px 250px;
  animation: footerNetworkFloat 18s linear infinite;
}

.site-footer.modern-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(57, 255, 222, 0.16), transparent 22%),
    radial-gradient(circle at 68% 62%, rgba(255, 255, 255, 0.1), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(57, 255, 222, 0.12), transparent 18%);
  mix-blend-mode: screen;
}

.site-footer.modern-footer .social-links a {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes footerNetworkFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-10px, -8px, 0) scale(1.02);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Visual Polish v2 */
.insurance-gallery-section .section-head p,
.info-section .section-head p,
.claims-journey-section .section-head p,
.faq-section .section-head p {
  max-width: 64ch;
  margin-inline: auto;
}

.insurance-image-card {
  height: 250px;
}

.insurance-image-card .card-label {
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-card {
  display: flex;
  flex-direction: column;
}

.info-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-card-body h3 {
  min-height: 2.8em;
  line-height: 1.35;
}

.info-card-body p {
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.info-card-trigger {
  width: 100%;
  text-align: inherit;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.08);
  appearance: none;
}

.info-card-trigger:focus-visible {
  outline: 3px solid rgba(201, 162, 74, 0.35);
  outline-offset: 3px;
}

.info-pro-modal .modal-dialog {
  max-width: 760px;
}

.info-pro-modal .modal-content {
  border: 1px solid rgba(31, 42, 55, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(148deg, rgba(201, 162, 74, 0.09), rgba(201, 162, 74, 0) 40%),
    linear-gradient(345deg, rgba(196, 143, 58, 0.11), rgba(196, 143, 58, 0) 38%),
    #ffffff;
  box-shadow: 0 26px 56px -34px rgba(31, 42, 55, 0.62);
}

.info-pro-modal .modal-header {
  border-bottom: 1px solid rgba(31, 42, 55, 0.1);
}

.info-pro-modal .modal-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1F2F3F;
  font-weight: 800;
}

.info-pro-modal .modal-title i {
  color: #B8934A;
}

.info-pro-modal .modal-body p {
  margin-bottom: 0.8rem;
  color: rgba(31, 42, 55, 0.85);
  line-height: 1.9;
}

.info-pro-list {
  margin: 0;
  padding-right: 1.1rem;
  color: rgba(31, 42, 55, 0.88);
  line-height: 1.85;
}

.info-pro-list li + li {
  margin-top: 0.3rem;
}

.info-pro-modal .modal-footer {
  border-top: 1px solid rgba(31, 42, 55, 0.1);
  justify-content: center;
  gap: 0.65rem;
}

.info-pro-btn {
  border-radius: 999px;
  border: 2px solid #C8A45A;
  color: #C8A45A;
  font-weight: 800;
  min-width: 150px;
}

.info-pro-btn:hover,
.info-pro-btn:focus {
  background: rgba(10, 163, 191, 0.08);
  color: #C8A45A;
}

.info-pro-btn-alt {
  border-color: #c48f3a;
  color: #9b6d1f;
}

.info-pro-btn-alt:hover,
.info-pro-btn-alt:focus {
  background: rgba(196, 143, 58, 0.11);
  color: #9b6d1f;
}

.info-pro-modal.fade .modal-dialog {
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.28s ease;
}

.info-pro-modal.show .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.info-pro-modal .modal-header,
.info-pro-modal .modal-body,
.info-pro-modal .modal-footer {
  animation: infoModalPartIn 0.35s ease both;
}

.info-pro-modal .modal-body {
  animation-delay: 0.05s;
}

.info-pro-modal .modal-footer {
  animation-delay: 0.1s;
}

.mission-card {
  display: flex;
  flex-direction: column;
}

.mission-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.unified-feature-card p {
  max-width: 32ch;
  margin-inline: auto;
}

.unified-feature-trigger {
  width: 100%;
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
  animation: unifiedCardIn 0.65s ease both;
}

.unified-feature-trigger .feature-icon i {
  animation: unifiedIconPulse 2.6s ease-in-out infinite;
}

.unified-feature-trigger:nth-child(1) {
  animation-delay: 0.04s;
}

.unified-feature-trigger:nth-child(2) {
  animation-delay: 0.14s;
}

.unified-feature-trigger:nth-child(3) {
  animation-delay: 0.24s;
}

.unified-feature-trigger:nth-child(1) .feature-icon i {
  animation-delay: 0s;
}

.unified-feature-trigger:nth-child(2) .feature-icon i {
  animation-delay: 0.25s;
}

.unified-feature-trigger:nth-child(3) .feature-icon i {
  animation-delay: 0.5s;
}

.unified-feature-trigger:focus-visible {
  outline: 3px solid rgba(201, 162, 74, 0.38);
  outline-offset: 2px;
}

.unified-feature-modal .modal-content {
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 55, 0.14);
  box-shadow: 0 22px 48px -32px rgba(31, 42, 55, 0.58);
}

.unified-feature-modal.fade .modal-dialog {
  transform: translateY(22px) scale(0.94) rotateX(6deg);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.28s ease;
}

.unified-feature-modal.show .modal-dialog {
  transform: translateY(0) scale(1) rotateX(0deg);
  opacity: 1;
}

.unified-feature-modal .modal-content {
  transform-origin: center top;
  animation: unifiedModalGlowIn 0.45s ease both;
}

.unified-feature-modal .modal-header,
.unified-feature-modal .modal-body {
  animation: unifiedModalContentIn 0.4s ease both;
}

.unified-feature-modal .modal-body {
  animation-delay: 0.06s;
}

.unified-feature-modal .modal-header {
  border-bottom-color: rgba(31, 42, 55, 0.1);
}

.unified-feature-modal .modal-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1F2F3F;
  font-weight: 800;
}

.unified-feature-modal .modal-title i {
  color: #C8A45A;
}

.unified-feature-modal .modal-body p {
  margin: 0;
  color: rgba(31, 42, 55, 0.82);
  line-height: 1.9;
}

@keyframes unifiedCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes unifiedIconPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.08);
  }
}

@keyframes unifiedModalGlowIn {
  from {
    box-shadow: 0 0 0 rgba(31, 42, 55, 0);
  }
  to {
    box-shadow: 0 22px 48px -32px rgba(31, 42, 55, 0.58);
  }
}

@keyframes unifiedModalContentIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes infoModalPartIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes missionCardGlow {
  0%,
  100% {
    box-shadow: 0 18px 40px -30px rgba(31, 42, 55, 0.42);
    border-color: rgba(31, 42, 55, 0.12);
  }
  50% {
    box-shadow: 0 22px 42px -28px rgba(201, 162, 74, 0.42);
    border-color: rgba(201, 162, 74, 0.28);
  }
}

@keyframes missionCardSweep {
  0%,
  72%,
  100% {
    transform: translateX(-130%);
  }
  82%,
  90% {
    transform: translateX(130%);
  }
}

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

@keyframes missionImageZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .unified-feature-trigger,
  .unified-feature-trigger .feature-icon i,
  .unified-feature-modal.fade .modal-dialog,
  .unified-feature-modal .modal-content,
  .unified-feature-modal .modal-header,
  .unified-feature-modal .modal-body,
  .info-pro-modal.fade .modal-dialog,
  .info-pro-modal .modal-header,
  .info-pro-modal .modal-body,
  .info-pro-modal .modal-footer,
  .mission-section .mission-card.is-visible,
  .mission-section .mission-card.is-visible::after,
  .mission-section .mission-image-wrap.is-visible,
  .mission-section .mission-image-wrap.is-visible .mission-image,
  .site-footer.modern-footer::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.claim-step h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.claim-step p {
  max-width: 16ch;
}

.faq-accordion .accordion-button {
  padding-block: 0.95rem;
}

.site-footer.modern-footer .footer-grid {
  row-gap: 1.6rem !important;
}

.site-footer.modern-footer .footer-list a,
.site-footer.modern-footer .footer-contact-list div {
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .insurance-image-card {
    height: 220px;
  }

  .info-card-body h3 {
    min-height: auto;
  }

  .mission-card p,
  .info-card-body p {
    -webkit-line-clamp: unset;
  }
}



/* Home News Preview */
.home-news-preview-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-news-card {
  border: 1px solid rgba(31, 42, 55, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 32px -24px rgba(31, 42, 55, 0.32);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.home-news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 168, 0.36);
  box-shadow: 0 22px 44px -22px rgba(0, 56, 168, 0.28);
}

.home-news-image-link {
  position: relative;
  display: block;
  background: linear-gradient(145deg, #f1f4f8, #e9edf2);
  padding: 0.6rem;
  overflow: hidden;
}

.home-news-image-link img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 11px;
  transition: transform 0.55s ease;
}

.home-news-image-link::after {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(11, 24, 44, 0) 30%, rgba(11, 24, 44, 0.42) 100%);
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.home-news-card:hover .home-news-image-link img {
  transform: scale(1.1);
}

.home-news-card:hover .home-news-image-link::after {
  opacity: 0.82;
}

.home-news-card-body {
  padding: 0.95rem 1.05rem 1.05rem;
}

.home-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.home-news-category {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(201, 162, 74, 0.17);
  color: #1F2F3F;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.2rem 0.58rem;
}

.home-news-date {
  color: rgba(31, 42, 55, 0.65);
  font-size: 0.8rem;
  font-weight: 700;
}

.home-news-card-body h3 {
  margin: 0;
  color: #1F2F3F;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
  min-height: 3em;
}

.home-news-card-body p {
  margin: 0.5rem 0 0.7rem;
  color: rgba(31, 42, 55, 0.75);
  line-height: 1.75;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-link {
  color: #1F2F3F;
  font-weight: 800;
  transition: color 0.22s ease;
}

.home-news-link:hover {
  color: #00a895;
}

.home-news-actions {
  margin-top: 1rem;
  text-align: center;
}

.home-news-empty {
  border: 1px dashed rgba(31, 42, 55, 0.2);
  border-radius: 14px;
  background: #fbfdff;
  padding: 1.1rem;
  text-align: center;
}

.home-news-empty h3 {
  margin: 0;
  color: #1F2F3F;
  font-size: 1.1rem;
  font-weight: 800;
}

.home-news-empty p {
  margin: 0.5rem 0 0;
  color: rgba(31, 42, 55, 0.74);
}

@media (max-width: 991.98px) {
  .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .home-news-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium trust testimonials */
.trust-testimonials-section {
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}

.trust-testimonials-section .trust-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.trust-testimonials-section .trust-head p {
  max-width: 62ch;
  margin-inline: auto;
  color: rgba(31, 42, 55, 0.76);
}

.trust-grid {
  margin-top: 0.35rem;
}

.trust-card {
  position: relative;
  height: 100%;
  padding: 1.4rem 1.2rem 1.25rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1F2F3F, #C8A45A);
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 168, 0.3);
  box-shadow: 0 20px 50px rgba(0, 194, 168, 0.25);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  box-shadow: 0 14px 28px -18px rgba(0, 56, 168, 0.65);
  font-size: 1.35rem;
}

.trust-card h3 {
  margin: 0 0 0.45rem;
  color: #102742;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.5;
}

.trust-card p {
  margin: 0;
  color: rgba(31, 42, 55, 0.8);
  line-height: 1.85;
  font-size: 0.99rem;
}

@media (max-width: 575.98px) {
  .trust-card {
    padding: 1.15rem 1rem 1rem;
  }
}

/* Premium services redesign */
.premium-services-grid .premium-service-card {
  position: relative;
  min-height: 330px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 36px -24px rgba(8, 20, 44, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  isolation: isolate;
}

.premium-services-grid .premium-service-featured {
  min-height: 420px;
}

.premium-services-grid .premium-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.premium-service-content {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1rem 1.05rem;
  color: #ffffff;
}

.premium-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-size: 1.05rem;
  background: linear-gradient(135deg, rgba(0, 56, 168, 0.92), rgba(0, 194, 168, 0.92));
  box-shadow: 0 12px 24px -18px rgba(0, 194, 168, 0.9);
}

.premium-service-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.45vw, 1.42rem);
  font-weight: 800;
  line-height: 1.5;
}

.premium-service-content p {
  margin: 0.5rem 0 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.75;
  max-width: 56ch;
}

.premium-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.premium-service-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.44rem 0.86rem;
}

.premium-service-btn:hover,
.premium-service-btn:focus {
  color: #ffffff;
}

.premium-service-btn-alt {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.premium-services-grid .premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -22px rgba(0, 194, 168, 0.34);
  border-color: rgba(255, 255, 255, 0.28);
}

.premium-services-grid .premium-service-card:hover img {
  transform: scale(1.1);
}

/* Premium medical/corporate split cards */
.premium-focus-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 194, 168, 0.13), transparent 36%),
    radial-gradient(circle at 86% 72%, rgba(0, 56, 168, 0.13), transparent 34%),
    linear-gradient(135deg, #f5f9ff, #ecf4ff);
}

.premium-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.premium-focus-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 55, 0.1);
  padding: 1.25rem 1.1rem;
  box-shadow: 0 14px 34px -24px rgba(31, 42, 55, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-focus-medical {
  background: linear-gradient(145deg, #ffffff, #eefdf9);
}

.premium-focus-corporate {
  background: linear-gradient(145deg, #ffffff, #eef4ff);
}

.premium-focus-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.premium-focus-card h3 {
  margin: 0;
  color: #0f2a4a;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
}

.premium-focus-card p {
  margin: 0.6rem 0 1rem;
  color: rgba(31, 42, 55, 0.8);
  line-height: 1.85;
}

.premium-focus-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.premium-focus-btn {
  border-radius: 999px;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  color: #ffffff;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.52rem 1rem;
}

.premium-focus-btn:hover,
.premium-focus-btn:focus {
  color: #ffffff;
  transform: translateY(-2px);
}

.premium-focus-btn-alt {
  background: rgba(255, 255, 255, 0.7);
  color: #123157;
  border-color: rgba(18, 49, 87, 0.22);
}

.premium-focus-btn-alt:hover,
.premium-focus-btn-alt:focus {
  color: #0f2a4a;
}

.premium-focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -24px rgba(0, 56, 168, 0.26);
  border-color: rgba(0, 194, 168, 0.3);
}

@media (max-width: 991.98px) {
  .premium-services-grid .premium-service-featured {
    min-height: 360px;
  }

  .premium-focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .premium-services-grid .premium-service-card,
  .premium-services-grid .premium-service-featured {
    min-height: 290px;
  }

  .premium-service-content {
    padding: 0.95rem 0.85rem;
  }

  .premium-service-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.65rem;
  }

  .premium-focus-card {
    padding: 1rem 0.9rem;
  }
}

/* Premium unified features + circular services */
.unified-takaful-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 194, 168, 0.14), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(0, 56, 168, 0.2), transparent 38%),
    linear-gradient(135deg, #1F2F3F, #0f1b3d);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.unified-takaful-section .unified-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.55);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.unified-takaful-section .unified-top-features {
  gap: 0.8rem;
}

.unified-takaful-section .unified-feature-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(12, 24, 48, 0.82);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.unified-takaful-section .unified-feature-card h3,
.unified-takaful-section .unified-feature-card p {
  color: #ffffff;
}

.unified-takaful-section .unified-feature-card p {
  color: rgba(235, 244, 255, 0.9);
}

.unified-takaful-section .unified-feature-card .feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease;
}

.unified-takaful-section .unified-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 168, 0.42);
  background: rgba(14, 30, 58, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.unified-takaful-section .unified-feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.unified-takaful-section .unified-feature-card.featured {
  border-color: rgba(0, 194, 168, 0.55);
  background: linear-gradient(140deg, rgba(0, 56, 168, 0.36), rgba(0, 194, 168, 0.24));
}

.unified-takaful-section .unified-circle-wrap {
  min-height: 650px;
  padding-top: 0.35rem;
}

.unified-takaful-section .circle-ring-dotted {
  border: 2px dashed rgba(205, 230, 255, 0.36);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: ringSlowSpin 30s linear infinite;
}

.unified-takaful-section .circle-core {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #1F2F3F, #1F2F3F);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.unified-takaful-section .circle-core h4 {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  text-shadow: none;
}

.unified-takaful-section .circle-core p {
  color: rgba(255, 255, 255, 0.92);
}

.unified-takaful-section .circle-node {
  width: 124px;
  height: 124px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(12, 24, 48, 0.9);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.26s ease, box-shadow 0.26s ease, background-color 0.26s ease, border-color 0.26s ease;
}

.unified-takaful-section .circle-node i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  font-size: 1.05rem;
}

.unified-takaful-section .circle-node span {
  color: rgba(244, 250, 255, 0.95);
  font-size: 0.86rem;
  line-height: 1.45;
}

.unified-takaful-section .circle-node:hover {
  transform: translate(-50%, -50%) translate(var(--node-x, 0px), var(--node-y, 0px)) scale(1.04);
  border-color: rgba(0, 194, 168, 0.46);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.unified-takaful-section .circle-node.active {
  background: rgba(16, 37, 70, 0.95);
  border-color: rgba(0, 194, 168, 0.65);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.unified-takaful-section .circle-node.active span {
  color: #ffffff;
}

@keyframes ringSlowSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 1199.98px) {
  .unified-takaful-section .circle-core {
    width: 300px;
    height: 300px;
  }

  .unified-takaful-section .circle-node {
    width: 116px;
    height: 116px;
  }
}

@media (max-width: 991.98px) {
  .unified-takaful-section .unified-circle-wrap {
    min-height: 560px;
  }
}

@media (max-width: 767.98px) {
  .unified-takaful-section .unified-panel {
    border-radius: 18px;
    padding: 0.85rem;
  }

  .unified-takaful-section .circle-core,
  .unified-takaful-section .circle-ring-dotted {
    width: 100%;
    height: auto;
    border-radius: 16px;
    animation: none;
  }

  .unified-takaful-section .circle-core {
    padding: 1rem 0.9rem;
  }

  .unified-takaful-section .circle-node {
    border-radius: 14px;
    width: 100%;
    height: auto;
    min-height: 64px;
  }

  .unified-takaful-section .circle-node:hover,
  .unified-takaful-section .circle-node.active {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .unified-takaful-section .circle-ring-dotted,
  .unified-takaful-section .unified-feature-card,
  .unified-takaful-section .circle-node,
  .unified-takaful-section .unified-feature-card .feature-icon {
    animation: none !important;
    transition: none !important;
  }
}

/* Non-repetitive mosaic replacement for circular layout */
.unified-services-mosaic {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0.8rem;
}

.service-tile {
  border-radius: 16px;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 30, 58, 0.88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  min-height: 185px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-tile-featured {
  grid-row: span 2;
  min-height: 100%;
  background: linear-gradient(150deg, rgba(0, 56, 168, 0.34), rgba(8, 24, 48, 0.94));
}

.service-tile-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.service-tile h4 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.service-tile p {
  margin: 0 0 0.95rem;
  color: rgba(239, 247, 255, 0.9);
  line-height: 1.75;
  font-size: 0.93rem;
}

.service-tile-btn {
  margin-top: auto;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 0.42rem 0.9rem;
  font-weight: 800;
  font-size: 0.84rem;
}

.service-tile-btn:hover,
.service-tile-btn:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

.service-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 168, 0.45);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

@media (max-width: 991.98px) {
  .unified-services-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tile-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .unified-services-mosaic {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .service-tile-featured {
    min-height: auto;
  }
}

/* Custom solutions marketing redesign */
.custom-solutions-section .section-head h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.35rem);
}

.custom-solutions-section .section-head p {
  max-width: 62ch;
  margin-inline: auto;
}

.custom-solution-card {
  position: relative;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  text-align: start;
  min-height: 320px;
  box-shadow: 0 18px 36px -24px rgba(31, 42, 55, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.custom-solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.custom-solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 23, 45, 0.12), rgba(11, 23, 45, 0.84));
  z-index: 1;
}

.custom-solution-card .info-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1rem;
  color: #ffffff;
}

.custom-solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.18rem 0.56rem;
  margin-bottom: 0.48rem;
}

.custom-solution-card .info-card-body h3 {
  margin: 0 0 0.36rem;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 800;
}

.custom-solution-card .info-card-body p {
  margin: 0;
  color: rgba(236, 246, 255, 0.92);
  line-height: 1.75;
  font-size: 0.92rem;
}

.custom-solution-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.34rem 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.custom-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -24px rgba(0, 56, 168, 0.46);
}

.custom-solution-card:hover img {
  transform: scale(1.08);
}

.custom-solution-card:hover .custom-solution-cta {
  opacity: 1;
  transform: translateY(0);
}

/* About marketing redesign */
.about-marketing-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.about-marketing-image {
  border-radius: 22px;
  box-shadow: 0 24px 46px -26px rgba(31, 42, 55, 0.5);
}

.about-marketing-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.35;
}

.about-marketing-content p {
  line-height: 1.95;
}

.about-stats-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.about-stats-grid article {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.1);
  box-shadow: 0 12px 26px -20px rgba(31, 42, 55, 0.42);
  padding: 0.65rem 0.55rem;
  text-align: center;
}

.about-stats-grid strong {
  display: block;
  color: #1F2F3F;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
}

.about-stats-grid span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(31, 42, 55, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-marketing-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.about-outline-btn {
  border-radius: 999px;
  border: 1px solid rgba(0, 56, 168, 0.32);
  color: #1F2F3F;
  background: #ffffff;
  font-weight: 800;
  padding: 0.52rem 1rem;
}

.about-outline-btn:hover,
.about-outline-btn:focus {
  color: #ffffff;
  background: #1F2F3F;
  border-color: #1F2F3F;
}

/* Final conversion CTA */
.final-conversion-cta {
  background:
    radial-gradient(120% 120% at 85% 12%, rgba(255, 255, 255, 0.14), transparent 52%),
    linear-gradient(128deg, #050505 0%, #111111 52%, #1b1b1b 100%);
  padding-block: clamp(3.2rem, 7vw, 5.2rem);
  position: relative;
  overflow: clip;
}

.final-cta-shell {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  color: #111111;
  padding: clamp(1.35rem, 2.8vw, 2.4rem) 0.8rem;
  animation: finalCtaReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.final-cta-kicker {
  display: inline-flex;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.34rem 0.84rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.final-cta-shell h2 {
  margin: 0.8rem 0 0.65rem;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.final-cta-shell p {
  margin: 0 auto;
  max-width: 54ch;
  color: #ffffff;
  line-height: 1.85;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  font-weight: 700;
}

.final-cta-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.final-cta-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #ffffff;
  color: #0c0c0c;
  font-weight: 900;
  min-height: 56px;
  min-width: 210px;
  padding: 0.75rem 1.35rem;
  font-size: 1rem;
  box-shadow: 0 14px 28px -18px rgba(0, 0, 0, 0.46);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
  animation: finalCtaButtonRise 0.56s ease both;
}

.final-cta-btn:hover,
.final-cta-btn:focus {
  transform: translateY(-3px);
  color: #000000;
  background: #f1f1f1;
  box-shadow: 0 20px 36px -18px rgba(0, 0, 0, 0.5);
}

.final-cta-btn-alt {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  animation-delay: 0.08s;
}

.final-cta-btn-alt:hover,
.final-cta-btn-alt:focus {
  color: #000000;
  background: #ffffff;
}

@keyframes finalCtaReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes finalCtaButtonRise {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-shell,
  .final-cta-btn {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .about-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .custom-solution-card {
    min-height: 285px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Vision / mission + coverage map premium pass */
.mission-section .section-head {
  text-align: center;
  margin-bottom: 1rem;
}

.mission-modern-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 55, 0.1);
  background: linear-gradient(155deg, #ffffff, #f4f9ff);
  box-shadow: 0 14px 32px -24px rgba(31, 42, 55, 0.42);
  padding: 1rem 0.9rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mission-modern-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, #1F2F3F, #C8A45A);
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 12px 28px -18px rgba(0, 56, 168, 0.78);
}

.mission-modern-card h3 {
  color: #102742;
  margin-bottom: 0.35rem;
}

.mission-modern-card p {
  color: rgba(31, 42, 55, 0.8);
  line-height: 1.85;
}

.mission-modern-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 194, 168, 0.35);
  box-shadow: 0 20px 38px -22px rgba(0, 56, 168, 0.3);
}

.coverage-stats {
  margin: 0.9rem 0 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.coverage-stats article {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 55, 0.12);
  padding: 0.55rem 0.45rem;
  text-align: center;
}

.coverage-stats strong {
  display: block;
  color: #1F2F3F;
  font-size: 1.12rem;
  font-weight: 900;
}

.coverage-stats span {
  display: block;
  color: rgba(31, 42, 55, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
}

.iraq-map-embed-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 420px;
  padding: 0;
}

.iraq-map-embed {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.map-overlay-box {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  max-width: 320px;
  border-radius: 14px;
  background: rgba(8, 22, 44, 0.88);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.68rem 0.8rem;
  box-shadow: 0 14px 28px -20px rgba(0, 0, 0, 0.6);
}

.map-overlay-box h4 {
  margin: 0 0 0.26rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.map-overlay-box p {
  margin: 0;
  color: rgba(234, 246, 255, 0.92);
  font-size: 0.86rem;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .coverage-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .coverage-stats {
    grid-template-columns: 1fr;
  }

  .iraq-map-embed-card,
  .iraq-map-embed {
    min-height: 330px;
  }

  .map-overlay-box {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    max-width: none;
  }
}

/* Premium UI system layer */
:root {
  --ui-primary: #1F2F3F;
  --ui-accent: #C8A45A;
  --ui-dark: #1F2F3F;
  --ui-head: clamp(1.85rem, 3.7vw, 2.75rem);
  --ui-subhead: clamp(1rem, 1.8vw, 1.16rem);
}

.section-padding {
  padding-block: clamp(4rem, 7vw, 6.2rem);
}

.section-head h2 {
  font-size: var(--ui-head);
  line-height: 1.25;
}

.section-head p {
  font-size: var(--ui-subhead);
  line-height: 1.85;
}

.ui-tone-light {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.ui-tone-gradient {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 56, 168, 0.08), transparent 34%),
    radial-gradient(circle at 84% 84%, rgba(0, 194, 168, 0.09), transparent 36%),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

.ui-tone-dark {
  background:
    radial-gradient(circle at 15% 25%, rgba(0, 194, 168, 0.16), transparent 32%),
    linear-gradient(135deg, #1F2F3F, #2A3E52);
  color: #ffffff;
}

.ui-tone-dark .section-head h2,
.ui-tone-dark .section-head p {
  color: #ffffff;
}

/* Card archetypes */
.card-image-premium {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 55, 0.12);
  box-shadow: 0 16px 34px -24px rgba(11, 18, 32, 0.34);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-image-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 168, 0.35);
  box-shadow: 0 24px 42px -22px rgba(0, 56, 168, 0.28);
}

.card-icon-premium {
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 55, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 30px -24px rgba(11, 18, 32, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-icon-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 194, 168, 0.34);
  box-shadow: 0 22px 38px -22px rgba(0, 56, 168, 0.24);
}

.card-stat-premium {
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 55, 0.12);
  background: #ffffff;
  box-shadow: 0 10px 24px -20px rgba(11, 18, 32, 0.34);
}

/* Map existing components into card archetypes */
.premium-service-card,
.custom-solution-card,
.home-news-card,
.service-tile {
  border-radius: 18px;
}

.trust-card,
.mission-modern-card,
.premium-focus-card,
.unified-feature-card,
.claim-step-content {
  border-radius: 16px;
}

.about-stats-grid article,
.coverage-stats article,
.hero-trust-item {
  border-radius: 14px;
}

/* Unified brand accents */
.section-head h2,
.home-news-link,
.about-stats-grid strong,
.coverage-stats strong,
.mission-modern-card h3 {
  color: var(--ui-primary);
}

.final-conversion-cta,
.hero-btn-primary,
.premium-service-btn,
.premium-focus-btn,
.service-tile-icon,
.mission-modern-icon,
.trust-icon,
.premium-service-icon {
  background-image: linear-gradient(135deg, var(--ui-primary), var(--ui-accent));
}

.seo-insurance-section {
  padding-top: clamp(3rem, 5vw, 4.4rem);
}

.seo-insurance-copy {
  max-width: 1040px;
  margin-inline: auto;
  border: 1px solid rgba(31, 47, 63, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.92)),
    #ffffff;
  box-shadow: 0 22px 48px -34px rgba(11, 18, 32, 0.38);
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.seo-eyebrow {
  width: fit-content;
  margin: 0 auto 0.75rem;
  border: 1px solid rgba(200, 164, 90, 0.4);
  border-radius: 999px;
  background: rgba(200, 164, 90, 0.12);
  color: #1f2f3f;
  padding: 0.34rem 0.78rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.seo-insurance-copy h2 {
  margin: 0 auto 0.85rem;
  max-width: 820px;
  color: #1f2f3f;
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  line-height: 1.28;
  font-weight: 900;
}

.seo-insurance-copy p {
  max-width: 860px;
  margin: 0.7rem auto 0;
  color: #263747;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.95;
}

.seo-insurance-copy strong {
  color: #111111;
  font-weight: 900;
}

.seo-keyword-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.seo-keyword-grid a {
  min-height: 42px;
  border: 1px solid rgba(31, 47, 63, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #1f2f3f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 22px -20px rgba(11, 18, 32, 0.34);
}

.seo-keyword-grid a:hover,
.seo-keyword-grid a:focus-visible {
  background: linear-gradient(135deg, #1f2f3f, #c8a45a);
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .seo-insurance-copy {
    text-align: start;
  }

  .seo-eyebrow {
    margin-inline: 0;
  }

  .seo-keyword-grid {
    justify-content: stretch;
  }

  .seo-keyword-grid a {
    width: 100%;
  }
}

