/* Hero section */
.wasiyat-hero-section,
.wasiyat-hero-section *,
.wasiyat-hero-section *::before,
.wasiyat-hero-section *::after {
  box-sizing: border-box;
}

.wasiyat-hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #0A1533;
  padding: 110px 30px 100px;
  font-family: 'Poppins', sans-serif;
}

/* Subtle tiled Islamic geometric pattern, fading toward the center */
.wasiyat-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C9952A' stroke-width='1'%3E%3Cpath d='M60 10 L92 30 L92 90 L60 110 L28 90 L28 30 Z'/%3E%3Cpath d='M60 10 L60 110 M28 30 L92 90 M92 30 L28 90'/%3E%3Ccircle cx='60' cy='60' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 0.14;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 72%);
  pointer-events: none;
}

/* Soft gold ambient glow behind the image column */
.wasiyat-hero-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 480px;
  height: 480px;
  max-width: 60%;
  background: radial-gradient(circle, rgba(201, 149, 42, 0.22) 0%, rgba(201, 149, 42, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.wasiyat-hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

/* ---------- Left column: content ---------- */
.wasiyat-hero-content {
  animation: wasiyatHeroFadeUp 0.8s ease-out both;
}

.wasiyat-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #C9952A;
  background: rgba(201, 149, 42, 0.1);
  border: 1px solid rgba(201, 149, 42, 0.35);
  border-radius: 30px;
  padding: 7px 18px;
  margin-bottom: 22px;
}

.wasiyat-hero-eyebrow-icon {
  flex-shrink: 0;
}

.wasiyat-hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.12;
  color: #FAF8F2;
  margin: 0 0 22px;
  letter-spacing: -0.5px;
}

.wasiyat-hero-subtext {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 700;
  color: #20C076;
  margin: 0 0 18px;
  max-width: 520px;
}

.wasiyat-hero-body {
  font-size: 16.5px;
  line-height: 1.85;
  font-weight: 400;
  color: #C7CEDC;
  margin: 0;
  max-width: 520px;
}

.wasiyat-hero-divider {
  margin-top: 34px;
}

/* ---------- Right column: image ---------- */
.wasiyat-hero-visual {
  display: flex;
  justify-content: center;
  animation: wasiyatHeroFadeUp 0.9s ease-out 0.15s both;
}

.wasiyat-hero-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(201, 149, 42, 0.14), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(201, 149, 42, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.wasiyat-hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: 12px;
}

.wasiyat-hero-frame-corner {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 2px solid #C9952A;
  pointer-events: none;
}

.wasiyat-hero-frame-corner--tl {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 10px;
}

.wasiyat-hero-frame-corner--br {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 10px;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .wasiyat-hero-container {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .wasiyat-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wasiyat-hero-subtext,
  .wasiyat-hero-body {
    max-width: 560px;
  }

  .wasiyat-hero-visual {
    order: -1;
  }

  .wasiyat-hero-frame {
    max-width: 380px;
  }
}

@media (max-width: 600px) {
  .wasiyat-hero-section {
    padding: 80px 20px 70px;
  }

  .wasiyat-hero-heading {
    font-size: 38px;
  }

  .wasiyat-hero-subtext {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wasiyat-hero-content,
  .wasiyat-hero-visual {
    animation: none;
  }
}

/* section 1 */

.wasiyat-benefits-section,
.wasiyat-benefits-section *,
.wasiyat-benefits-section *::before,
.wasiyat-benefits-section *::after {
  box-sizing: border-box;
}

.wasiyat-benefits-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #FAF8F2;
  padding: 90px 30px;
  font-family: 'Poppins', sans-serif;
}

.wasiyat-benefits-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230B1E40' stroke-width='1'%3E%3Cpath d='M60 10 L92 30 L92 90 L60 110 L28 90 L28 30 Z'/%3E%3Cpath d='M60 10 L60 110 M28 30 L92 90 M92 30 L28 90'/%3E%3Ccircle cx='60' cy='60' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 0.05;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  pointer-events: none;
}

.wasiyat-benefits-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: stretch;
  z-index: 2;
}

/* ---------- LEFT COLUMN ---------- */
.wasiyat-benefits-left {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wasiyat-benefits-left.wasiyat-benefits-visible {
  opacity: 1;
  transform: translateY(0);
}

.wasiyat-benefits-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0B1E40;
  line-height: 1.25;
  margin: 0 0 14px;
}

.wasiyat-benefits-heading-rule {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: #C9952A;
  margin-bottom: 34px;
}

.wasiyat-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.wasiyat-benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(11, 30, 64, 0.09);
}

.wasiyat-benefits-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wasiyat-benefits-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(32, 192, 118, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wasiyat-benefits-item-title {
  font-size: 17px;
  font-weight: 600;
  color: #0B1E40;
  margin: 0 0 4px;
}

.wasiyat-benefits-item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #57606F;
  margin: 0;
}

/* ---------- RIGHT COLUMN ---------- */
.wasiyat-benefits-right {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.12s, transform 0.7s ease 0.12s;
}

.wasiyat-benefits-right.wasiyat-benefits-visible {
  opacity: 1;
  transform: translateY(0);
}

.wasiyat-benefits-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 64, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(11, 30, 64, 0.08);
}

/* Full-width horizontal cover illustration at the top of the card */
.wasiyat-benefits-cover {
  width: 100%;
  background: linear-gradient(180deg, rgba(201, 149, 42, 0.1) 0%, rgba(201, 149, 42, 0.02) 100%);
  border-bottom: 1px solid rgba(11, 30, 64, 0.06);
}

.wasiyat-benefits-cover-svg {
  display: block;
  width: 100%;
  height: 110px;
}

.wasiyat-benefits-card-body-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 36px 40px 40px;
}

.wasiyat-benefits-card-body-wrap .wasiyat-benefits-note {
  margin-top: auto;
}

.wasiyat-benefits-card-heading {
  font-size: 25px;
  font-weight: 700;
  color: #0B1E40;
  line-height: 1.3;
  margin: 0 0 16px;
}

.wasiyat-benefits-card-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: #4A5266;
  margin: 0 0 22px;
}

.wasiyat-benefits-card-label {
  font-size: 15px;
  font-weight: 600;
  color: #0B1E40;
  margin: 0 0 14px;
}

.wasiyat-benefits-package-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.wasiyat-benefits-package-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #333B4D;
  font-weight: 500;
}

.wasiyat-benefits-package-list svg {
  flex-shrink: 0;
}

.wasiyat-benefits-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(201, 149, 42, 0.08);
  border-left: 3px solid #C9952A;
  border-radius: 8px;
  padding: 16px 18px;
}

.wasiyat-benefits-note-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.wasiyat-benefits-note p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #3D4459;
  margin: 0;
}

.wasiyat-benefits-note strong {
  color: #0B1E40;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .wasiyat-benefits-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .wasiyat-benefits-card-body-wrap {
    padding: 28px 26px 32px;
  }
}

@media (max-width: 600px) {
  .wasiyat-benefits-section {
    padding: 70px 20px;
  }

  .wasiyat-benefits-heading {
    font-size: 27px;
  }

  .wasiyat-benefits-card-heading {
    font-size: 22px;
  }

  .wasiyat-benefits-package-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wasiyat-benefits-left,
  .wasiyat-benefits-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.wasiyat-steps-section,
.wasiyat-steps-section *,
.wasiyat-steps-section *::before,
.wasiyat-steps-section *::after {
  box-sizing: border-box;
}

.wasiyat-steps-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  padding: 90px 30px;
  font-family: 'Poppins', sans-serif;
}

.wasiyat-steps-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230B1E40' stroke-width='1'%3E%3Cpath d='M60 10 L92 30 L92 90 L60 110 L28 90 L28 30 Z'/%3E%3Cpath d='M60 10 L60 110 M28 30 L92 90 M92 30 L28 90'/%3E%3Ccircle cx='60' cy='60' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 0.035;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 65%);
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 65%);
  pointer-events: none;
}

.wasiyat-steps-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

.wasiyat-steps-header {
  text-align: center;
  margin-bottom: 56px;
}

.wasiyat-steps-heading {
  font-size: 34px;
  font-weight: 700;
  color: #0B1E40;
  line-height: 1.25;
  margin: 0 0 16px;
}

.wasiyat-steps-heading-rule {
  display: inline-block;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: #C9952A;
}

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

.wasiyat-steps-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: #FAF8F2;
  border: 1px solid rgba(11, 30, 64, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wasiyat-steps-card.wasiyat-steps-visible {
  opacity: 1;
  transform: translateY(0);
}

.wasiyat-steps-card:hover {
  border-color: rgba(201, 149, 42, 0.4);
  box-shadow: 0 16px 32px rgba(11, 30, 64, 0.08);
}

.wasiyat-steps-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(201, 149, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.wasiyat-steps-label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9952A;
  margin-bottom: 10px;
}

.wasiyat-steps-card-heading {
  font-size: 18px;
  font-weight: 600;
  color: #0B1E40;
  line-height: 1.35;
  margin: 0 0 12px;
}

.wasiyat-steps-card-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #57606F;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .wasiyat-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .wasiyat-steps-section {
    padding: 70px 20px;
  }

  .wasiyat-steps-heading {
    font-size: 27px;
  }
}

@media (max-width: 540px) {
  .wasiyat-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wasiyat-steps-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.wasiyat-faq-section,
.wasiyat-faq-section *,
.wasiyat-faq-section *::before,
.wasiyat-faq-section *::after {
  box-sizing: border-box;
}

.wasiyat-faq-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #0A1533;
  padding: 100px 30px;
  font-family: 'Poppins', sans-serif;
}

.wasiyat-faq-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C9952A' stroke-width='1'%3E%3Cpath d='M60 10 L92 30 L92 90 L60 110 L28 90 L28 30 Z'/%3E%3Cpath d='M60 10 L60 110 M28 30 L92 90 M92 30 L28 90'/%3E%3Ccircle cx='60' cy='60' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 0.12;
  -webkit-mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 65%);
  mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 65%);
  pointer-events: none;
}

.wasiyat-faq-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: stretch;
  z-index: 2;
}

/* ---------- LEFT COLUMN ---------- */
.wasiyat-faq-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.wasiyat-faq-illustration-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 149, 42, 0.22) 0%, rgba(201, 149, 42, 0) 70%);
  pointer-events: none;
}

.wasiyat-faq-illustration-svg {
  position: relative;
  animation: wasiyatFaqFloat 4.5s ease-in-out infinite;
}

.wasiyat-faq-pan-left {
  animation: wasiyatFaqPanLeft 4.5s ease-in-out infinite;
  transform-origin: 30px 30px;
}

.wasiyat-faq-pan-right {
  animation: wasiyatFaqPanRight 4.5s ease-in-out infinite;
  transform-origin: 90px 30px;
}

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

@keyframes wasiyatFaqPanLeft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes wasiyatFaqPanRight {
  0%, 100% { transform: translateY(5px); }
  50% { transform: translateY(0); }
}

.wasiyat-faq-heading {
  font-size: 32px;
  font-weight: 700;
  color: #FAF8F2;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 14px;
}

.wasiyat-faq-heading-rule {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: #C9952A;
  margin: 0 auto 40px;
}

.wasiyat-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wasiyat-faq-item {
  background: #101E42;
  border: 1px solid rgba(201, 149, 42, 0.18);
  border-radius: 12px;
  padding: 4px 22px;
}

.wasiyat-faq-item[open] {
  border-color: rgba(201, 149, 42, 0.4);
}

.wasiyat-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 600;
  color: #FAF8F2;
  cursor: pointer;
  list-style: none;
}

.wasiyat-faq-question::-webkit-details-marker {
  display: none;
}

.wasiyat-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.wasiyat-faq-chevron path {
  stroke: #C9952A;
}

.wasiyat-faq-item[open] .wasiyat-faq-chevron {
  transform: rotate(180deg);
}

.wasiyat-faq-answer {
  font-size: 14.5px;
  line-height: 1.75;
  color: #B9C2D6;
  margin: 0;
  padding: 0 0 20px;
}

/* ---------- RIGHT COLUMN ---------- */
.wasiyat-faq-right {
  display: flex;
}

.wasiyat-faq-disclaimer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  background: linear-gradient(160deg, rgba(201, 149, 42, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(201, 149, 42, 0.3);
  border-radius: 18px;
  padding: 50px 46px;
}

.wasiyat-faq-disclaimer .wasiyat-faq-illustration {
  margin-bottom: 18px;
}

.wasiyat-faq-disclaimer .wasiyat-faq-illustration-svg {
  width: 132px;
  height: 132px;
}

.wasiyat-faq-disclaimer-heading {
  font-size: 28px;
  font-weight: 700;
  color: #FAF8F2;
  text-align: center;
  margin: 0 0 16px;
}

.wasiyat-faq-disclaimer-subheading {
  font-size: 16.5px;
  font-weight: 600;
  color: #C9952A;
  text-align: center;
  margin: 0 0 18px;
}

.wasiyat-faq-disclaimer-text {
  font-size: 15.5px;
  line-height: 1.9;
  color: #B9C2D6;
  text-align: center;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .wasiyat-faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .wasiyat-faq-section {
    padding: 70px 20px;
  }

  .wasiyat-faq-heading {
    font-size: 26px;
  }

  .wasiyat-faq-disclaimer {
    padding: 34px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wasiyat-faq-illustration-svg,
  .wasiyat-faq-pan-left,
  .wasiyat-faq-pan-right {
    animation: none;
  }
}

.wasiyat-resources-section,
.wasiyat-resources-section *,
.wasiyat-resources-section *::before,
.wasiyat-resources-section *::after {
  box-sizing: border-box;
}

.wasiyat-resources-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #FAF8F2;
  padding: 90px 30px;
  font-family: 'Poppins', sans-serif;
}

.wasiyat-resources-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230B1E40' stroke-width='1'%3E%3Cpath d='M60 10 L92 30 L92 90 L60 110 L28 90 L28 30 Z'/%3E%3Cpath d='M60 10 L60 110 M28 30 L92 90 M92 30 L28 90'/%3E%3Ccircle cx='60' cy='60' r='16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: repeat;
  opacity: 0.035;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 65%);
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 65%);
  pointer-events: none;
}

.wasiyat-resources-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

.wasiyat-resources-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.wasiyat-resources-heading {
  font-size: 34px;
  font-weight: 700;
  color: #0B1E40;
  line-height: 1.25;
  margin: 0 0 16px;
}

.wasiyat-resources-heading-rule {
  display: inline-block;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: #C9952A;
  margin-bottom: 20px;
}

.wasiyat-resources-subtext {
  font-size: 16px;
  line-height: 1.75;
  color: #57606F;
  margin: 0;
}

.wasiyat-resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.wasiyat-resources-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(11, 30, 64, 0.08);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wasiyat-resources-card.wasiyat-resources-visible {
  opacity: 1;
  transform: translateY(0);
}

a.wasiyat-resources-card:hover {
  border-color: rgba(201, 149, 42, 0.45);
  box-shadow: 0 14px 30px rgba(11, 30, 64, 0.1);
  transform: translateY(-3px);
}

.wasiyat-resources-card--static {
  cursor: default;
}

.wasiyat-resources-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #20C076;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wasiyat-resources-text {
  font-size: 15.5px;
  font-weight: 600;
  color: #0B1E40;
  line-height: 1.4;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .wasiyat-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wasiyat-resources-section {
    padding: 70px 20px;
  }

  .wasiyat-resources-heading {
    font-size: 27px;
  }

  .wasiyat-resources-grid {
    grid-template-columns: 1fr;
  }

  .wasiyat-resources-card {
    padding: 18px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wasiyat-resources-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.lite-cta .am-app2 {background: #fff; padding: 40px 20px;}
.lite-cta .am-app2__inner {background: #0A1533;}