/* ---------- Section wrapper ---------- */
.moon-sighting-hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0A1533;
  font-family: 'Poppins', sans-serif;
  padding: 90px 0;
  box-sizing: border-box;
}

/* ---------- Background image layer ---------- */
.moon-sighting-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.moon-sighting-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.moon-sighting-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11,30,64,0.94) 0%, rgba(11,30,64,0.88) 38%, rgba(10,21,51,0.55) 70%, rgba(10,21,51,0.35) 100%);
}
.moon-sighting-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, transparent 0, transparent 18px, #c9952a 19px, transparent 20px),
    radial-gradient(circle at 60% 70%, transparent 0, transparent 18px, #c9952a 19px, transparent 20px),
    radial-gradient(circle at 85% 15%, transparent 0, transparent 14px, #20C076 15px, transparent 16px);
  background-size: 220px 220px, 260px 260px, 300px 300px;
  pointer-events: none;
}

/* ---------- Inner container ---------- */
.moon-sighting-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.moon-sighting-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* ---------- Left column ---------- */
.moon-sighting-hero-left {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.moon-sighting-hero-left.moon-sighting-in-view {
  opacity: 1;
  transform: translateY(0);
}

.moon-sighting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(201, 149, 42, 0.14);
  border: 1px solid rgba(201, 149, 42, 0.45);
  color: #e8c265;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.moon-sighting-eyebrow svg { color: #e8c265; flex-shrink: 0; }

.moon-sighting-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.15;
  color: #FAF8F2;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.moon-sighting-subtext {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #d9dde6;
  max-width: 520px;
  margin: 0 0 34px 0;
}

.moon-sighting-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.moon-sighting-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.moon-sighting-btn-primary {
  background: linear-gradient(135deg, #e8c265 0%, #c9952a 100%);
  color: #0B1E40;
  box-shadow: 0 10px 24px rgba(201, 149, 42, 0.28);
}
.moon-sighting-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(201, 149, 42, 0.4);
}
.moon-sighting-btn-ghost {
  background: transparent;
  color: #FAF8F2;
  border: 1.5px solid rgba(250, 248, 242, 0.35);
}
.moon-sighting-btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(250, 248, 242, 0.08);
  border-color: rgba(250, 248, 242, 0.6);
}

/* ---------- Right column: telescope illustration ---------- */
.moon-sighting-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}
.moon-sighting-hero-right.moon-sighting-in-view {
  opacity: 1;
  transform: translateY(0);
}

.moon-sighting-telescope-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.moon-sighting-glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 149, 42, 0.22) 0%, rgba(201, 149, 42, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  animation: moonSightingPulseGlow 5s ease-in-out infinite;
}

.moon-sighting-telescope-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  animation: moonSightingFloat 5.5s ease-in-out infinite;
}

/* gentle floating bob for the whole telescope */
@keyframes moonSightingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* pulsing backdrop glow */
@keyframes moonSightingPulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* moon glow rays flicker */
.moon-sighting-moon-rays {
  animation: moonSightingRayFlicker 3.2s ease-in-out infinite;
  transform-origin: 330px 80px;
}
@keyframes moonSightingRayFlicker {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}

/* lens glint pulsing, as if catching the moonlight */
.moon-sighting-lens-glint {
  animation: moonSightingLensGlint 2.6s ease-in-out infinite;
}
@keyframes moonSightingLensGlint {
  0%, 100% { opacity: 0.25; r: 10px; }
  50% { opacity: 0.7; r: 14px; }
}

/* twinkling stars around the telescope */
.moon-sighting-star {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FAF8F2;
  box-shadow: 0 0 8px 2px rgba(250, 248, 242, 0.6);
  z-index: 1;
  animation: moonSightingTwinkle 2.8s ease-in-out infinite;
}
.moon-sighting-star-1 { top: 8%;  left: 12%; animation-delay: 0s; }
.moon-sighting-star-2 { top: 22%; right: 8%;  width: 4px; height: 4px; animation-delay: 0.7s; }
.moon-sighting-star-3 { bottom: 30%; left: 4%; width: 5px; height: 5px; animation-delay: 1.4s; }
.moon-sighting-star-4 { top: 55%; right: 18%; width: 4px; height: 4px; animation-delay: 2.1s; }

@keyframes moonSightingTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .moon-sighting-h1 { font-size: 42px; }
  .moon-sighting-hero-grid { gap: 30px; }
}

@media (max-width: 900px) {
  .moon-sighting-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .moon-sighting-subtext { margin-left: auto; margin-right: auto; }
  .moon-sighting-hero-actions { justify-content: center; }
  .moon-sighting-hero-right { order: -1; margin-bottom: 20px; }
  .moon-sighting-telescope-wrap { max-width: 300px; }
}

@media (max-width: 600px) {
  .moon-sighting-hero { padding: 60px 0; min-height: auto; }
  .moon-sighting-h1 { font-size: 32px; }
  .moon-sighting-subtext { font-size: 15.5px; }
  .moon-sighting-btn { padding: 13px 22px; font-size: 14px; }
  .moon-sighting-telescope-wrap { max-width: 250px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .moon-sighting-telescope-svg,
  .moon-sighting-glow-backdrop,
  .moon-sighting-star,
  .moon-sighting-moon-rays,
  .moon-sighting-lens-glint {
    animation: none !important;
  }
}

/* ---------- Section 1 ---------- */
.moon-sighting-intro {
  width: 100%;
  background-color: #FAF8F2;
  font-family: 'Poppins', sans-serif;
  padding: 100px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* ---------- Inner container ---------- */
.moon-sighting-intro .moon-sighting-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.moon-sighting-intro-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 60px;
}

/* ---------- Left column: content ---------- */
.moon-sighting-intro-left {
  opacity: 0;
  animation: moonSightingFadeUp 0.9s ease forwards;
}

.moon-sighting-intro .moon-sighting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(201, 149, 42, 0.12);
  border: 1px solid rgba(201, 149, 42, 0.4);
  color: #c9952a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.moon-sighting-intro .moon-sighting-eyebrow svg { color: #c9952a; flex-shrink: 0; }

.moon-sighting-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #0B1E40;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}

.moon-sighting-divider {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c9952a 0%, #20C076 100%);
  margin-bottom: 28px;
}

.moon-sighting-body-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3f4b;
  margin: 0 0 20px 0;
}
.moon-sighting-body-text:last-child { margin-bottom: 0; }

/* ---------- Right column: image ---------- */
.moon-sighting-intro-right {
  opacity: 0;
  animation: moonSightingFadeUp 0.9s ease 0.15s forwards;
}

.moon-sighting-image-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 30, 64, 0.18);
}

.moon-sighting-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
.moon-sighting-image-frame:hover img {
  transform: scale(1.04);
}

/* elegant Islamic-style corner ornaments on the frame */
.moon-sighting-frame-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 3px solid #c9952a;
  pointer-events: none;
}
.moon-sighting-frame-corner-tl {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
  border-radius: 10px 0 0 0;
}
.moon-sighting-frame-corner-br {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 10px 0;
}

/* ---------- Entrance animation ---------- */
@keyframes moonSightingFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .moon-sighting-h2 { font-size: 34px; }
  .moon-sighting-intro-grid { gap: 40px; }
  .moon-sighting-image-frame img { height: 400px; }
}

@media (max-width: 900px) {
  .moon-sighting-intro-grid {
    grid-template-columns: 1fr;
  }
  .moon-sighting-intro-right { order: -1; }
  .moon-sighting-image-frame img { height: 340px; }
}

@media (max-width: 600px) {
  .moon-sighting-intro { padding: 64px 0; }
  .moon-sighting-h2 { font-size: 28px; }
  .moon-sighting-body-text { font-size: 15px; }
  .moon-sighting-image-frame img { height: 260px; }
  .moon-sighting-frame-corner { width: 32px; height: 32px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .moon-sighting-intro-left,
  .moon-sighting-intro-right {
    animation: none;
    opacity: 1;
  }
  .moon-sighting-image-frame:hover img {
    transform: none;
  }
}


/* ---------- Section 3 ---------- */
.moon-sighting-why {
  width: 100%;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* ---------- Inner container ---------- */
.moon-sighting-why .moon-sighting-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.moon-sighting-why-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  gap: 60px;
}

/* ---------- Left column: heading + body + bullets ---------- */
.moon-sighting-why-left {
  opacity: 0;
  animation: moonSightingFadeUp 0.9s ease forwards;
}

.moon-sighting-why .moon-sighting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(201, 149, 42, 0.12);
  border: 1px solid rgba(201, 149, 42, 0.4);
  color: #c9952a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.moon-sighting-why .moon-sighting-eyebrow svg { color: #c9952a; flex-shrink: 0; }

.moon-sighting-why .moon-sighting-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: #0B1E40;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}

.moon-sighting-why .moon-sighting-divider {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c9952a 0%, #20C076 100%);
  margin-bottom: 26px;
}

.moon-sighting-why .moon-sighting-body-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3f4b;
  margin: 0 0 26px 0;
}

/* ---------- Bullet list ---------- */
.moon-sighting-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.moon-sighting-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #FAF8F2;
  border: 1px solid rgba(11, 30, 64, 0.06);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.moon-sighting-why-item:hover {
  transform: translateX(4px);
  border-color: rgba(201, 149, 42, 0.4);
  box-shadow: 0 8px 20px rgba(11, 30, 64, 0.08);
}

.moon-sighting-why-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8c265 0%, #c9952a 100%);
  color: #0B1E40;
}

.moon-sighting-why-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  color: #22293b;
  padding-top: 4px;
}

/* ---------- Right column: prominent feature card ---------- */
.moon-sighting-why-right {
  opacity: 0;
  animation: moonSightingFadeUp 0.9s ease 0.15s forwards;
  display: flex;
}

.moon-sighting-feature-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #0B1E40 0%, #0A1533 100%);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 24px 60px rgba(11, 30, 64, 0.25);
  overflow: hidden;
}

/* subtle Islamic geometric pattern accent */
.moon-sighting-feature-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 15% 20%, transparent 0, transparent 20px, #c9952a 21px, transparent 22px),
    radial-gradient(circle at 85% 80%, transparent 0, transparent 26px, #20C076 27px, transparent 28px),
    radial-gradient(circle at 80% 15%, transparent 0, transparent 14px, #c9952a 15px, transparent 16px);
  background-size: 240px 240px, 280px 280px, 200px 200px;
  pointer-events: none;
}

.moon-sighting-feature-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8c265 0%, #c9952a 100%);
  color: #0B1E40;
  margin-bottom: 28px;
  box-shadow: 0 10px 24px rgba(201, 149, 42, 0.35);
}

.moon-sighting-feature-lead {
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.55;
  color: #FAF8F2;
  margin: 0 0 32px 0;
  letter-spacing: -0.01em;
}

.moon-sighting-feature-rule {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(250, 248, 242, 0.14);
  margin-bottom: 32px;
}

.moon-sighting-highlight-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 149, 42, 0.35);
  border-radius: 16px;
  padding: 26px 28px;
}

.moon-sighting-highlight-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #d9dde6;
  margin: 0;
}

/* ---------- Entrance animation ---------- */
@keyframes moonSightingFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .moon-sighting-why .moon-sighting-h2 { font-size: 30px; }
  .moon-sighting-why-grid { gap: 40px; }
  .moon-sighting-feature-lead { font-size: 20px; }
  .moon-sighting-feature-card { padding: 44px 36px; }
}

@media (max-width: 900px) {
  .moon-sighting-why-grid {
    grid-template-columns: 1fr;
  }
  .moon-sighting-feature-card { margin-top: 8px; }
}

@media (max-width: 600px) {
  .moon-sighting-why { padding: 64px 0; }
  .moon-sighting-why .moon-sighting-h2 { font-size: 26px; }
  .moon-sighting-why .moon-sighting-body-text,
  .moon-sighting-why-text,
  .moon-sighting-highlight-text { font-size: 15px; }
  .moon-sighting-feature-card { padding: 36px 26px; }
  .moon-sighting-feature-lead { font-size: 19px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .moon-sighting-why-left,
  .moon-sighting-why-right {
    animation: none;
    opacity: 1;
  }
  .moon-sighting-why-item:hover {
    transform: none;
  }
}


/* ---------- Section 3 ---------- */
.moon-sighting-calendar {
  width: 100%;
  background-color: #FAF8F2;
  font-family: 'Poppins', sans-serif;
  padding: 100px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* ---------- Inner container ---------- */
.moon-sighting-calendar .moon-sighting-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

/* ---------- Centered heading block ---------- */
.moon-sighting-calendar-head {
  max-width: 760px;
  margin: 0 auto 64px auto;
  text-align: center;
  opacity: 0;
  animation: moonSightingFadeUp 0.9s ease forwards;
}

.moon-sighting-calendar .moon-sighting-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(201, 149, 42, 0.12);
  border: 1px solid rgba(201, 149, 42, 0.4);
  color: #c9952a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.moon-sighting-calendar .moon-sighting-eyebrow svg { color: #c9952a; flex-shrink: 0; }

.moon-sighting-calendar .moon-sighting-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: #0B1E40;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}

.moon-sighting-divider-center {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c9952a 0%, #20C076 100%);
  margin: 0 auto 26px auto;
}

.moon-sighting-body-text-center {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3f4b;
  margin: 0;
}

/* ---------- 4-column icon feature row ---------- */
.moon-sighting-calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
  opacity: 0;
  animation: moonSightingFadeUp 0.9s ease 0.15s forwards;
}

.moon-sighting-calendar-card {
  background: #ffffff;
  border: 1px solid rgba(11, 30, 64, 0.06);
  border-radius: 18px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11, 30, 64, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.moon-sighting-calendar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(11, 30, 64, 0.12);
  border-color: rgba(201, 149, 42, 0.35);
}

.moon-sighting-calendar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  background: linear-gradient(135deg, #e8c265 0%, #c9952a 100%);
  color: #0B1E40;
  box-shadow: 0 10px 22px rgba(201, 149, 42, 0.3);
}

.moon-sighting-calendar-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #0B1E40;
  margin: 0 0 12px 0;
}

.moon-sighting-calendar-card-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5a5f6b;
  margin: 0;
}

/* ---------- Prominent closing highlight card ---------- */
.moon-sighting-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(160deg, #0B1E40 0%, #0A1533 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 30, 64, 0.25);
  opacity: 0;
  animation: moonSightingFadeUp 0.9s ease 0.3s forwards;
}

.moon-sighting-feature-card-wide {
  padding: 52px 60px;
  text-align: center;
}

.moon-sighting-feature-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 12% 25%, transparent 0, transparent 20px, #c9952a 21px, transparent 22px),
    radial-gradient(circle at 90% 75%, transparent 0, transparent 26px, #20C076 27px, transparent 28px),
    radial-gradient(circle at 80% 20%, transparent 0, transparent 14px, #c9952a 15px, transparent 16px);
  background-size: 240px 240px, 280px 280px, 200px 200px;
  pointer-events: none;
}

.moon-sighting-feature-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8c265 0%, #c9952a 100%);
  color: #0B1E40;
  margin-bottom: 26px;
  box-shadow: 0 10px 24px rgba(201, 149, 42, 0.35);
}

.moon-sighting-feature-lead {
  position: relative;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.6;
  color: #FAF8F2;
  margin: 0;
  letter-spacing: -0.01em;
}

.moon-sighting-feature-lead-wide {
  max-width: 820px;
}

/* ---------- Entrance animation ---------- */
@keyframes moonSightingFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 1024px) {
  .moon-sighting-calendar .moon-sighting-h2 { font-size: 30px; }
  .moon-sighting-feature-lead { font-size: 19px; }
  .moon-sighting-feature-card-wide { padding: 44px 36px; }
}

@media (max-width: 600px) {
  .moon-sighting-calendar { padding: 64px 0; }
  .moon-sighting-calendar-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
  .moon-sighting-calendar .moon-sighting-h2 { font-size: 26px; }
  .moon-sighting-body-text-center { font-size: 15px; }
  .moon-sighting-calendar-card { padding: 28px 22px; }
  .moon-sighting-feature-card-wide { padding: 36px 24px; }
  .moon-sighting-feature-lead { font-size: 18px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .moon-sighting-calendar-head,
  .moon-sighting-calendar-grid,
  .moon-sighting-feature-card {
    animation: none;
    opacity: 1;
  }
  .moon-sighting-calendar-card:hover {
    transform: none;
  }
}