:root{--page-title-display:none;}/* Start custom CSS *//* ============================================================
   Central Coast Solar and Batteries — ABOUT US PAGE Custom CSS
   Paste into Elementor: Site Settings > Custom CSS
   (same global box as your other pages — class names are namespaced
   and won't conflict with homepage/services/contact CSS)
   Pairs with ccsb-about-page.html
============================================================ */

.ccsb-page {
  --ccsb-navy: #0b1f3a;
  --ccsb-navy-light: #14335c;
  --ccsb-blue: #1e6fd9;
  --ccsb-orange: #ff8a1e;
  --ccsb-green: #17c964;
  --ccsb-bg-light: #f5f8fc;
  --ccsb-white: #ffffff;
  --ccsb-text: #1c2733;
  --ccsb-text-muted: #5b6b7c;
  --ccsb-border: #e3e9f0;
  --ccsb-radius: 16px;
  --ccsb-shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  --ccsb-shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.14);

  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--ccsb-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.ccsb-page * {
  box-sizing: border-box;
}

.ccsb-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Full-bleed background layer ---------- */
.ccsb-hero,
.ccsb-why-section,
.ccsb-cta-section {
  position: relative;
  background: none;
  isolation: isolate;
}

.ccsb-hero::before,
.ccsb-why-section::before,
.ccsb-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.ccsb-hero::before {
  background: linear-gradient(135deg, var(--ccsb-navy) 0%, var(--ccsb-navy-light) 55%, #0d4a8f 100%);
}

.ccsb-why-section::before {
  background: var(--ccsb-bg-light);
}

.ccsb-cta-section::before {
  background: linear-gradient(135deg, var(--ccsb-navy), #0d4a8f);
}

/* ---------- Base typography ----------
   Bare h1-h4/p rules only ever touch margin-top/margin-bottom, never
   margin-left/right — keeps them from clobbering auto-centering margins
   used on .ccsb-hero .ccsb-hero-title / .ccsb-hero-sub below. */
.ccsb-page h1,
.ccsb-page h2,
.ccsb-page h3,
.ccsb-page h4 {
  color: var(--ccsb-navy);
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 800;
}

.ccsb-page p {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--ccsb-text-muted);
}

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

/* ---------- Buttons ---------- */
.ccsb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.ccsb-btn-white {
  background: var(--ccsb-white);
  color: var(--ccsb-navy);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.ccsb-btn-white:hover {
  transform: translateY(-3px);
  color: var(--ccsb-navy);
}

/* ---------- Hero (about page — compact) ---------- */
.ccsb-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  text-align: center;
}

.ccsb-hero-inner {
  position: relative;
  z-index: 1;
}

.ccsb-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #cfe0ff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ccsb-hero .ccsb-hero-title {
  display: block;
  width: 100%;
  max-width: 800px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  color: var(--ccsb-white);
  font-size: clamp(30px, 4.5vw, 48px);
  text-align: center;
}

.ccsb-gradient-text {
  background: linear-gradient(90deg, #ff8a1e, #ffc26b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ccsb-hero .ccsb-hero-sub {
  display: block;
  width: 100%;
  max-width: 640px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: #c6d3e6;
  font-size: 18px;
  text-align: center;
}

/* ---------- Sections (generic) ---------- */
.ccsb-section {
  padding: 90px 0;
}

.ccsb-section-head {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.ccsb-eyebrow {
  display: inline-block;
  color: var(--ccsb-orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---------- Our Story ---------- */
.ccsb-story-content-full {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Values grid ---------- */
.ccsb-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ccsb-values-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ccsb-value-card {
  background: var(--ccsb-white);
  border: 1px solid var(--ccsb-border);
  border-radius: var(--ccsb-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--ccsb-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ccsb-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ccsb-shadow-lg);
}

.ccsb-value-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.ccsb-value-card h3 {
  font-size: 17px;
}

.ccsb-value-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ---------- Licensing & accreditation ---------- */
.ccsb-accred-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.ccsb-check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ccsb-text-muted);
}

.ccsb-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ccsb-green);
  font-weight: 800;
}

.ccsb-accred-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ccsb-accred-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ccsb-white);
  border: 1px solid var(--ccsb-border);
  border-radius: var(--ccsb-radius);
  padding: 20px 24px;
  box-shadow: var(--ccsb-shadow);
  font-weight: 700;
  color: var(--ccsb-navy);
}

.ccsb-accred-badge-icon {
  font-size: 28px;
}

/* ---------- Final CTA ---------- */
.ccsb-cta-section {
  padding: 80px 0;
  text-align: center;
}

.ccsb-cta-inner h2 {
  color: var(--ccsb-white);
  font-size: clamp(26px, 4vw, 36px);
}

.ccsb-cta-inner p {
  color: #c6d3e6;
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.ccsb-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.ccsb-cta-address {
  color: #a9bcd6;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ccsb-accred-grid {
    grid-template-columns: 1fr;
  }

  .ccsb-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ccsb-section {
    padding: 60px 0;
  }

  .ccsb-hero {
    padding: 70px 0 50px;
  }

  .ccsb-values-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */