:root {
  --bg-page: #f3f4f8;
  --card-bg: #ffffff;
  --radius-card: 26px;
  --shadow-soft: 0 14px 36px rgba(15,23,42,0.08);
  --ink: #020617;
  --muted: #6b7280;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-page);
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #1d4ed8;
}

/* MAIN WRAP */
.page-main {
  padding: 18px 0 40px;
  background: var(--bg-page);
}

.page-shell,
.nb-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
}

/* GENERIC SECTIONS + CARDS */
.dcc-sec {
  margin-bottom: 18px;
}

.dcc-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 20px;
}

@media (max-width: 640px) {
  .dcc-card {
    border-radius: 22px;
    padding: 18px 18px 16px;
  }
}

/* HEADER PADDING ALIGNMENT */
.dcc-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}

.dcc-header .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* Logo spacing */
.dcc-brand {
  padding-left: 6px;
  padding-top: 6px;
}

/* CTA buttons spacing */
.dcc-cta-group {
  gap: 12px;
  padding-right: 6px;
}

/* MINI TOPBAR full-width style (career-style) */
.dcc-topbar-mini {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;

  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;

  display: flex;
  justify-content: center;
  gap: 14px;

  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;

  box-sizing: border-box;
}

@media (max-width: 600px) {
  .dcc-topbar-mini {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* HERO IMAGE TOP */
.dcc-hero-image-top img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 24px;
}

/* BREADCRUMB */
.breadcrumb-lite {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #6b7280;
}

/* TYPOGRAPHY / HERO */
.dcc-title {
  font-size: 1.75rem;
  line-height: 1.28;
  margin-bottom: 10px;
  color: #020617;
}

.dcc-sub {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.dcc-h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #020617;
}

.dcc-card h3 {
  font-size: 1.02rem;
  margin: 12px 0 6px;
  color: #111827;
}

.dcc-card p {
  margin-bottom: 8px;
}

.dcc-card ul {
  margin: 4px 0 10px 20px;
}

/* HERO WRAP */
.dcc-hero {
  text-align: center;
}

.dcc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #eff6ff;
  color: #1d4ed8;
  margin-bottom: 10px;
}

/* PILLS ROW */
.dcc-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dcc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 20px;
  background: #f3f5f8;
  border: 1px solid #e3e6ea;
  white-space: nowrap;
}

/* TOP CTA ROW */
.dcc-cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Vendor / simple button */
.dcc-btn {
  background: #ffffff;
  color: #0a1735;
  border: 1px solid #0a1735;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
}
.dcc-btn:hover {
  background: #f2f2f2;
}

/* Small YouTube pill — STYLE A (from career.css) */
.dcc-yt {
  background: #ffffff;
  color: #0a1735;
  border: 1px solid #0a1735;
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}
.dcc-yt i {
  font-size: 1.1rem;
  color: #ff0000;
}
.dcc-yt:hover {
  background: #f2f2f2;
}

/* CITY CHIPS (used on many pages) */
.dcc-cities {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dcc-city {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 0.8rem;
}

/* READ MORE BAND – shared pattern */
.dcc-band {
  max-width: 1180px;
  margin: 4px auto 40px;
  padding: 0 10px;
}
.dcc-trigger {
  width: 100%;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.dcc-panel {
  display: none;
  margin-top: 10px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}
.dcc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dcc-tag {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  white-space: nowrap;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .page-main {
    padding-top: 14px;
  }
  .dcc-title {
    font-size: 1.45rem;
  }
}

/* FORM + CONTACT GRID */
.dcc-lead {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 14px;
}

.dcc-note-small {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 8px;
}

.dcc-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 860px) {
  .dcc-contact-grid {
    grid-template-columns: 1fr;
  }
}

.dcc-contact-thank {
  text-align: left;
}

.dcc-contact-points {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 10px;
}
.dcc-contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #111827;
}
.dcc-contact-points i {
  color: #16a34a;
  margin-top: 3px;
}

/* Right form card */
.dcc-form-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 0 0 1px rgba(148,163,184,0.35);
}

/* 2-column grid inside form */
.dcc-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 14px;
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  .dcc-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* Form elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111827;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.25);
}

/* Primary submit button */
.btn.btn--primary {
  margin-top: 10px;
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn.btn--primary i {
  font-size: 0.95rem;
}
.btn.btn--primary:hover {
  background: #111827;
}

/* MAP GRID */
.dcc-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 860px) {
  .dcc-map-grid {
    grid-template-columns: 1fr;
  }
}

.dcc-map {
  width: 100%;
}

.dcc-address-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 0 0 1px rgba(148,163,184,0.35);
  font-size: 0.94rem;
}

.dcc-address-card p {
  margin-bottom: 6px;
}

.dcc-divider {
  border: none;
  border-top: 1px solid #dde6f7;
  margin: 10px 0;
}

/* Direction Button under map */
.dcc-direction-wrap {
  margin-top: 16px;
  text-align: center;
}
.dcc-direction-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #1d4ed8;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.dcc-direction-btn:hover {
  background: #1e40af;
}

/* FINAL CTA GRID (bottom section) */
.dcc-final-cta {
  text-align: center;
}

.dcc-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

/* Each CTA box */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;

  background: #ffffff;
  border: 1px solid #d0d6e0;
  color: #0f172a;
  transition: 0.25s ease;
}

.cta-box i {
  font-size: 1rem;
}

.cta-box:hover {
  background: #f3f4f7;
  transform: translateY(-2px);
}

/* Specific colors */
.cta-call i {
  color: #0f172a;
}

/* WhatsApp GREEN — this makes bottom button green */
.cta-wa {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}
.cta-wa i {
  color: #ffffff;
}

/* YouTube */
.cta-yt i {
  color: #ff0000;
}

/* Submit Form */
.cta-submit {
  background: #0a1735;
  border-color: #0a1735;
  color: #ffffff;
}
.cta-submit i {
  color: #ffffff;
}

/* Mobile full width */
@media (max-width: 600px) {
  .dcc-cta-grid {
    grid-template-columns: 1fr;
  }
}