@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Dancing+Script:wght@600;700&family=Montserrat:wght@300;400;500;600;700&family=Noto+Serif+Devanagari:wght@400;500&display=swap');

:root {
  --bg: #080808;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-cursive: 'Dancing Script', cursive;
  --pink: #ff6eb4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: rgba(255,255,255,0.85); font-family: var(--font-secondary); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ── Back Button ── */
.back-btn {
  position: fixed; top: 20px; left: 24px; z-index: 100;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-secondary); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 0.5rem 1.1rem;
  transition: all 0.3s;
}
.back-btn:hover {
  color: var(--pink);
  border-color: rgba(255,110,180,0.5);
  background: rgba(255,110,180,0.08);
  box-shadow: 0 0 16px rgba(255,110,180,0.2);
}
.back-btn svg { transition: transform 0.3s; }
.back-btn:hover svg { transform: translateX(-3px); }

/* ── Hero ── */
.svc-page-hero {
  position: relative; min-height: 38vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 6rem 5% 4rem;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,110,180,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(162,155,254,0.07) 0%, transparent 50%),
    #080808;
}
.svc-hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,110,180,0.3), transparent);
}
.svc-hero-content { position: relative; z-index: 1; }
.svc-hero-label {
  font-family: var(--font-secondary); font-size: 0.65rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,110,180,0.7); margin-bottom: 1rem;
}
.svc-hero-title {
  font-family: var(--font-cursive); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: #fff; line-height: 1.05;
  text-shadow:
    0 0 8px #fff,
    0 0 22px rgba(255,140,200,0.9),
    0 0 50px rgba(255,60,150,0.6),
    0 0 90px rgba(255,20,100,0.3);
  margin-bottom: 1rem;
}
.svc-hero-sub {
  font-family: var(--font-secondary); font-size: 0.85rem;
  color: rgba(255,255,255,0.45); letter-spacing: 0.04em;
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ── Main ── */
.svc-page-main { max-width: 1280px; margin: 0 auto; padding: 3rem 4% 5rem; }

/* ── Block ── */
.svc-block { margin-bottom: 4rem; }
.svc-block-header { margin-bottom: 2rem; }
.svc-block-label {
  display: inline-block;
  font-family: var(--font-secondary); font-size: 0.62rem;
  font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink);
  border-bottom: 1px solid rgba(255,110,180,0.35);
  padding-bottom: 0.4rem;
}

/* ── Cards Grid ── */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.svc-cards-grid--ext {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Full Card ── */
.svc-full-card {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--c), 0.07) 0%, transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,0.03) 0%, #060606 100%);
  border: 1px solid rgba(var(--c), 0.2);
  border-radius: 20px;
  padding: 1.6rem 1.3rem 1.4rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-full-card::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--c), 0.7), transparent);
  transition: width 0.4s;
}
.svc-full-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--c), 0.5);
  box-shadow: 0 18px 48px rgba(0,0,0,0.6), 0 0 28px rgba(var(--c), 0.08);
}
.svc-full-card:hover::before { width: 85%; }

.sfc-top {
  display: flex; align-items: flex-start; gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.sfc-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--c), 0.08);
  border: 1px solid rgba(var(--c), 0.3);
  color: rgb(var(--c));
  box-shadow: 0 0 14px rgba(var(--c), 0.1);
  transition: box-shadow 0.3s;
}
.svc-full-card:hover .sfc-icon {
  box-shadow: 0 0 22px rgba(var(--c), 0.3);
}
.sfc-title {
  font-family: var(--font-primary); font-size: 1rem;
  font-weight: 600; color: rgba(255,255,255,0.92);
  line-height: 1.25; padding-top: 0.15rem;
}
.sfc-title-mr {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.72rem; color: rgba(var(--c), 0.75);
  margin-top: 0.2rem; line-height: 1.4;
}
.sfc-desc {
  font-size: 0.76rem; color: rgba(255,255,255,0.42);
  line-height: 1.75; margin-bottom: 1rem; flex: 1;
  font-family: 'Noto Serif Devanagari', serif;
}
.svc-full-card:not(.svc-ext-card) .sfc-desc {
  font-family: var(--font-secondary);
}
.sfc-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.1rem;
}
.sfc-tags span {
  font-family: var(--font-secondary); font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgb(var(--c));
  border: 1px solid rgba(var(--c), 0.3);
  background: rgba(var(--c), 0.07);
  border-radius: 999px; padding: 0.22rem 0.65rem;
}
.sfc-btn {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-secondary); font-size: 0.58rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgb(var(--c));
  border: 1px solid rgba(var(--c), 0.45);
  background: rgba(var(--c), 0.07);
  border-radius: 999px; padding: 0.38rem 1.1rem;
  transition: all 0.3s; margin-top: auto;
}
.sfc-btn:hover {
  background: rgba(var(--c), 0.18);
  border-color: rgb(var(--c));
  box-shadow: 0 0 16px rgba(var(--c), 0.25);
  color: #fff;
}

/* ── CTA ── */
.svc-cta {
  margin-top: 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,110,180,0.1) 0%, transparent 60%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,110,180,0.18);
  border-radius: 24px; padding: 3.5rem 2rem;
  text-align: center;
}
.svc-cta-title {
  font-family: var(--font-cursive); font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff; margin-bottom: 0.8rem;
  text-shadow: 0 0 20px rgba(255,110,180,0.4);
}
.svc-cta-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.svc-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.svc-cta-primary {
  display: inline-block;
  font-family: var(--font-secondary); font-size: 0.65rem;
  font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink);
  border: 1.5px solid rgba(255,110,180,0.7);
  background: rgba(255,110,180,0.1);
  border-radius: 999px; padding: 0.75rem 2.2rem;
  text-shadow: 0 0 10px rgba(255,110,180,0.5);
  box-shadow: 0 0 18px rgba(255,110,180,0.15);
  transition: all 0.3s;
}
.svc-cta-primary:hover {
  background: rgba(255,110,180,0.2);
  border-color: var(--pink);
  box-shadow: 0 0 30px rgba(255,110,180,0.35);
  color: #fff;
}
.svc-cta-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-secondary); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  border-radius: 999px; padding: 0.75rem 2rem;
  transition: all 0.3s;
}
.svc-cta-secondary:hover {
  color: #fff; border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-cards-grid,
  .svc-cards-grid--ext { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .svc-cards-grid,
  .svc-cards-grid--ext { grid-template-columns: repeat(2, 1fr); }
  .back-btn { top: 14px; left: 14px; }
}
@media (max-width: 480px) {
  .svc-cards-grid,
  .svc-cards-grid--ext { grid-template-columns: 1fr; }
}
