/* ================================================================
   SERVICE CONTENT — About Orange Interiors & Areas We Serve
   Sections rendered by inc-service-about.php & inc-service-areas.php
   ================================================================ */

/* ── Shared base ── */
.oi-sc-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════
   SECTION 1 — About Orange Interiors  [DARK MODE]
   ════════════════════════════════════════════════════════════ */
.oi-sc-about {
  background: #0c1220;
}

/* Warm orange radial glow at top */
.oi-sc-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(244,121,32,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.oi-sc-about-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Eyebrow label */
.oi-sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f47920;
  margin-bottom: 18px;
}
.oi-sc-eyebrow::before,
.oi-sc-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #f47920;
  flex-shrink: 0;
}

/* Section title */
.oi-sc-about-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: #f1f5f9 !important;
  line-height: 1.3;
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}

/* Decorative divider */
.oi-sc-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.oi-sc-divider-line {
  width: 48px;
  height: 3px;
  background: #f47920;
  border-radius: 3px;
}
.oi-sc-divider-dot {
  width: 8px;
  height: 8px;
  background: #f47920;
  border-radius: 50%;
}
.oi-sc-divider-line-short {
  width: 20px;
  height: 3px;
  background: rgba(244,121,32,0.45);
  border-radius: 3px;
}

/* Description body */
.oi-sc-about-desc {
  font-size: 16px;
  line-height: 1.85;
  color: #94a3b8;
}
.oi-sc-about-desc p           { margin-bottom: 16px; color: #e7e0d7 !important; }
.oi-sc-about-desc ul          { padding-left: 20px; margin-bottom: 16px; }
.oi-sc-about-desc li          { margin-bottom: 8px; }
.oi-sc-about-desc strong      { color: #e2e8f0; }
.oi-sc-about-desc a           { color: #f47920; text-decoration: none; }
.oi-sc-about-desc a:hover     { text-decoration: underline; }

/* ── Read More / Collapse ── */
.oi-sc-read-wrap {
  position: relative;
}
.oi-sc-desc-inner {
  transition: max-height 0.45s ease;
}
.oi-sc-desc-inner.oi-collapsed {
  max-height: 210px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 40%, transparent 100%);
}
.oi-sc-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: none;
  color: #f47920;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0 0;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.oi-sc-readmore-btn:hover { opacity: 0.8; }
.oi-sc-readmore-btn i     { transition: transform 0.35s ease; }
.oi-sc-readmore-btn.oi-expanded i { transform: rotate(180deg); }

/* ── Right Accent Panel ── */
.oi-sc-about-panel {
  background: linear-gradient(160deg, #1a2f50 0%, #111d35 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(244,121,32,0.18);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  position: sticky;
  top: 110px;
}

.oi-sc-panel-head {
  background: linear-gradient(90deg, #f47920 0%, #ff9d50 100%);
  padding: 22px 26px;
}
.oi-sc-panel-head h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 5px;
  letter-spacing: 0.3px;
}
.oi-sc-panel-head p {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin: 0;
}

.oi-sc-panel-body {
  padding: 22px 26px 26px;
}

.oi-sc-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.oi-sc-feature:last-of-type {
  border-bottom: none;
}

.oi-sc-feature-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(244,121,32,0.14);
  border: 1px solid rgba(244,121,32,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f47920;
  font-size: 17px;
  transition: background 0.2s, border-color 0.2s;
}
.oi-sc-feature:hover .oi-sc-feature-ico {
  background: rgba(244,121,32,0.26);
  border-color: rgba(244,121,32,0.4);
}

.oi-sc-feature-txt strong {
  display: block;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.oi-sc-feature-txt span {
  color: rgba(148,163,184,0.65);
  font-size: 12px;
}

.oi-sc-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f47920;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 10px;
  margin-top: 22px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 24px rgba(244,121,32,0.35);
}
.oi-sc-panel-cta:hover {
  background: #d96a0e;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(244,121,32,0.45);
}

/* ════════════════════════════════════════════════════════════
   SECTION 2 — Areas We Serve
   ════════════════════════════════════════════════════════════ */
.oi-sc-areas {
  background: #f5f6fa;
  position: relative;
}

.oi-sc-areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f47920 0%, #ffb347 50%, #f47920 100%);
}

/* Pin banner strip at top */
.oi-sc-areas-banner {
  display: none;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #f47920 0%, #e8650a 100%);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 50px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(244,121,32,0.3);
  position: relative;
  overflow: hidden;
}

.oi-sc-areas-banner::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.oi-sc-areas-banner-ico {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.oi-sc-areas-banner-txt {
  position: relative;
  z-index: 1;
}
.oi-sc-areas-banner-txt h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 5px;
  color: #fff;
  letter-spacing: -0.2px;
}
.oi-sc-areas-banner-txt p {
  font-size: 14px;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

/* Section header (centered) */
.oi-sc-areas-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.oi-sc-areas-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0 0 0;
  letter-spacing: -0.3px;
}

/* Description area */
.oi-sc-areas-body {
  max-width: 900px;
  margin: 0 auto;
}

.oi-sc-areas-body p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4a5a;
  margin-bottom: 16px;
  text-align: center;
}

/* Area chips — rendered when admin uses <ul><li> in description */
.oi-sc-areas-body ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.oi-sc-areas-body li {
  background: #ffffff;
  border: 1.5px solid #e2e4ed;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.oi-sc-areas-body li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #f47920;
  border-radius: 50%;
  flex-shrink: 0;
}

.oi-sc-areas-body li:hover {
  border-color: #f47920;
  background: #fff9f5;
  color: #f47920;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244,121,32,0.18);
}

/* CTA strip at bottom of areas section */
.oi-sc-areas-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e2e4ed;
  flex-wrap: wrap;
}

.oi-sc-areas-cta-strip .oi-sc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f47920;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(244,121,32,0.3);
}
.oi-sc-areas-cta-strip .oi-sc-cta-btn:hover {
  background: #d96a0e;
  transform: translateY(-2px);
}

.oi-sc-areas-cta-strip .oi-sc-cta-note {
  font-size: 14px;
  color: #888;
}
.oi-sc-areas-cta-strip .oi-sc-cta-note i {
  color: #f47920;
  margin-right: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .oi-sc-about-inner {
    grid-template-columns: 1fr 320px;
    gap: 44px;
  }
  .oi-sc-about::before {
    background-image: radial-gradient(ellipse 100% 40% at 50% -5%, rgba(244,121,32,0.07) 0%, transparent 60%);
  }
}

@media (max-width: 767px) {
  .oi-sc-section {
    padding: 56px 0;
  }

  .oi-sc-about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .oi-sc-about-panel {
    position: static;
  }

  .oi-sc-areas-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 14px;
  }

  .oi-sc-areas-body ul {
    gap: 8px;
  }

  .oi-sc-areas-body li {
    padding: 8px 16px;
    font-size: 13px;
  }

  .oi-sc-areas-cta-strip {
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .oi-sc-about-title,
  .oi-sc-areas-title {
    font-size: 22px;
  }
}
