/* ══════════════════════════════════════
   SP2 — Service Sub-Page Styles
   Inspired by aundigital.ae layout
   Gold / Black theme
══════════════════════════════════════ */

/* ── HERO ─────────────────────────── */
.sp2-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
  padding: 120px 6% 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* subtle grid bg */
.sp2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* gold glow bottom left */
.sp2-hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sp2-breadcrumb {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 22px;
  display: flex; gap: 6px; align-items: center;
}
.sp2-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.sp2-breadcrumb a:hover { color: var(--accent); }
.sp2-breadcrumb span { color: var(--accent); font-weight: 600; }

.sp2-hero-left h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.sp2-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}
.sp2-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.sp2-hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.sp2-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.sp2-stat-label {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── RIGHT FORM CARD ─────────────── */
.sp2-hero-right { position: relative; z-index: 1; }
.sp2-form-card {
  background: rgba(17,15,10,0.95);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.06);
  backdrop-filter: blur(20px);
}
.sp2-form-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9a84c, #f0d080);
  color: #0a0a0a;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.sp2-form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.3;
  letter-spacing: -.5px;
}
.sp2-form { display: flex; flex-direction: column; gap: 12px; }
.sp2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sp2-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.sp2-input::placeholder { color: rgba(136,132,128,0.7); }
.sp2-input:focus { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.04); }
.sp2-select { appearance: none; cursor: pointer; }
.sp2-select option { background: #111; color: #fff; }
.sp2-input-full { width: 100%; }
.sp2-textarea { resize: vertical; min-height: 90px; }
.sp2-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  background-size: 200% 100%;
  color: #0a0a0a;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background-position .4s, transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.sp2-submit:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

/* ── OTHER SERVICES BAR ──────────── */
.sp2-other-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 16px 6%;
}
.sp2-other-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.sp2-other-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-right: 6px;
  white-space: nowrap;
}
.sp2-other-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 20px;
  text-decoration: none;
  font-size: .82rem; font-weight: 500;
  color: var(--muted);
  border: 1px solid rgba(201,168,76,0.12);
  transition: all .2s;
  background: transparent;
}
.sp2-other-link:hover { color: var(--white); border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.06); }
.sp2-other-link.active { color: var(--accent); border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); font-weight: 600; }

/* ── SECTIONS ────────────────────── */
.sp2-section { padding: 80px 6%; background: var(--bg); }
.sp2-section--dark { background: var(--bg2); }
.sp2-section-inner { max-width: 1100px; margin: 0 auto; }
.sp2-section-head { text-align: center; margin-bottom: 56px; }
.sp2-section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 12px;
}
.sp2-section-head p { color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* ── SERVICE CARDS ───────────────── */
.sp2-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sp2-card {
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 18px;
  padding: 32px;
  transition: border-color .25s, transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.sp2-section--dark .sp2-card { background: var(--bg); }
.sp2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0; transition: opacity .3s;
}
.sp2-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 0 1px rgba(201,168,76,0.06); }
.sp2-card:hover::before { opacity: 1; }

.sp2-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.sp2-card-icon { font-size: 2rem; }
.sp2-card-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  letter-spacing: -2px;
}
.sp2-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.sp2-card-list {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.sp2-card-list li {
  font-size: .85rem; color: var(--muted);
  padding-left: 16px; position: relative; line-height: 1.5;
}
.sp2-card-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(201,168,76,0.5);
}
.sp2-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  transition: gap .2s;
}
.sp2-card-cta:hover { gap: 10px; }

/* ── PROCESS STEPS ───────────────── */
.sp2-steps { display: flex; flex-direction: column; gap: 0; }
.sp2-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}
/* vertical line connector */
.sp2-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px; top: 64px; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(201,168,76,0.3), rgba(201,168,76,0.05));
}
.sp2-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem; font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  transition: border-color .2s, background .2s;
}
.sp2-step:hover .sp2-step-num { border-color: var(--accent); background: rgba(201,168,76,0.12); }
.sp2-step-body {
  padding: 4px 0 40px 24px;
}
.sp2-step-body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.sp2-step-body p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── WHY US ──────────────────────── */
.sp2-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sp2-why-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -1px;
  color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.sp2-why-left p { color: var(--muted); line-height: 1.8; }
.sp2-why-right { display: flex; flex-direction: column; gap: 16px; }
.sp2-why-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color .25s, transform .3s;
}
.sp2-why-card:hover { border-color: rgba(201,168,76,0.3); transform: translateX(6px); }
.sp2-why-check {
  width: 34px; height: 34px; 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;
  color: var(--accent); font-weight: 800; font-size: .9rem;
  flex-shrink: 0;
}
.sp2-why-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.sp2-why-card p { font-size: .83rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 1024px) {
  .sp2-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .sp2-hero-right { max-width: 540px; }
  .sp2-why-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .sp2-cards-grid { grid-template-columns: 1fr; }
  .sp2-form-row { grid-template-columns: 1fr; }
  .sp2-hero-btns { flex-direction: column; }
  .sp2-section { padding: 56px 5%; }
}




/* ════════════════════════════
   MOBILE SERVICES ACCORDION
════════════════════════════ */
.mob-services-wrap { width: 100%; }

.mob-services-toggle {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 800; letter-spacing: -1px;
  color: var(--muted);
  padding: 8px 0; width: 100%; text-align: center;
  cursor: pointer;
  transition: color .2s;
}
.mob-services-toggle:hover { color: var(--accent); }
.mob-services-toggle.open  { color: var(--accent); }

.mob-arrow {
  transition: transform .3s cubic-bezier(.23,1,.32,1);
  flex-shrink: 0; margin-top: 4px;
}
.mob-services-toggle.open .mob-arrow { transform: rotate(180deg); }

.mob-services-list {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.23,1,.32,1), opacity .3s;
  opacity: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 20px;
}
.mob-services-list.open {
  max-height: 400px;
  opacity: 1;
  padding: 8px 20px 12px;
}

.mob-sub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: .95rem; font-weight: 500;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all .2s;
}
.mob-sub-link:hover {
  color: var(--white);
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.2);
}
.mob-sub-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.sp2-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
}
.sp2-other-link svg { flex-shrink: 0; }




/* OVERLAY */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* JS se show hoga */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  backdrop-filter: blur(6px);
}

/* BOX */
.popup-content {
  background: #111;
  color: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: popupFade 0.4s ease;
}

/* TITLE */
.popup-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #f0d080;
}

/* TEXT */
.popup-content p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* BUTTON */
.popup-content button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0d080, #c9a84c);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.popup-content button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ANIMATION */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}