/* ═══════════════════════════════════════════════
   PATEL EVENTS — SERVICE PAGES CSS
   ═══════════════════════════════════════════════ */

/* ── SERVICE HERO ── */
.svc-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: -2;
  transition: transform 8s linear;
}

.svc-hero:hover .svc-hero-bg {
  transform: scale(1.04);
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.svc-hero-content {
  max-width: 720px;
  animation: fadeUp 1s ease both;
}

.svc-hero-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.svc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.svc-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.svc-hero-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.svc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── INTRO SECTION ── */
.svc-intro {
  padding: 6rem 5%;
  position: relative;
  z-index: 10;
}

.svc-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.svc-intro-text .section-label {
  margin-bottom: 1rem;
}

.svc-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.svc-intro-title em {
  color: var(--gold);
  font-style: italic;
}

.svc-intro-body {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.svc-intro-body p + p {
  margin-top: 1.2rem;
}

.svc-intro-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.svc-intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.svc-intro-img-wrap:hover img {
  transform: scale(1.04);
}



/* ── FEATURES / HIGHLIGHTS ── */
.svc-features {
  padding: 5rem 5%;
  position: relative;
  z-index: 10;
}

.svc-features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.svc-feature-card {
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.svc-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.svc-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.12);
}

.svc-feature-card:hover::before {
  opacity: 1;
}

.svc-feature-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.svc-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.svc-feature-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* ── WHY CHOOSE US ── */
.svc-why {
  padding: 5rem 5%;
  position: relative;
  z-index: 10;
}

.svc-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.svc-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.svc-why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.svc-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.svc-why-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.svc-why-text p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ── WHY CARD (replaces svc-why-visual) ── */
.svc-why-card {
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.svc-why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.06), transparent);
  pointer-events: none;
}

.svc-why-card:hover {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.svc-why-card-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 0.5rem;
  user-select: none;
}

.svc-why-card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: 400px;
}

.svc-why-card-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.7), transparent);
  margin: 2rem auto;
  flex-shrink: 0;
}


/* ── CTA BANNER ── */
.svc-cta {
  padding: 5rem 5%;
  position: relative;
  z-index: 10;
}

.svc-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 32px;
  padding: 4rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.svc-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 168, 76, 0.06), transparent);
  pointer-events: none;
}

.svc-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.svc-cta-title em {
  color: var(--gold);
  font-style: italic;
}

.svc-cta-sub {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.svc-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RELATED SERVICES ── */
.svc-related {
  padding: 5rem 5% 3rem;
  position: relative;
  z-index: 10;
}

.svc-related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.svc-related-card {
  background: rgba(18, 18, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.svc-related-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  background: rgba(25, 25, 25, 0.9);
}

.svc-related-card-icon {
  font-size: 1.6rem;
}

.svc-related-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
}

.svc-related-card:hover .svc-related-card-name {
  color: var(--gold);
}

/* ── SEO FOOTER STRIP ── */
.svc-seo-strip {
  margin: 0 5% 4rem;
  padding: 2rem 2.5rem;
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  position: relative;
  z-index: 10;
}

.svc-seo-strip p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-hero {
    padding: 8rem 5% 4rem;
    min-height: 60vh;
    align-items: center;
    text-align: center;
  }
  .svc-hero-actions {
    justify-content: center;
  }
  .svc-intro-inner,
  .svc-why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .svc-intro-img-wrap {
    aspect-ratio: 16/9;
    max-height: 400px;
  }
  .svc-why-visual {
    display: none;
  }
  .svc-cta-inner {
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .svc-hero {
    min-height: 55vh;
    padding: 7rem 5% 3.5rem;
  }
  .svc-hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .svc-features-grid {
    grid-template-columns: 1fr;
  }
  .svc-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .svc-intro,
  .svc-features,
  .svc-why,
  .svc-cta,
  .svc-related {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ── OLD COMPAT (service-detail still used by some pages) ── */
.services-page-section {
  padding: 8rem 5% 6rem;
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
}
.services-page-header { text-align: center; margin-bottom: 5rem; animation: fadeUp 1s ease both; }
.services-page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; margin-top: 0.5rem; margin-bottom: 1.5rem; color: var(--white); line-height: 1.1; }
.services-page-title em { font-style: italic; color: var(--gold); }
.services-page-subtitle { color: var(--gray); font-size: 0.9rem; line-height: 1.8; max-width: 600px; margin: 0 auto; letter-spacing: 0.03em; }
.services-boxes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; padding-bottom: 4rem; }
.service-box { background: rgba(20,20,20,0.45); border: 1px solid rgba(201,168,76,0.3); border-radius: 28px; padding: 3rem 2.5rem; box-shadow: 0 15px 35px rgba(0,0,0,0.5); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s, box-shadow 0.4s; display: flex; flex-direction: column; }
.service-box:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 25px 60px rgba(201,168,76,0.22); }
.service-box-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--white); text-align: center; transition: color 0.3s; }
.service-box:hover .service-box-title { color: var(--gold); }
.service-box-img-wrapper { width: 100%; aspect-ratio: 16/10; border-radius: 18px; overflow: hidden; margin: 1.75rem 0; border: 1px solid rgba(255,255,255,0.08); }
.service-box-img-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.4s; }
.service-box:hover .service-box-img-wrapper img { transform: scale(1.05); opacity: 1; }
.service-box-desc { color: var(--gray); font-size: 0.85rem; line-height: 1.8; text-align: center; margin-bottom: 2rem; flex-grow: 1; }
.service-box-actions { display: flex; gap: 1rem; justify-content: center; }
.service-box-actions .btn-glass { padding: 0.8rem 1.5rem; font-size: 0.65rem; letter-spacing: 0.15em; flex: 1; text-align: center; justify-content: center; }
.service-box-actions .btn-glass.secondary { border-color: rgba(255,255,255,0.15); color: var(--white-dim); }
.service-box-actions .btn-glass.secondary:hover { border-color: var(--gold); color: var(--black); background: var(--gold); }
