/* =========================================================
   MEENA PHOTOGRAPHY — WHY CHOOSE
   Clean / consolidated / scroll-performance CSS
========================================================= */

:root {
  --wc-bg: #fdf8f4;
  --wc-white: #fff;
  --wc-text: #2f2b28;
  --wc-muted: #77716b;
  --wc-gold: #d9a77a;
  --wc-gold-light: #efd3b6;
  --wc-border: #ead8c8;
  --wc-radius: 36px;
  --wc-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  --wc-transition: .45s ease;
}

/* =========================================================
   SECTION / CONTAINER
========================================================= */

.why-choose {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 70px 20px;
  background: var(--wc-bg);
  isolation: isolate;
}

.wc-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Soft background glows */
.why-choose::before,
.why-choose::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 167, 122, .08), transparent 72%);
}

.why-choose::before {
  width: 450px;
  height: 450px;
  top: -150px;
  left: -150px;
}

.why-choose::after {
  width: 620px;
  height: 620px;
  right: -150px;
  bottom: -150px;
}

/* =========================================================
   DECORATIVE STARS
========================================================= */

.wc-star {
  position: absolute;
  width: 220px;
  height: 180px;
  opacity: .15;
  pointer-events: none;
  animation: wcTwinkle 6s ease-in-out infinite;
}

.star-left {
  top: 120px;
  left: 60px;
}

.star-right {
  right: 60px;
  bottom: 150px;
  animation-delay: 2s;
}

.wc-star span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: var(--wc-gold);
  transform: translate(-50%, -50%);
}

.wc-star span:first-child {
  width: 2px;
  height: 80px;
}

.wc-star span:last-child {
  width: 80px;
  height: 2px;
}

@keyframes wcTwinkle {
  0%, 100% {
    opacity: .12;
    transform: scale(1);
  }
  50% {
    opacity: .32;
    transform: scale(1.1);
  }
}

/* =========================================================
   HEADER
========================================================= */

.wc-header {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
}

.wc-subtitle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.wc-line {
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
}

.wc-subtitle {
  color: var(--wc-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-small-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 22px 0;
}

.wc-small-divider span {
  width: 45px;
  height: 1px;
  background: #d8c1aa;
}

.wc-small-divider svg {
  display: block;
  width: 18px;
  height: 18px;
}

.wc-title {
  margin: 0;
  color: var(--wc-text);
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 1px;
}

.wc-title span {
  display: block;
  margin-top: 12px;
  color: var(--wc-gold);
  font-style: italic;
  font-weight: 500;
}

.wc-desc {
  max-width: 650px;
  margin: 28px auto 0;
  color: var(--wc-muted);
  font-size: 17px;
  line-height: 1.9;
}

/* =========================================================
   CARD GRID
========================================================= */

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 100px;
  align-items: start;
}

/* =========================================================
   CARD
========================================================= */

.luxury-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 380px;
  margin: 0 auto;
  padding: 130px 30px 45px;
  overflow: visible;
  border: 1px solid var(--wc-border);
  border-radius: 42px;
  background: var(--wc-white);
  text-align: center;
  box-shadow:
    0 12px 25px rgba(0, 0, 0, .05),
    0 30px 70px rgba(217, 167, 122, .15),
    inset 0 1px 0 rgba(255, 255, 255, .9);

  /* Scroll reveal is handled only by .show */
  opacity: 0;
  transform: translate3d(0, 45px, 0);
  transition:
    opacity .7s ease,
    transform .7s ease,
    box-shadow .45s ease;
  will-change: opacity, transform;
}

.luxury-card.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.luxury-card:hover {
  box-shadow:
    0 22px 45px rgba(0, 0, 0, .08),
    0 35px 80px rgba(217, 167, 122, .22);
}

/* Card top background */
.luxury-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 120px;
  border-radius: 42px 42px 0 0;
  background: #fff;
}

/* =========================================================
   ICON
========================================================= */

.luxury-icon {
  position: absolute;
  top: -70px;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
}

.icon-circle {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wc-border);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

.icon-circle img {
  width: 95px;
  height: auto;
  transition: transform .45s ease;
}

.luxury-card:hover .icon-circle img {
  transform: scale(1.06);
}

/* Gold diamond */
.diamond {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 22px;
  height: 22px;
  background: var(--wc-gold);
  transform: translateX(-50%) rotate(45deg);
}

/* =========================================================
   CONTENT
========================================================= */

.luxury-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 30px 10px 0;
  display: flex;
  flex-direction: column;
}

.luxury-content h3 {
  margin: 0 0 22px;
  color: var(--wc-text);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.title-divider span {
  width: 55px;
  height: 1px;
  background: var(--wc-gold);
}

.title-divider i {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--wc-gold);
  transform: rotate(45deg);
}

.luxury-content p {
  flex-grow: 1;
  margin: 0;
  color: var(--wc-muted);
  font-size: 18px;
  line-height: 1.9;
}

.bottom-design {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 50px;
}

.bottom-design span {
  width: 40px;
  height: 1px;
  background: var(--wc-gold);
}

.bottom-design svg {
  display: block;
  width: 80px;
  height: auto;
}

/* =========================================================
   ACTIVE GLOW
========================================================= */

.active-glow {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .10),
    0 0 30px rgba(217, 167, 122, .25);
}

/* =========================================================
   GENERIC REVEAL
   Keep this compatible with existing JS.
========================================================= */

.reveal-up {
  opacity: 0;
  transform: translate3d(0, 45px, 0);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal-up.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =========================================================
   FLOATING SPARKLES
========================================================= */

.wc-sparkle {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wc-gold);
  opacity: 0;
  pointer-events: none;
  animation: sparkleAnim 3s linear forwards;
}

@keyframes sparkleAnim {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(.3);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -45px, 0) scale(1.8);
  }
}

/* =========================================================
   SECTION DIVIDER
========================================================= */

.section-divider {
  width: 100%;
  padding: 70px 0 20px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.line {
  flex: 1;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wc-gold), transparent);
}

.center-ornament {
  width: 170px;
  flex-shrink: 0;
}

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

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
  .wc-container {
    max-width: 1100px;
  }

  .luxury-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 100px;
  }

  .wc-title {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .why-choose {
    padding: 60px 25px;
  }

  .wc-header {
    margin-bottom: 70px;
  }

  .wc-title {
    font-size: 40px;
    line-height: 1.25;
  }

  .wc-desc {
    max-width: 620px;
    font-size: 16px;
  }

  .luxury-grid {
    gap: 100px 30px;
  }

  .luxury-card {
    max-width: 340px;
    min-height: 500px;
  }

  .icon-circle {
    width: 165px;
    height: 165px;
  }

  .icon-circle img {
    width: 85px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 55px 20px;
  }

  .wc-header {
    margin-bottom: 50px;
  }

  .wc-title {
    font-size: 32px;
  }

  .wc-title span {
    margin-top: 8px;
  }

  .wc-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .wc-line {
    max-width: 40px;
  }

  .wc-desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .luxury-grid {
    grid-template-columns: 1fr;
    gap: 130px;
    width: 100%;
  }

  .luxury-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0;
    padding: 120px 25px 40px;
  }

  .luxury-icon {
    top: -80px;
  }

  .icon-circle {
    width: 120px;
    height: 120px;
  }

  .icon-circle img {
    width: 65px;
  }

  .luxury-content h3 {
    font-size: 22px;
  }

  .luxury-content p {
    font-size: 16px;
  }

  .title-divider span {
    width: 40px;
  }

  .bottom-design {
    margin-top: 35px;
  }

  .star-left,
  .star-right {
    display: none;
  }

  /* Prevent mobile scroll animation from feeling stuck */
  .luxury-card,
  .reveal-up {
    will-change: auto;
  }

  .luxury-card:hover {
    transform: none;
  }

  .luxury-card:hover .icon-circle img {
    transform: none;
  }

  .wc-sparkle {
    display: none;
  }
}

@media (max-width: 576px) {
  .why-choose {
    padding: 45px 15px;
  }

  .wc-title {
    font-size: 28px;
  }

  .wc-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .wc-desc {
    font-size: 14px;
  }

  .luxury-grid {
    gap: 115px;
  }

  .luxury-card {
    border-radius: 30px;
    padding: 110px 22px 35px;
  }

  .luxury-card::before {
    border-radius: 30px 30px 0 0;
  }

  .icon-circle {
    width: 135px;
    height: 135px;
  }

  .icon-circle img {
    width: 70px;
  }

  .luxury-content h3 {
    font-size: 20px;
  }

  .luxury-content p {
    font-size: 15px;
    line-height: 1.7;
  }

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

  .bottom-design svg {
    width: 65px;
  }

  .center-ornament {
    width: 90px;
  }

  .section-divider {
    padding: 55px 0 10px;
  }

  .divider {
    gap: 15px;
  }

  .line {
    max-width: none;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .why-choose *,
  .why-choose *::before,
  .why-choose *::after {
    animation: none !important;
    transition: none !important;
  }

  .luxury-card,
  .luxury-card.show,
  .reveal-up,
  .reveal-up.show {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto !important;
  }
}
