/* =============================================
   HOME PAGE — Specific Styles
   ============================================= */

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #fce8ea 0%, var(--cream) 55%, #fdf3e4 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle--1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(232,160,168,0.18) 0%, transparent 70%);
}
.hero-bg-circle--2 {
  width: 350px; height: 350px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.hero-bg-circle--3 {
  width: 200px; height: 200px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(183,110,121,0.06) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 4rem;
}

.hero-content { position: relative; z-index: 1; }

.hero-script {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--pink-mid);
  line-height: 1;
  margin-top: 0.5rem;
}
.hero-heading {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--taupe);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: #6b5a5a;
  max-width: 460px;
  margin: 1.5rem 0 2rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
  padding: 70px;
}

/* Concentric rings that fade to white at the bottom */
.hero-rings {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  /* mask fades ring to transparent toward the bottom */
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 75%);
}
.hero-ring--1 {
  width: 380px; height: 380px;
  background: rgba(232,160,168,0.22);
}
.hero-ring--2 {
  width: 460px; height: 460px;
  background: rgba(232,160,168,0.13);
}
.hero-ring--3 {
  width: 540px; height: 540px;
  background: rgba(232,160,168,0.07);
}

.hero-img-wrap {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(183,110,121,0.18);
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.hero-logo-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Floating icon bubbles */
.hero-float {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(183,110,121,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-mid);
  font-size: 1rem;
  animation: floatBounce 3s ease-in-out infinite;
  z-index: 3;
}
.hero-float--1 { top: 10%; left: 2%;  animation-delay: 0s; }
.hero-float--2 { bottom: 18%; right: 2%; animation-delay: 1s; }
.hero-float--3 { top: 52%; left: 0%;  animation-delay: 2s; }

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



.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--pink-light);
  font-size: 1.1rem;
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- Features Strip --- */
.features-strip {
  background: var(--white);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(232,160,168,0.2);
  border-bottom: 1px solid rgba(232,160,168,0.2);
}
.features-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.feature-icon {
  color: var(--pink-mid);
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.feature-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--taupe);
}
.feature-item span {
  font-size: 0.78rem;
  color: #9b7d80;
}

/* --- Trust Section --- */
.trust-section {
  background: linear-gradient(180deg, #fffaf7 0%, #fff4f1 100%);
}

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

.trust-card {
  background: var(--white);
  border: 1px solid rgba(183,110,121,0.16);
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 8px 24px rgba(122,106,88,0.08);
}

.trust-card--highlight {
  border-color: rgba(183,110,121,0.35);
  background: linear-gradient(145deg, #fff7f8 0%, #fff 100%);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(183,110,121,0.12);
  color: var(--pink-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.trust-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  color: var(--taupe);
  font-size: 1.05rem;
}

.trust-card p {
  margin: 0;
  color: #6b5a5a;
  line-height: 1.65;
  font-size: 0.93rem;
}

.trust-link {
  margin-top: 0.8rem;
  display: inline-block;
  color: var(--pink-mid);
  font-weight: 700;
  text-decoration: none;
}

.trust-link:hover {
  text-decoration: underline;
}

/* --- About Snippet --- */
.about-snippet { background: linear-gradient(to right, #fde8eb 0%, var(--cream) 100%); }
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-snippet-img-wrap {
  display: flex;
  justify-content: center;
}
.about-snippet-img-placeholder {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 16px 48px rgba(183,110,121,0.15);
  overflow: hidden;
}
.about-logo-float {
  width: 75%;
  height: 75%;
  object-fit: contain;
}
.about-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(232,160,168,0.18), transparent 70%);
  border-radius: 50%;
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--cream);
}

/* --- Refer Section --- */
.refer-section { background: linear-gradient(135deg, #fce8ea, #fdf3e4); }
.refer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.refer-content { flex: 1; min-width: 260px; }
.refer-icon {
  font-size: 6rem;
  color: var(--pink-light);
  opacity: 0.5;
  flex-shrink: 0;
}

/* --- Connect Section --- */
.connect-section {
  background: var(--white);
}
.connect-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}
.connect-social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--pink-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-mid);
  transition: background var(--transition), color var(--transition);
}
.connect-social-btn:hover {
  background: var(--pink-mid);
  color: var(--white);
  border-color: var(--pink-mid);
}
.connect-social-btn i { font-size: 1.1rem; }

.connect-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--taupe);
}
.connect-email a {
  color: var(--pink-mid);
  font-weight: 500;
  transition: opacity var(--transition);
}
.connect-email a:hover { opacity: 0.75; }

/* --- Responsive --- */
@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 4rem 0 3rem;
  }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
  .about-snippet-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .about-snippet-img-wrap { display: none; }
  .refer-card { flex-direction: column; text-align: center; }
  .refer-icon { display: none; }
  .trust-grid { grid-template-columns: 1fr; }

  /* Features strip: stack as a left-aligned column, centered as a block,
     so every row's icon and text start at the same X position. */
  .features-list {
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    gap: 1.25rem;
  }
  .feature-item { width: 100%; }
}
