/* ============================================================
   Care Container Lines — site stylesheet
   ============================================================ */

:root {
  --ccl-orange: #e64a15;
  --ccl-orange-dark: #c73d10;
  --ccl-yellow: #ffd400;
  --ccl-yellow-bright: #fff000;
  --ccl-ink: #2b2b2b;
  --ccl-grey-bg: #f4f4f4;
  --ccl-grey-line: #e2e2e2;
  --ccl-text: #4a4a4a;
  --container-w: 1180px;
  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ccl-text);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ccl-ink);
  margin: 0;
}

/* ---------------- Top bar ---------------- */
.topbar {
  background: var(--ccl-ink);
  color: #d8d8d8;
  font-size: 13px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #d8d8d8; }
.topbar .topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .topbar-contact span { white-space: nowrap; }
.topbar .topbar-social a {
  display: inline-flex;
  margin-left: 10px;
  color: #d8d8d8;
}

/* ---------------- Header ---------------- */
header.site-header {
  background: linear-gradient(180deg, var(--ccl-orange) 0%, var(--ccl-orange) 100%);
  position: relative;
  z-index: 50;
}

.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img.logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ccl-yellow-bright);
  object-fit: cover;
}

.brand-text .brand-name {
  font-family: var(--font-head);
  color: var(--ccl-yellow-bright);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .3px;
  line-height: 1.25;
}
.brand-text .brand-tag {
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
}

nav.main-nav {
  flex-shrink: 0;
}
nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2px;
  padding: 12px 14px;
  border-radius: 3px;
  transition: background .15s ease;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li.active > a {
  background: rgba(0,0,0,.18);
}

nav.main-nav .has-sub > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 7px;
  vertical-align: 2px;
}

nav.main-nav ul.submenu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: rgba(20, 26, 38, 0.94);
  backdrop-filter: blur(2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  padding: 8px 0;
  z-index: 60;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li { border-bottom: 1px solid rgba(255,255,255,.08); }
.submenu li:last-child { border-bottom: none; }
.submenu li a {
  display: block;
  padding: 15px 26px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: .2px;
  border-left: 3px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.submenu li a:hover {
  background: rgba(255,255,255,.06);
  border-left-color: var(--ccl-yellow-bright);
  color: var(--ccl-yellow-bright);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,.15);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #fff;
}
.nav-toggle::before { top: 11px; }
.nav-toggle span { top: 17px; }
.nav-toggle::after { top: 23px; }

/* ---------------- Hero / carousel ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e7e7e5, #d6d6d3);
}
.hero-track {
  display: flex;
  transition: transform .6s ease;
}
.hero-slide {
  min-width: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: clamp(220px, 42vw, 560px);
  object-fit: cover;
  object-position: center 30%;
}
.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 22px 5%;
  background: linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.hero-caption span {
  font-family: var(--font-head);
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: .5px;
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.hero-nav:hover { background: var(--ccl-orange); }
.hero-nav.prev { left: 18px; }
.hero-nav.next { right: 18px; }
.hero-dots {
  position: absolute;
  bottom: 14px;
  right: 24px;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active { background: var(--ccl-yellow-bright); }

/* ---------------- Sections generic ---------------- */
section { padding: 64px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head .kicker {
  color: var(--ccl-orange);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 6px;
}
.section-head .rule {
  width: 54px;
  height: 3px;
  background: var(--ccl-orange);
  margin: 14px auto 0;
}

/* ---------------- Welcome ---------------- */
.welcome {
  background: #fff;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.welcome-copy .eyebrow {
  color: var(--ccl-orange);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .3px;
  font-size: 15px;
}
.welcome-copy h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 6px 0 20px;
  line-height: 1.2;
}
.welcome-copy p { margin: 0 0 16px; color: var(--ccl-text); }
.welcome-copy p:last-child { margin-bottom: 0; }

.welcome-figure {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}
.welcome-figure img { width: 100%; height: 100%; object-fit: cover; }
.welcome-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid var(--ccl-yellow-bright);
  border-radius: 6px;
  pointer-events: none;
}

/* ---------------- Services ---------------- */
.services { background: var(--ccl-grey-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--ccl-grey-line);
  border-radius: 6px;
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,.10);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ccl-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  margin: 0 0 14px;
}
.service-card .more {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--ccl-orange);
  letter-spacing: .3px;
}

/* ---------------- Branch locator ---------------- */
.branch { background: #fff; }
.branch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.branch-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
}
.branch-lists li {
  padding: 11px 0;
  border-bottom: 1px dashed var(--ccl-grey-line);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ccl-ink);
}
.branch-lists li .pin {
  width: 9px;
  height: 9px;
  border-radius: 50% 50% 50% 0;
  background: var(--ccl-orange);
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.branch-lists li:hover { color: var(--ccl-orange); }

.branch-map {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 14px;
  border: 1px solid var(--ccl-grey-line);
}
.branch-map svg { width: 100%; height: auto; display: block; }
.branch-map .dot { fill: var(--ccl-orange); }
.branch-map .dot-head { fill: var(--ccl-ink); }

/* ---------------- Why us / stats ---------------- */
.stats {
  background: var(--ccl-ink);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--ccl-yellow-bright);
}
.stat span { font-size: 14px; color: #cfcfcf; letter-spacing: .2px; }

/* ---------------- Testimonials ---------------- */
.testimonials { background: var(--ccl-grey-bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 26px;
  border: 1px solid var(--ccl-grey-line);
  position: relative;
}
.testi-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 46px;
  color: var(--ccl-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.testi-card p { font-size: 14.5px; margin: 0 0 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ccl-orange);
  color: #fff;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.testi-person b { display: block; font-size: 14.5px; }
.testi-person span { font-size: 12.5px; color: #888; }

/* ---------------- CTA strip ---------------- */
.cta-strip {
  background: var(--ccl-orange);
  color: #fff;
}
.cta-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.cta-strip h3 { color: #fff; font-size: 22px; }
.cta-strip p { margin: 6px 0 0; color: #ffe9df; }
.btn {
  display: inline-block;
  background: var(--ccl-yellow-bright);
  color: var(--ccl-ink);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 3px;
  letter-spacing: .3px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.2); }

/* ---------------- Footer ---------------- */
footer.site-footer {
  background: #1c1c1c;
  color: #b7b7b7;
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--ccl-orange);
}
.footer-col .brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-col .brand-mini img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.footer-col .brand-mini b { color: #fff; font-family: var(--font-head); font-size: 15px; }
.footer-col p { font-size: 14px; line-height: 1.7; margin: 0 0 8px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--ccl-yellow-bright); }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--ccl-yellow-bright); }

/* ---------------- Back to top ---------------- */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ccl-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .2s ease;
  z-index: 80;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================
   Branch Locator page (branch-locator.php)
   ============================================================ */
.page-banner {
  background: var(--ccl-grey-bg);
  padding: 34px 0;
  border-bottom: 1px solid var(--ccl-grey-line);
}
.page-banner h1 {
  color: var(--ccl-orange);
  font-size: clamp(28px, 4vw, 40px);
}
.page-banner .crumb {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}
.page-banner .crumb a { color: var(--ccl-orange); }

.branch-page { padding: 44px 0 70px; }
.branch-locator-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  align-items: start;
}

.branch-accordion {
  border: 1px solid var(--ccl-grey-line);
  border-radius: 4px;
  overflow: hidden;
}
.branch-item + .branch-item { border-top: 1px solid var(--ccl-grey-line); }

.branch-toggle {
  width: 100%;
  text-align: left;
  background: #f6f6f6;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ccl-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background .15s ease, color .15s ease;
}
.branch-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.branch-toggle:hover { background: #efefef; }

.branch-item.active .branch-toggle {
  background: var(--ccl-orange);
  color: #fff;
}
.branch-item.active .branch-toggle::after {
  border-color: #fff;
  transform: rotate(225deg);
}

.branch-panel {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height .3s ease;
}
.branch-item.active .branch-panel {
  max-height: 900px;
}
.branch-panel-inner { padding: 20px 22px 24px; }
.branch-panel-inner .co-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ccl-ink);
  margin-bottom: 6px;
}
.branch-panel-inner .addr-line {
  font-size: 14.5px;
  color: var(--ccl-text);
  line-height: 1.65;
  margin-bottom: 14px;
}
.branch-panel-inner .info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ccl-ink);
  margin-bottom: 8px;
}
.branch-panel-inner .info-row .ic {
  color: var(--ccl-orange);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  margin-top: 2px;
}
.branch-panel-inner .info-row a { color: var(--ccl-ink); }
.branch-panel-inner .info-row a:hover { color: var(--ccl-orange); }
.branch-panel-inner .sub-office {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px dashed var(--ccl-grey-line);
}
.branch-panel-inner .sub-office:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.branch-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--ccl-grey-line);
  position: sticky;
  top: 18px;
}
.branch-map-wrap iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}
.branch-map-label {
  background: var(--ccl-ink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14.5px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.branch-map-label span.office-name { color: var(--ccl-yellow-bright); }

@media (max-width: 960px) {
  .branch-locator-grid { grid-template-columns: 1fr; }
  .branch-map-wrap { position: static; }
  .branch-map-wrap iframe { height: 420px; }
}

/* ============================================================
   Image banner (used on Contact and other inner pages)
   ============================================================ */
.banner-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: 70px 0 42px;
  color: #fff;
}
.banner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .58);
}
.banner-hero .wrap { position: relative; z-index: 2; }
.banner-hero h1 {
  color: #fff;
  font-size: clamp(30px, 4.5vw, 46px);
}
.banner-hero .crumb {
  color: #e4e4e4;
  margin-top: 12px;
  font-size: 14.5px;
}
.banner-hero .crumb a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.banner-hero .crumb .sep { margin: 0 8px; color: #bbb; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-page { padding: 60px 0 70px; }

.contact-alert {
  border-radius: 5px;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 14.5px;
  font-weight: 500;
}
.contact-alert.success { background: #e7f6ec; color: #1e7a3e; border: 1px solid #b9e6c6; }
.contact-alert.error { background: #fdeceb; color: #b3261e; border: 1px solid #f6c2bd; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.contact-info-card {
  background: var(--ccl-grey-bg);
  border-radius: 6px;
  padding: 32px 30px;
  border: 1px solid var(--ccl-grey-line);
}
.contact-info-card h2 { font-size: 22px; margin-bottom: 18px; }
.contact-info-card .info-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--ccl-text);
  line-height: 1.6;
}
.contact-info-card .info-line .ic {
  color: var(--ccl-orange);
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  text-align: center;
}
.contact-info-card .info-line a { color: var(--ccl-ink); }
.contact-info-card .info-line a:hover { color: var(--ccl-orange); }
.contact-info-card .map-embed {
  margin-top: 22px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--ccl-grey-line);
}
.contact-info-card .map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--ccl-grey-line);
  border-radius: 6px;
  padding: 32px 34px;
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
}
.contact-form-card h2 { font-size: 22px; margin-bottom: 6px; }
.contact-form-card .sub { font-size: 14.5px; color: #888; margin-bottom: 24px; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ccl-ink);
  margin-bottom: 7px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ccl-ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ccl-orange);
  box-shadow: 0 0 0 3px rgba(230, 74, 21, .12);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-submit {
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
}

/* ---- Contact persons ---- */
.persons { background: var(--ccl-grey-bg); padding: 60px 0 70px; }
.persons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.person-card {
  background: #fff;
  border: 1px solid var(--ccl-grey-line);
  border-radius: 6px;
  padding: 24px 22px;
  transition: box-shadow .18s ease, transform .18s ease;
}
.person-card:hover { box-shadow: 0 14px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.person-card .p-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ccl-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}
.person-card .p-name { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--ccl-ink); }
.person-card .p-role { font-size: 13px; color: var(--ccl-orange); margin: 3px 0 12px; }
.person-card .p-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ccl-text);
  margin-bottom: 6px;
}
.person-card .p-line .ic { color: var(--ccl-orange); width: 16px; flex-shrink: 0; }
.person-card .p-line a { color: var(--ccl-text); }
.person-card .p-line a:hover { color: var(--ccl-orange); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .persons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .form-cols { grid-template-columns: 1fr; }
  .persons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1000px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-figure { order: -1; }
  .branch-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--ccl-orange-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  nav.main-nav.open { max-height: 640px; }
  nav.main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0; }
  nav.main-nav > ul > li > a { padding: 13px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  nav.main-nav ul.submenu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(0,0,0,.15);
  }
  .has-sub.open .submenu { display: block; }
  .has-sub > a::after { float: right; margin-top: 6px; }
  .topbar .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .services-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .branch-lists { grid-template-columns: 1fr; }
  .cta-strip .wrap { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Service detail pages (logistic.php, consolidation.php, custom.php,
   inland.php, bunkering.php, port.php, stevedoring.php)
   ============================================================ */
.service-page { padding: 64px 0 76px; }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}
.service-article h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 18px;
}
.service-article p { margin: 0 0 18px; color: var(--ccl-text); font-size: 15.5px; }
.service-article p:last-child { margin-bottom: 0; }

.service-list {
  margin: 22px 0 26px;
  display: grid;
  gap: 0;
}
.service-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed var(--ccl-grey-line);
  font-size: 15px;
  color: var(--ccl-ink);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50% 50% 50% 0;
  background: var(--ccl-orange);
  transform: rotate(-45deg);
}

.service-subhead {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ccl-ink);
  font-size: 17px;
  margin: 26px 0 6px;
}

.service-sidebar {
  background: var(--ccl-grey-bg);
  border: 1px solid var(--ccl-grey-line);
  border-radius: 6px;
  padding: 26px 24px;
  position: sticky;
  top: 18px;
}
.service-sidebar h4 {
  font-size: 16px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.service-sidebar h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  background: var(--ccl-orange);
}
.service-sidebar ul { margin: 0 0 8px; }
.service-sidebar li {
  border-bottom: 1px dashed var(--ccl-grey-line);
}
.service-sidebar li:last-child { border-bottom: none; }
.service-sidebar li a {
  display: block;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ccl-text);
}
.service-sidebar li a:hover { color: var(--ccl-orange); }
.service-sidebar li.current a { color: var(--ccl-orange); font-weight: 600; }
.service-sidebar .cta-mini {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ccl-grey-line);
  font-size: 13.5px;
  color: #888;
}
.service-sidebar .cta-mini a.btn {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 11px 16px;
  font-size: 13.5px;
}

/* Stevedoring rate table */
.rate-table-wrap { overflow-x: auto; margin-top: 8px; }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 560px;
}
.rate-table caption {
  text-align: left;
  font-family: var(--font-head);
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.rate-table th, .rate-table td {
  border: 1px solid var(--ccl-grey-line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.rate-table thead th {
  background: var(--ccl-ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13px;
}
.rate-table tbody tr:nth-child(odd) { background: #fafafa; }
.rate-table td.tier-list { line-height: 1.9; }
.rate-table .cargo-type { font-family: var(--font-head); font-weight: 500; color: var(--ccl-ink); }

@media (max-width: 960px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
