/* ============================================
   VIP FILINGS — CATEGORY PAGE CSS
   Save as: css/category-page.css
   ============================================ */

/* ── HERO ── */
.cat-hero {
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  pointer-events: none;
}

.cat-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cat-hero-icon {
  font-size: 3.2rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.3));
}

.cat-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.cat-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cat-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 32px;
}

.cat-hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cat-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
}

.cat-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.cat-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: all .25s;
}

.cat-btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

.cat-hero-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cat-hero-trust span {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ── SERVICES SECTION ── */
.cat-services-section {
  background: var(--cream);
  padding: 64px 24px 72px;
}

.cat-services-inner {
  max-width: 960px;
  margin: 0 auto;
}

.cat-sec-header {
  text-align: center;
  margin-bottom: 44px;
}

.cat-sec-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.cat-sec-header p {
  font-size: .92rem;
  color: var(--text-light);
}

/* ── SERVICE CARDS LIST ── */
.cat-svc-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cat-svc-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: all .28s cubic-bezier(.22,.68,0,1.2);
  position: relative;
  overflow: hidden;
}

.cat-svc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity .25s;
  border-radius: 4px 0 0 4px;
}

.cat-svc-card:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: 0 12px 36px rgba(10,22,40,.14);
  border-color: rgba(30,77,183,.2);
}

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

.cat-svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.cat-svc-body {
  flex: 1;
  min-width: 0;
}

.cat-svc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color .2s;
}

.cat-svc-card:hover .cat-svc-body h3 {
  color: var(--accent);
}

.cat-svc-body p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 12px;
}

.cat-svc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-svc-tag {
  display: inline-block;
  background: rgba(30,77,183,.08);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(30,77,183,.15);
}

.cat-svc-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(30,77,183,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.cat-svc-card:hover .cat-svc-arrow {
  background: var(--accent);
  color: #fff;
  transform: translateX(4px);
}

/* ── CTA BAND ── */
.cat-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a72 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cat-cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cat-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cat-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cat-cta-inner p {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cat-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .cat-hero { padding: 60px 20px 56px; }
  .cat-hero-btns { flex-direction: column; align-items: center; }
  .cat-hero-trust { gap: 12px; }
  .cat-svc-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .cat-svc-arrow { display: none; }
  .cat-cta-btns { flex-direction: column; align-items: center; }
  .cat-services-section { padding: 44px 16px 56px; }
}

/* ── PROFESSIONAL BREADCRUMB ── */
.breadcrumb-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(30,77,183,.1);
  position: relative;
  overflow: hidden;
}

.breadcrumb-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bc-home {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all .2s;
  background: rgba(30,77,183,.06);
  border: 1px solid rgba(30,77,183,.12);
}

.bc-home:hover {
  background: rgba(30,77,183,.12);
  color: var(--navy);
}

.bc-home svg {
  flex-shrink: 0;
  opacity: .8;
}

.bc-sep {
  display: flex;
  align-items: center;
  color: var(--text-light);
  margin: 0 2px;
}

.bc-current {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(30,77,183,.07), rgba(30,77,183,.03));
  border: 1px solid rgba(30,77,183,.1);
  padding: 5px 12px;
  border-radius: 6px;
  position: relative;
}

.bc-current::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
}

@media (max-width: 640px) {
  .breadcrumb-inner { padding: 10px 16px; }
  .bc-home span { display: none; }
}