/* ── PlastiBytes Services CSS ──────────────────── */
:root {
  --g:    #1b3a5e; --gm:   #2565a0; --gl:   #3D90D7;
  --sage: #b8d3ee; --sl:   #e6f1fb; --cream:#f9f6f0;
  --am:   #d4820a; --al:   #fdf0d8;
  --tx:   #1a1a1a; --mu:   #6b7560;
  --wh:   #ffffff; --bd:   #e4e0d8; --bg2:  #f4f1eb;
}
body { background: var(--cream); }

/* ── SHARED BUTTONS ── */
.pb-btn-primary {
  display: inline-block; padding: 14px 28px; background: var(--am);
  color: var(--wh); border: none; border-radius: 4px; font-size: 14px;
  font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer;
  text-decoration: none; transition: opacity .2s; white-space: nowrap;
}
.pb-btn-primary:hover { opacity: .85; }
.pb-btn-ghost-white {
  display: inline-block; padding: 14px 28px;
  background: transparent; color: var(--wh);
  border: 1px solid rgba(255,255,255,.3); border-radius: 4px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s; white-space: nowrap;
}
.pb-btn-ghost-white:hover { border-color: rgba(255,255,255,.7); }
.pb-btn-ghost-green {
  display: inline-block; padding: 13px 24px;
  background: transparent; color: var(--g);
  border: 1px solid var(--g); border-radius: 6px;
  font-size: 14px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.pb-btn-ghost-green:hover { background: var(--sl); }
.pb-eyebrow {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500;
}

/* ════════════════════════════════════════
   SERVICES INDEX
════════════════════════════════════════ */

/* Hero */
.sv-hero {
  background: var(--g); padding: 80px 64px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
}
.sv-hero-left { padding-bottom: 72px; }
.sv-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,5vw,68px); font-weight: 400;
  color: var(--wh); line-height: 1.05; margin-bottom: 20px;
}
.sv-h1 em { font-style: italic; color: var(--sage); }
.sv-hero-sub {
  font-size: 16px; line-height: 1.8; color: var(--sage);
  font-weight: 300; max-width: 440px;
}
.sv-hero-right {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none; border-radius: 12px 12px 0 0; padding: 36px;
}
.sv-search-label {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage); font-weight: 500; margin-bottom: 12px; display: block;
}
.sv-search-row {
  display: flex; background: var(--wh); border-radius: 6px;
  overflow: hidden; border: 1px solid var(--bd); margin-bottom: 16px;
}
.sv-search-input {
  flex: 1; padding: 12px 16px; border: none; outline: none;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--tx);
}
.sv-search-btn {
  padding: 12px 20px; background: var(--g); color: var(--wh);
  border: none; cursor: pointer; font-size: 13px; font-weight: 500;
  font-family: 'Inter', sans-serif; white-space: nowrap; transition: background .15s;
}
.sv-search-btn:hover { background: var(--gm); }
.sv-cat-select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--bd);
  border-radius: 6px; font-size: 13px; font-family: 'Inter', sans-serif;
  color: var(--tx); background: var(--wh); outline: none; appearance: none;
}

/* Category tab nav */
.sv-cat-nav {
  background: var(--gm); padding: 0 64px;
  display: flex; gap: 0; overflow-x: auto;
  border-bottom: 1px solid rgba(255,255,255,.1);
  scrollbar-width: none;
}
.sv-cat-nav::-webkit-scrollbar { display: none; }
.sv-cat-tab {
  padding: 16px 24px; font-size: 12px; font-weight: 500;
  letter-spacing: .06em; color: rgba(200,216,192,.65);
  text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: all .15s;
  font-family: 'Inter', sans-serif;
}
.sv-cat-tab:hover { color: var(--wh); }
.sv-cat-tab.active { color: var(--wh); border-bottom-color: var(--am); }

/* Services body */
.sv-body { padding: 48px 64px; }
.sv-toolbar {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 36px;
}
.sv-count { font-size: 13px; color: var(--mu); font-weight: 300; }
.sv-count strong { color: var(--tx); font-weight: 500; }

/* Category group */
.sv-cat-group { margin-bottom: 56px; }
.sv-cat-group-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--bd);
}
.sv-cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--g);
}
.sv-cat-count { font-size: 12px; color: var(--mu); font-weight: 300; }
.sv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 2px; background: var(--bd);
}

/* Service card */
.sv-card {
  background: var(--wh); display: flex;
  flex-direction: column; transition: background .12s; position: relative;
}
.sv-card:hover { background: var(--cream); }
.sv-card.featured { border-top: 2px solid var(--am); }
.sv-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg2); position: relative;
}
.sv-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .5s ease;
}
.sv-card:hover .sv-card-img img { transform: scale(1.04); }
.sv-feat-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; background: var(--am); color: var(--wh);
  padding: 4px 10px; border-radius: 99px;
}
.sv-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.sv-card-cat {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--am); font-weight: 500; margin-bottom: 10px; display: block;
}
.sv-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--g);
  line-height: 1.2; margin-bottom: 6px;
}
.sv-card-tagline {
  font-size: 12px; font-style: italic; color: var(--mu);
  margin-bottom: 14px; font-weight: 300;
}
.sv-card-desc {
  font-size: 13px; line-height: 1.65; color: #3a3a2e;
  font-weight: 300; flex: 1; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sv-card-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.sv-card-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--mu); font-weight: 300; }
.sv-feat-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--am); flex-shrink: 0; margin-top: 5px; }
.sv-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--bd); padding-top: 20px;
}
.sv-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--g);
}
.sv-card-price-note { font-size: 11px; color: var(--mu); font-weight: 300; font-family: 'Inter', sans-serif; margin-left: 4px; }
.sv-learn-btn {
  font-size: 12px; font-weight: 500; color: var(--am);
  text-decoration: none; letter-spacing: .04em; transition: color .15s;
}
.sv-learn-btn:hover { color: var(--g); }

/* CTA banner */
.sv-cta-banner {
  background: var(--g); padding: 72px 64px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.sv-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,3.5vw,42px); font-weight: 400;
  color: var(--wh); line-height: 1.2;
}
.sv-cta-title em { font-style: italic; color: var(--sage); }
.sv-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ════════════════════════════════════════
   SERVICE DETAIL
════════════════════════════════════════ */

/* Breadcrumb */
.sd-breadcrumb {
  padding: 20px 64px; font-size: 12px; color: var(--mu);
  background: var(--wh); border-bottom: 1px solid var(--bd);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.sd-breadcrumb a { color: var(--mu); text-decoration: none; transition: color .15s; }
.sd-breadcrumb a:hover { color: var(--am); }
.sd-breadcrumb-sep { color: var(--bd); }
.sd-breadcrumb-current { color: var(--tx); font-weight: 500; }

/* Detail hero */
.sd-hero {
  background: var(--g); padding: 72px 64px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
}
.sd-hero-cat {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--am); font-weight: 500; margin-bottom: 18px; display: block;
}
.sd-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,4.5vw,60px); font-weight: 400;
  color: var(--wh); line-height: 1.05; margin-bottom: 12px;
}
.sd-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; font-weight: 400;
  color: var(--sage); margin-bottom: 20px;
}
.sd-hero-desc {
  font-size: 15px; line-height: 1.8; color: var(--sage);
  font-weight: 300; max-width: 480px;
}
.sd-hero-meta { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.sd-meta-label {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(200,216,192,.55); font-weight: 500; margin-bottom: 4px;
}
.sd-meta-value { font-size: 14px; color: var(--wh); font-weight: 400; }

/* Quote card */
.sd-quote-card { background: var(--wh); border-radius: 12px; padding: 36px; }
.sd-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; color: var(--g); line-height: 1; margin-bottom: 4px;
}
.sd-price-note { font-size: 12px; color: var(--mu); font-weight: 300; margin-bottom: 24px; }
.sd-quote-divider { height: 1px; background: var(--bd); margin-bottom: 24px; }
.sd-quote-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.sd-qm-row { display: flex; justify-content: space-between; font-size: 13px; }
.sd-qm-label { color: var(--mu); font-weight: 300; }
.sd-qm-value { color: var(--tx); font-weight: 500; }
.sd-get-quote {
  display: block; width: 100%; padding: 15px; background: var(--g);
  color: var(--wh); border: none; border-radius: 6px; font-size: 14px;
  font-weight: 500; font-family: 'Inter', sans-serif; cursor: pointer;
  text-align: center; text-decoration: none; margin-bottom: 10px; transition: opacity .2s;
}
.sd-get-quote:hover { opacity: .88; }
.sd-partner-btn {
  display: block; width: 100%; padding: 13px; background: transparent;
  color: var(--g); border: 1px solid var(--g); border-radius: 6px;
  font-size: 14px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; text-align: center; text-decoration: none; margin-bottom: 24px; transition: all .2s;
}
.sd-partner-btn:hover { background: var(--sl); }
.sd-support-box { background: var(--sl); border-radius: 8px; padding: 16px; }
.sd-support-label {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gm); font-weight: 500; margin-bottom: 6px; display: block;
}
.sd-support-phone { font-size: 15px; font-weight: 500; color: var(--g); text-decoration: none; }
.sd-share-row { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--mu); }
.sd-copy-link-btn {
  font-size: 12px; color: var(--am); cursor: pointer;
  font-weight: 500; background: none; border: none;
  font-family: 'Inter', sans-serif; padding: 0;
}

/* Cover image */
.sd-cover-img {
  width: 100%; height: 420px; overflow: hidden; background: var(--bg2);
}
.sd-cover-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 900px) {
  .sd-cover-img { height: 240px; }
}

/* Detail body */
.sd-body {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 64px; padding: 64px 64px; align-items: start;
  background: var(--cream);
}
.sd-section { margin-bottom: 56px; }
.sd-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--g);
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--bd);
}
.sd-prose { font-size: 15px; line-height: 1.85; color: #3a3a2e; font-weight: 300; margin-bottom: 20px; }
.sd-sub-title { font-size: 14px; font-weight: 500; color: var(--g); margin-bottom: 8px; margin-top: 24px; }

/* Features grid */
.sd-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sd-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; background: var(--wh);
  border-radius: 6px; border: 1px solid var(--bd);
}
.sd-feat-bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--am); flex-shrink: 0; margin-top: 5px; }
.sd-feat-text { font-size: 13px; color: var(--tx); font-weight: 400; line-height: 1.5; }

/* Benefits */
.sd-benefits { display: flex; flex-direction: column; gap: 12px; }
.sd-benefit { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #3a3a2e; font-weight: 300; }
.sd-benefit-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sl); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}

/* Process steps */
.sd-process { display: flex; flex-direction: column; }
.sd-step { display: grid; grid-template-columns: 48px 1fr; }
.sd-step-left { display: flex; flex-direction: column; align-items: center; }
.sd-step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--g);
  color: var(--wh); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600;
  flex-shrink: 0; z-index: 1;
}
.sd-step-connector {
  width: 1px; background: var(--bd); flex: 1; margin: 4px 0; min-height: 28px;
}
.sd-step:last-child .sd-step-connector { display: none; }
.sd-step-right { padding: 0 0 36px 20px; }
.sd-step-title { font-size: 14px; font-weight: 500; color: var(--g); margin-bottom: 6px; padding-top: 8px; }
.sd-step-desc { font-size: 13px; color: var(--mu); font-weight: 300; line-height: 1.6; }

/* Requirements */
.sd-reqs { display: flex; flex-direction: column; gap: 10px; }
.sd-req { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #3a3a2e; font-weight: 300; line-height: 1.5; }
.sd-req-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--g); flex-shrink: 0; margin-top: 6px; }

/* Aside */
.sd-aside { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 16px; }
.sd-avail-card { background: var(--wh); border-radius: 8px; padding: 24px; border: 1px solid var(--bd); }
.sd-avail-title {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mu); font-weight: 500; margin-bottom: 14px; display: block;
}
.sd-avail-list { display: flex; flex-direction: column; gap: 10px; }
.sd-avail-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--tx); font-weight: 300; }
.sd-avail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gl); flex-shrink: 0; }
.sd-min-card {
  background: var(--al); border-radius: 8px;
  padding: 20px; border: 1px solid #e8c880;
}
.sd-min-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #633806; font-weight: 500; margin-bottom: 8px; display: block; }
.sd-min-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: #412402; }
.sd-min-unit { font-size: 12px; color: #633806; margin-top: 4px; font-weight: 300; }

/* Related services */
.sd-related { background: var(--g); padding: 64px; }
.sd-rel-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--am); font-weight: 500; margin-bottom: 12px; display: block; }
.sd-rel-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; color: var(--wh); margin-bottom: 32px; }
.sd-rel-title em { font-style: italic; color: var(--sage); }
.sd-rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 2px; background: rgba(255,255,255,.08); }
.sd-rel-card { background: var(--g); padding: 32px; display: flex; flex-direction: column; gap: 14px; text-decoration: none; transition: background .12s; }
.sd-rel-card:hover { background: var(--gm); }
.sd-rel-img { aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; background: rgba(255,255,255,.06); }
.sd-rel-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sd-rel-cat { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--am); font-weight: 500; }
.sd-rel-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--wh); line-height: 1.2; }
.sd-rel-desc { font-size: 13px; color: var(--sage); font-weight: 300; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sd-rel-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.sd-rel-price { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--wh); }
.sd-rel-link { font-size: 12px; color: var(--am); font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sd-body { grid-template-columns: 1fr 300px; gap: 48px; }
}
@media (max-width: 900px) {
  .sv-hero { grid-template-columns: 1fr; padding: 48px 24px 0; gap: 36px; }
  .sv-hero-left { padding-bottom: 0; }
  .sv-hero-right { border-radius: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .sv-cat-nav { padding: 0 24px; }
  .sv-body { padding: 36px 24px; }
  .sv-cta-banner { grid-template-columns: 1fr; padding: 48px 24px; }
  .sd-hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 36px; }
  .sd-breadcrumb { padding: 16px 24px; }
  .sd-body { grid-template-columns: 1fr; padding: 48px 24px; gap: 48px; }
  .sd-aside { position: static; }
  .sd-related { padding: 48px 24px; }
  .sd-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sv-cards { grid-template-columns: 1fr; }
  .sd-hero-meta { flex-direction: column; gap: 16px; }
}
