/* ==========================================================================
   Ultra-M Assets Global — Services Page Styles
   Extracted from inline styles, organized by section/component.
   ========================================================================== */

:root {
  --navy-dark: #04092e;
  --navy-mid: #041639;
  --accent: #ffa233;
  --accent-soft: rgba(255, 162, 51, 0.1);
  --accent-border: rgba(255, 162, 51, 0.2);
  --cyan: #3cd5e6;
  --text-body: #d2cfff;
  --text-muted: #9d9c9c;
  --danger: #ff5555;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-bg-soft: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --card-border-soft: rgba(255, 255, 255, 0.04);
}

/* ---------- Shared section basics ---------- */
.services-section {
  background: var(--navy-dark);
  padding: 60px 0 40px;
  position: relative;
}

.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.section-eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  color: var(--white) !important;
  font-size: 32px;
  margin-top: 10px;
}

.section-title--sm {
  font-size: 28px;
}

.section-subtitle {
  color: var(--text-body);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle--lg {
  font-size: 17px;
  max-width: 650px;
}

/* ---------- Service block (repeated 4x) ---------- */
.service-block {
  align-items: center;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid var(--card-border);
  position: relative;
  margin-bottom: 50px;
}

.service-block--reverse {
  flex-direction: row-reverse;
}

.service-block--featured {
  border: 2px solid var(--accent-border);
  margin-bottom: 30px;
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--cyan);
  color: var(--navy-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.service-index {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.service-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-kicker-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.service-heading {
  color: var(--white);
  font-size: 28px;
  margin-top: 5px;
}

.service-heading .accent {
  color: var(--accent);
}

.service-desc {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 15px;
  margin-top: 10px;
}

.service-features {
  margin-top: 15px;
}

.service-features li {
  width: 100%;
  padding: 10px 15px;
  background: var(--card-bg-soft);
  border-radius: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid var(--accent);
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li i {
  color: var(--accent);
}

.service-features li span {
  color: var(--white);
}

.service-cta {
  margin-top: 20px;
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 50px;
}

/* "Why this matters" side card within a service block */
.why-card {
  background: var(--card-bg-soft);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--card-border-soft);
}

.why-card--featured {
  border: 1px solid var(--accent-border);
}

.why-card-tag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.why-card-tag {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: 20px;
}

.why-card-heading {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border-soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-card li:last-child {
  border-bottom: none;
}

.why-card li i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 2px;
}

.why-card-item-title {
  color: var(--white);
  font-weight: 600;
  display: block;
}

.why-card-item-desc {
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- "Why it matters" 3-up advantage panel ---------- */
.advantage-panel {
  margin-top: 60px;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 50px 30px;
  border: 1px solid var(--card-border);
}

.advantage-panel .section-header {
  margin-bottom: 30px;
}

.advantage-card {
  text-align: center;
  padding: 25px 20px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border-soft);
  margin-bottom: 20px;
  height: calc(100% - 20px);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
}

.advantage-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
}

.advantage-desc {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- CTA banner ---------- */
.cta-panel {
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(255, 162, 51, 0.05), rgba(255, 162, 51, 0.02));
  border-radius: 20px;
  padding: 50px 30px;
  border: 1px solid var(--accent-border);
  text-align: center;
}

.cta-title {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-desc {
  color: var(--text-body);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 25px;
}

.cta-btn {
  padding: 16px 50px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
}

/* ---------- Problem / Solution section ---------- */
.problem-solution-section {
  background: var(--navy-dark) !important;
  padding: 60px 0;
}

.ps-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--card-border);
  height: 100%;
  margin-bottom: 30px;
}

.ps-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.ps-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ps-icon--problem {
  background: rgba(255, 50, 50, 0.12);
  color: var(--danger);
}

.ps-icon--solution {
  background: var(--accent-soft);
  color: var(--accent);
}

.ps-label {
  font-size: 11px;
  font-weight: 700;
}

.ps-label--problem {
  color: var(--danger);
}

.ps-label--solution {
  color: var(--accent);
}

.ps-text {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.ps-text strong {
  color: var(--white);
  font-weight: 600;
}

.ps-divider {
  height: 1px;
  background: linear-gradient(to right, var(--accent-border), transparent);
  margin: 15px 0;
}

/* ---------- Split section (platform overview) ---------- */
.split-section {
  position: relative;
  padding: 60px 0 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.split-bg {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}

.split-bg--left {
  left: 0;
  background: var(--white);
}

.split-bg--right {
  right: 0;
  background: var(--navy-dark);
}

.split-content {
  position: relative;
  z-index: 1;
}

.split-col {
  padding: 40px 35px;
}

.split-col-inner {
  max-width: 500px;
  margin: 0 auto;
}

.split-col--light {
  background: var(--white);
  border-radius: 20px 0 0 20px;
}

.split-col--dark {
  background: var(--navy-dark);
  border-radius: 0 20px 20px 0;
}

.split-eyebrow {
  color: var(--navy-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: 20px;
}

.split-heading {
  color: var(--navy-mid);
  font-size: 28px;
  font-weight: 700;
  margin-top: 15px;
  line-height: 1.3;
}

.split-heading .accent {
  color: var(--accent);
}

.split-desc {
  color: #555555;
  line-height: 1.8;
  font-size: 15px;
  margin-top: 15px;
}

.tag-pill-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  background: var(--accent-soft);
  color: var(--navy-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--accent-border);
}

.check-row {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-item i {
  color: var(--accent);
  font-size: 16px;
}

.check-item span {
  color: #555555;
  font-size: 13px;
}

/* Asset tag pills (dark column) */
.asset-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.asset-tag {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--card-border-soft);
}

.asset-tag--active {
  background: rgba(255, 162, 51, 0.15);
  color: var(--accent);
  border-color: var(--accent-border);
}

.asset-tag--inactive {
  background: var(--card-bg-soft);
  color: var(--text-body);
}

.asset-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--card-border-soft);
  margin-bottom: 15px;
}

.asset-card:last-child {
  margin-bottom: 0;
}

.asset-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.asset-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.asset-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.asset-desc {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .service-block--reverse {
    flex-direction: column;
  }

  .split-bg {
    display: none;
  }

  .split-col--light,
  .split-col--dark {
    border-radius: 20px;
  }

  .split-col--dark {
    margin-top: 20px;
  }
}

.contact-section {
  background: var(--navy-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
 
/* subtle ambient glow behind the panel, purely decorative */
.contact-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
 
.contact-panel {
  background: var(--navy-panel);
  border: 1px solid var(--card-border-soft);
  border-radius: 24px;
  padding: 50px;
  position: relative;
  z-index: 1;
}
 
/* ---------- Left: brand / pitch column ---------- */
.contact-brand {
  display: flex;
  flex-direction: column;
  height: 100%;
}
 
.contact-logo {
  margin-bottom: 40px;
}
 
.contact-logo img {
  height: 48px;
  width: auto;
}
 
.contact-eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
 
.contact-heading {
  color: var(--white);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}
 
.contact-heading .accent {
  color: var(--accent);
}
 
.contact-details {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.5;
}
 
.contact-details i {
  color: var(--accent);
  font-size: 15px;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
 
.contact-details a {
  color: var(--text-body);
  text-decoration: none;
}
 
.contact-details a:hover {
  color: var(--accent);
}
 
.contact-image {
  margin-top: auto;
  padding-top: 30px;
  text-align: center;
}
 
.contact-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
}
 
.contact-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
 
.contact-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  font-size: 13px;
}
 
.contact-perk i {
  color: var(--accent);
  font-size: 15px;
}
 
/* ---------- Right: form card ---------- */
.support-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  height: 100%;
}
 
.support-card-head {
  text-align: center;
  margin-bottom: 24px;
}
 
.support-card-title {
  font-weight: 700;
  margin-bottom: 6px;
}
 
.support-card-subtitle {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}
 
.support-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  text-align: center;
}
 
.support-errors {
  background: rgba(255, 85, 85, 0.08);
  border: 1px solid rgba(255, 85, 85, 0.3);
  color: var(--danger);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  list-style: none;
}
 
.support-errors li {
  font-size: 13px;
}
 
.support-errors li + li {
  margin-top: 4px;
}
 
.form-field {
  margin-bottom: 18px;
}
 
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  margin-bottom: 6px;
}
 
.form-field .form-control {
  border: 1px solid #e2e2ea;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}
 
.form-field .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
 
.form-field textarea.form-control {
  height: 160px;
  resize: vertical;
}
 
.support-submit {
  width: 100%;
  padding: 13px;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 8px;
}
 
/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .contact-panel {
    padding: 32px 24px;
  }
 
  .contact-heading {
    font-size: 26px;
  }
 
  .contact-image {
    display: none;
  }
 
  .support-card {
    margin-top: 32px;
    padding: 28px 22px;
  }
}