/**
 * Cashing Orlando — layout system (front-end only)
 */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Unbounded:wght@600;700;900&display=swap");

:root {
  /* Mint CTA + slate (no teal/orange primary) */
  --cta-mint: #c1f2eb;
  --cta-mint-hover: #9fdbd1;
  --cta-mint-press: #7dccc0;
  --ink: #0f172a;
  --white: #ffffff;
  --off: #f1f5f9;
  --surface-elevated: #f8fafc;
  --slate-hover: #334155;
  --label: #475569;
  --mid: #64748b;
  --line: #e2e8f0;
  --line-soft: #cbd5e1;
  --focus-ring: rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --nav-h: 112px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  /* Legacy aliases — map old tokens to slate/mint */
  --brand: #334155;
  --brand-hover: #1e293b;
  --brand-soft: #e2e8f0;
  --brand-muted: rgba(15, 23, 42, 0.06);
  --accent: var(--label);
}

.orlando-sunshine,
.orlando-sunshine .skin {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
}

.orlando-sunshine h1,
.orlando-sunshine h2,
.orlando-sunshine h3,
.orlando-sunshine h4 {
  font-family: "Unbounded", system-ui, sans-serif;
}

/* ---- Layout shell ---- */
.orlando-sunshine #wrapper {
  padding-top: var(--nav-h);
}

@media (max-width: 767.98px) {
  .orlando-sunshine #wrapper {
    padding-bottom: 72px;
  }
}

/* ---- Buttons (mint primary — reference CTA style) ---- */
.co-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.co-btn--primary {
  background: var(--cta-mint);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.co-btn--primary:hover {
  background: var(--cta-mint-hover);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.co-btn--primary:active {
  background: var(--cta-mint-press);
}

.co-btn--secondary {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.co-btn--secondary:hover {
  background: var(--surface-elevated);
  color: var(--ink);
  border-color: var(--ink);
}

.co-btn--cta-dark {
  background: var(--ink);
  color: var(--white);
  padding: 16px 40px;
}

.co-btn--cta-dark:hover {
  background: var(--slate-hover);
  color: var(--white);
}

/* ---- Header / Nav ---- */
.co-header .co-nav {
  background: var(--white) !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: none !important;
  min-height: var(--nav-h);
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.co-nav__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: visible;
}

.co-nav__logo {
  max-height: 96px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  transform: none !important;
}

/* Override public/css/custom.css .main-logo (fixed 120×90 + scale) so the brand reads clearly */
.co-header .co-nav__brand .main-logo.co-nav__logo {
  width: auto !important;
  height: auto !important;
  max-width: min(420px, 88vw) !important;
  max-height: 96px !important;
  transform: none !important;
  object-fit: contain !important;
}

.co-nav__center .co-nav__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink) !important;
  padding: 0.45rem 0.55rem !important;
}

.co-nav__center .co-nav__link:hover {
  color: var(--slate-hover) !important;
}

/* Desktop: Locations dropdown — Bootstrap adds .show via JS on hover; keep menu unobstructed */
@media (min-width: 992px) {
  .co-header .co-nav .navbar-nav {
    overflow: visible;
  }

  .co-nav__locations .dropdown-menu {
    margin-top: 0 !important;
  }

  .co-nav__locations-menu.dropdown-menu.show {
    max-height: min(70vh, 440px);
    overflow-y: auto;
    min-width: 240px;
    z-index: 1055;
  }
}

.co-nav__right .co-nav__link {
  font-size: 15px;
  color: var(--ink) !important;
  text-decoration: none;
}

.co-nav__right .co-nav__link:hover {
  color: var(--slate-hover) !important;
}

.co-nav__cta {
  padding: 10px 20px !important;
  font-size: 12px !important;
  border-radius: var(--radius-pill) !important;
  background: var(--cta-mint) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: var(--shadow-sm) !important;
}

.co-nav__cta:hover {
  background: var(--cta-mint-hover) !important;
  color: var(--ink) !important;
}

.co-nav__burger {
  border: 1px solid var(--ink);
  background: var(--white);
  width: 44px;
  height: 44px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius);
}

.co-nav__burger-line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
}

/* Mobile: full-width stacked menu under header (collapse panel) */
.orlando-sunshine .co-header .co-nav {
  flex-wrap: wrap;
}

.orlando-sunshine .co-nav-mobile-panel {
  flex-basis: 100%;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  z-index: 1035;
}

.orlando-sunshine .co-nav-mobile-panel__inner {
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0));
}

.orlando-sunshine .co-nav-mobile-panel__bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 2.25rem;
}

.orlando-sunshine .co-nav-mobile-close {
  border: none;
  background: transparent;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--ink);
  padding: 0.2rem 0.6rem;
  margin-right: -0.35rem;
  opacity: 0.8;
  cursor: pointer;
  border-radius: var(--radius);
}

.orlando-sunshine .co-nav-mobile-close:hover {
  opacity: 1;
  background: var(--surface-elevated);
}

.orlando-sunshine .co-nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-height: min(calc(100vh - var(--nav-h, 112px) - 4rem), 720px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.orlando-sunshine .co-nav-mobile-link {
  display: block;
  padding: 0.7rem 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  color: var(--ink) !important;
  text-decoration: none !important;
  line-height: 1.35;
}

.orlando-sunshine .co-nav-mobile-link:hover,
.orlando-sunshine .co-nav-mobile-link:focus {
  color: var(--slate-hover) !important;
}

.orlando-sunshine .co-nav-mobile-link--toggle {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  color: var(--ink);
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
}

.orlando-sunshine .co-nav-mobile-link--toggle::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.orlando-sunshine .co-nav-mobile-link--toggle[aria-expanded="true"]::after {
  transform: translateY(-20%) rotate(-135deg);
}

.orlando-sunshine .co-nav-mobile-locations {
  margin: 0.15rem 0 0.35rem;
}

.orlando-sunshine .co-nav-mobile-locations__list {
  max-height: min(38vh, 300px);
  overflow-y: auto;
  padding-left: 0.85rem !important;
  margin-bottom: 0 !important;
  border-left: 2px solid var(--line);
}

.orlando-sunshine .co-nav-mobile-locations__list .dropdown-item {
  padding: 0.5rem 0.65rem;
  font-size: 0.9375rem;
  color: var(--ink);
  border-radius: 4px;
}

.orlando-sunshine .co-nav-mobile-locations__list .dropdown-item:hover {
  background: var(--surface-elevated);
}

.orlando-sunshine .co-nav-mobile-cta {
  margin-top: 0.85rem;
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .orlando-sunshine .co-nav-mobile-panel__inner {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

.co-nav-drawer-link {
  display: block;
  padding: 0.65rem 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none !important;
  border-bottom: 1px solid var(--line);
}

.co-nav-drawer-link:hover {
  color: var(--slate-hover);
}

/* ---- Hero ---- */
.co-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.75rem 0 2rem;
  overflow: hidden;
  background: var(--surface-elevated);
}

@media (min-width: 992px) {
  .co-hero {
    padding: 1rem 0 2.75rem;
  }
}

.co-hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 15%, rgba(193, 242, 235, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, rgba(226, 232, 240, 0.9) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--surface-elevated) 100%);
  z-index: 0;
}

.co-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2364748b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.85;
  z-index: 0;
}

.co-hero > .container {
  position: relative;
  z-index: 1;
}

.co-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .co-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
  }
}

.co-hero__pill {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.co-hero__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  color: var(--ink);
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.03em;
}

.co-hero__line {
  display: block;
  line-height: 1.18;
  margin-bottom: 0.12em;
  padding-bottom: 0.02em;
}

.co-hero__line:last-child {
  margin-bottom: 0;
}

.co-hero__cash {
  background: var(--cta-mint);
  color: var(--ink);
  padding: 0.08em 0.4em;
  border-radius: 8px;
  display: inline;
  box-decoration-break: clone;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.co-hero__sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--mid);
  margin-top: 20px;
  max-width: 30rem;
}

.co-hero__stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: fit-content;
  max-width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.co-hero__stars img {
  width: 22px;
  height: 22px;
}

.co-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.co-hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .co-hero-card {
    padding: 32px;
  }
}

.co-hero-card__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.co-hero-card .form-select,
.co-hero-card select.form-select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  background-color: var(--surface-elevated);
}

.co-hero-card .form-select:focus {
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 3px var(--focus-ring);
  background: var(--white);
}

/* ---- Section labels ---- */
.co-section-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 0.5rem;
  display: block;
}

.co-section-h2 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 2rem;
}

/* ---- Stats ---- */
.co-stats {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 40px 0;
}

.co-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .co-stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .co-stats__cell {
    border-right: 1px solid #2a2a2a;
  }

  .co-stats__cell:last-child {
    border-right: none;
  }
}

.co-stats__num {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--cta-mint);
  display: block;
}

.co-stats__label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-top: 8px;
  display: block;
}

/* ---- Intro band ---- */
.co-intro-band {
  padding: 48px 0 56px;
  background: var(--white);
}

@media (min-width: 992px) {
  .co-intro-band {
    padding: 64px 0 72px;
  }
}

.co-intro-band__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.co-intro-band__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--label);
}

.co-intro-band__h {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0.65rem 0 1rem;
  max-width: 22ch;
  color: var(--ink);
}

.co-intro-band__text {
  color: var(--mid);
  font-size: 17px;
  line-height: 1.65;
  max-width: 36rem;
}

.co-intro-band__list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.co-intro-band__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.co-check-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--brand);
}

.co-check-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- How it works ---- */
.co-how {
  background: var(--off);
  padding: 80px 0;
}

.co-how-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.co-how-card__num {
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: #f0ede6;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.co-how-card__title,
.co-how-card__text {
  position: relative;
  z-index: 1;
}

.co-how-card__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.75rem;
}

.co-how-card__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--mid);
  margin: 0;
}

/* ---- Services grid ---- */
.co-services {
  background: var(--white);
  padding: 80px 0;
}

.co-service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  height: 100%;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface-elevated) 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.co-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 23, 42, 0.18);
}

.co-service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 12px;
  background: var(--brand-muted);
  color: var(--brand-hover);
}

.co-service-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.co-service-card__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0.5rem;
}

.co-service-card__body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--mid);
  margin: 0;
}

/* ---- Condition pills ---- */
.co-pills-section {
  background: var(--off);
  padding: 64px 0;
  text-align: center;
}

.co-pills-section__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.22;
  margin-bottom: 2rem;
}

.co-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.co-pill {
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}

.co-pill:hover {
  background: var(--surface-elevated);
  border-color: var(--ink);
  color: var(--ink);
}

/* ---- Why grid (kept section) ---- */
.co-why {
  padding: 80px 0;
  background: var(--white);
}

.co-why-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  background: var(--off);
}

.co-why-card__icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  margin-bottom: 12px;
}

.co-why-card__icon svg {
  width: 100%;
  height: 100%;
}

.co-why-card__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.co-why-card__text {
  font-size: 15px;
  color: var(--mid);
  margin: 0;
}

/* ---- Testimonials ---- */
.co-testimonials {
  background: linear-gradient(180deg, var(--off) 0%, var(--white) 45%);
  padding: 72px 0 88px;
}

.co-testimonials .co-section-h2 {
  margin-bottom: 1rem;
}

.co-testimonials__lead {
  max-width: 28rem;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.65;
}

.co-reviews-carousel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 8px;
}

.co-reviews-carousel__stage {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.co-reviews-carousel .carousel-inner {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.co-t-card--carousel {
  max-width: 640px;
  min-height: 260px;
  text-align: left;
}

.co-reviews-carousel__dots {
  position: static !important;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  padding: 4px 12px 0 !important;
  gap: 10px;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
}

.co-reviews-carousel__dots [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-soft);
  border: none;
  opacity: 1;
  text-indent: unset;
  margin: 0 !important;
  flex: 0 0 auto;
}

.co-reviews-carousel__dots [data-bs-target].active {
  background: var(--ink);
  transform: scale(1.2);
}

.co-reviews-carousel__ctrl {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--white) !important;
  border: 1px solid var(--line);
  opacity: 1 !important;
  box-shadow: var(--shadow-sm);
}

.co-reviews-carousel__ctrl .carousel-control-prev-icon,
.co-reviews-carousel__ctrl .carousel-control-next-icon {
  filter: invert(0.35);
  width: 1.25rem;
  height: 1.25rem;
}

.co-reviews-carousel__ctrl:hover {
  background: var(--surface-elevated) !important;
  border-color: var(--line-soft);
}

@media (max-width: 575.98px) {
  .co-reviews-carousel__stage {
    gap: 0;
  }

  .co-reviews-carousel__ctrl {
    display: none !important;
  }
}

.co-t-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.co-t-card__quote {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: var(--ink);
  opacity: 0.2;
  margin-bottom: 8px;
}

.co-t-card__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

.co-t-card__name {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin: 20px 0 0;
}

.co-t-card__role {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--mid);
  margin: 4px 0 0;
}

/* ---- Sold strip ---- */
.co-sold-strip {
  background: var(--off);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.co-sold-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .co-sold-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.co-sold-pitch {
  padding: 1rem 0;
}

.co-sold-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.co-sold-headline {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0.5rem 0;
}

.co-sold-sub {
  color: var(--mid);
  margin-bottom: 1.25rem;
}

.co-sold-feed-title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.co-sold-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.co-sold-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.co-sold-car {
  font-weight: 500;
}

.co-sold-loc {
  color: var(--mid);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Final CTA ---- */
.co-final-cta {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  padding: 64px 0;
  text-align: center;
}

.co-final-cta__h {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin: 0 0 12px;
}

.co-final-cta__sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.co-btn--final-cta {
  background: var(--cta-mint) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: var(--shadow-md);
}

.co-btn--final-cta:hover {
  background: var(--cta-mint-hover) !important;
  color: var(--ink) !important;
}

/* ---- Legacy split content (re-skinned) ---- */
.co-legacy-wrap {
  padding: 48px 0;
}

.co-legacy-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.co-legacy-panel__aside {
  background: var(--ink);
  color: var(--white);
  padding: 1.5rem;
}

.co-legacy-panel__aside h3 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1rem;
  background: var(--brand-soft);
  color: var(--brand-hover);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.co-legacy-panel__aside ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.co-legacy-panel__aside li {
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.co-legacy-panel__body {
  padding: 1.5rem 1.75rem;
  background: var(--white);
}

.co-legacy-panel__body h4 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.25rem;
  color: var(--brand-hover);
  margin-bottom: 1rem;
}

.co-legacy-panel__body li {
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.co-donate-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--off);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  margin: 2rem 0;
}

.co-donate-bar p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-align: center;
}

/* ---- Mobile sticky ---- */
.co-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
}

@media (max-width: 767.98px) {
  .co-mobile-sticky {
    display: flex;
  }
}

.co-mobile-sticky__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  flex: 1;
  min-width: 0;
}

.co-mobile-sticky .co-btn {
  padding: 10px 16px !important;
  font-size: 12px !important;
  flex-shrink: 0;
}

.co-mobile-sticky .co-btn--primary {
  background: var(--cta-mint) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

.co-mobile-sticky .co-btn--primary:hover {
  background: var(--cta-mint-hover) !important;
  color: var(--ink) !important;
}

/* ---- Footer ---- */
.co-footer-shell {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding-top: 64px !important;
  padding-bottom: 32px !important;
}

.co-footer-shell a {
  color: #888 !important;
}

.co-footer-shell a:hover {
  color: var(--cta-mint) !important;
}

.co-footer-shell .co-footer-brand__tag {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #888;
  margin-top: 1rem;
  max-width: 16rem;
}

.co-footer-shell .footer-title,
.co-footer-shell h4,
.co-footer-shell h5 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white) !important;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.co-footer-shell .footer-nav li {
  margin-bottom: 0.35rem;
}

.co-footer-bar {
  border-top: 1px solid #222;
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555 !important;
}

.co-footer-bar a {
  color: #555 !important;
}

.co-footer-bar a:hover {
  color: var(--cta-mint) !important;
}

.co-footer-shell .co-footer-brand__logo {
  max-height: 120px;
  width: auto;
}

/* Homepage: tone down global overrides */
.orlando-sunshine .how-it-works {
  display: none;
}

.orlando-sunshine .sticky-banner {
  display: none !important;
}

.orlando-sunshine .stick-banner-main {
  display: none !important;
}

/* Easy steps / FAQ / blogs — spacing */
.orlando-sunshine #homepage .accordion-item {
  border-color: var(--line) !important;
}

/* ---- Subtle motion (CSS only, no extra HTTP) ---- */
@keyframes co-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.co-hero .co-hero__pill {
  animation: co-fade-up 0.45s ease-out both;
}

.co-hero .co-hero__title {
  animation: co-fade-up 0.5s ease-out 0.06s both;
}

.co-hero .co-hero__sub,
.co-hero .co-hero__stars {
  animation: co-fade-up 0.5s ease-out 0.12s both;
}

.co-hero .co-hero__actions {
  animation: co-fade-up 0.5s ease-out 0.18s both;
}

.co-hero .co-hero-card {
  animation: co-fade-up 0.55s ease-out 0.1s both;
}

@media (prefers-reduced-motion: reduce) {
  .co-hero .co-hero__pill,
  .co-hero .co-hero__title,
  .co-hero .co-hero__sub,
  .co-hero .co-hero__stars,
  .co-hero .co-hero__actions,
  .co-hero .co-hero-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .co-service-card:hover {
    transform: none;
  }
}

/* ---- FAQ (theme) ---- */
.co-faq-wrap {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  padding: 48px 16px 56px;
  margin: 32px auto;
  max-width: 100%;
  border: 1px solid var(--line);
}

.co-faq-wrap .co-section-h2,
.co-faq-wrap h2 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.co-faq-accordion .accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
}

.co-faq-accordion .accordion-button {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: none !important;
}

.co-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: var(--surface-elevated);
}

.co-faq-accordion .accordion-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid);
}

/* ---- Blog grid ---- */
.co-blog-section {
  padding: 56px 0 72px;
  background: var(--white);
}

.co-blog-section .co-blog-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.co-blog-section .co-blog-title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.co-blog-section .co-blog-sub {
  color: var(--mid);
  font-size: 16px;
}

.co-blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.co-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.co-blog-card__img {
  display: block;
  height: 200px;
  overflow: hidden;
}

.co-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.co-blog-card:hover .co-blog-card__img img {
  transform: scale(1.04);
}

.co-blog-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.co-blog-card__title a {
  color: var(--ink);
  text-decoration: none;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
}

.co-blog-card__title a:hover {
  color: var(--brand-hover);
}

.co-blog-card__excerpt {
  color: var(--mid);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
  margin: 0.65rem 0 1rem;
}

.co-blog-card__meta {
  font-size: 13px;
  color: var(--mid);
}

.co-blog-card__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-hover);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.co-blog-card__link:hover {
  color: var(--slate-hover);
}

.co-blog-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  margin-top: 0.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.co-blog-all:hover {
  background: var(--brand-hover);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ---- Locations (easy_step) ---- */
.co-locations {
  padding: 48px 0 56px;
  background: var(--off);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.co-locations__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.co-locations__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.28;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.co-locations__sub {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.55;
}

.co-loc-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.co-loc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.co-loc-card__img {
  height: 180px;
  overflow: hidden;
}

.co-loc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-loc-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.co-loc-card__body h3 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.co-loc-ico {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--brand);
}

.co-loc-card__body p {
  margin: 0;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

/* ---- Partner logos ---- */
.co-partners {
  padding: 48px 0;
  background: var(--white);
}

.co-partners__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  text-align: center;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.co-partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.co-partner-badge {
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-elevated);
  min-height: 100px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.co-partner-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.2);
}

.co-partner-badge img {
  max-width: 180px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
}

/* =============================================================================
   Site-wide inner pages (mint + slate; same tokens as homepage)
   Standalone testimonials page (.testimonials-container) is excluded where noted.
   ============================================================================= */

body.skin.orlando-sunshine:not(:has(.testimonials-container)) {
  background: var(--white) !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
}

.orlando-sunshine #wrapper {
  background: var(--white);
  color: var(--ink);
}

.orlando-sunshine .co-inner-page {
  padding-bottom: 2rem;
}

.orlando-sunshine .main-container {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.orlando-sunshine .main-container h1,
.orlando-sunshine .main-container .title-1 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.orlando-sunshine .main-container h2,
.orlando-sunshine .main-container h3 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.28;
}

.orlando-sunshine .main-container .lead,
.orlando-sunshine .main-container p {
  line-height: 1.65;
}

/* Bootstrap primary → mint (inner pages) */
.orlando-sunshine .btn-primary {
  --bs-btn-bg: var(--cta-mint);
  --bs-btn-border-color: rgba(15, 23, 42, 0.1);
  --bs-btn-color: var(--ink);
  --bs-btn-hover-bg: var(--cta-mint-hover);
  --bs-btn-hover-border-color: rgba(15, 23, 42, 0.15);
  --bs-btn-hover-color: var(--ink);
  --bs-btn-active-bg: var(--cta-mint-press);
  --bs-btn-active-border-color: rgba(15, 23, 42, 0.2);
  --bs-btn-active-color: var(--ink);
  --bs-btn-focus-shadow-rgb: 15, 23, 42;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}

.orlando-sunshine .btn-outline-primary {
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: var(--line-soft);
  --bs-btn-hover-bg: var(--surface-elevated);
  --bs-btn-hover-border-color: var(--ink);
  --bs-btn-hover-color: var(--ink);
}

.orlando-sunshine .nav-pills .nav-link.active,
.orlando-sunshine .nav-pills .show > .nav-link {
  background-color: var(--ink);
  color: var(--white);
}

.orlando-sunshine .nav-pills .nav-link {
  color: var(--ink);
  border-radius: var(--radius-pill);
}

.orlando-sunshine .nav-pills .nav-link:not(.active):hover {
  background: var(--surface-elevated);
}

/* Get offer links — override inline orange gradients; footer reset below wins */
.orlando-sunshine a[href*="/get_offer"],
.orlando-sunshine a[href*="get_offer"] {
  background: var(--cta-mint) !important;
  background-image: none !important;
  color: var(--ink) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: var(--shadow-sm) !important;
}

.orlando-sunshine a[href*="/get_offer"]:hover,
.orlando-sunshine a[href*="get_offer"]:hover {
  background: var(--cta-mint-hover) !important;
  color: var(--ink) !important;
}

.orlando-sunshine .co-footer-shell .footer-nav a[href*="get_offer"],
.orlando-sunshine footer.main-footer a[href*="get_offer"] {
  background: transparent !important;
  background-image: none !important;
  color: #888 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-family: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 0 !important;
}

.orlando-sunshine .co-footer-shell .footer-nav a[href*="get_offer"]:hover {
  color: var(--cta-mint) !important;
  background: transparent !important;
}

.orlando-sunshine .anchor-location {
  color: var(--slate-hover) !important;
}

.orlando-sunshine #homepage .search-row .search-col .btn {
  background-color: var(--cta-mint) !important;
  color: var(--ink) !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}

.orlando-sunshine #homepage .search-row .search-col .btn:hover {
  background-color: var(--cta-mint-hover) !important;
}

/* Search results */
.orlando-sunshine .co-search-results .tab-filter .select-sort-by {
  background-color: var(--cta-mint) !important;
  font-weight: 600;
  color: var(--ink) !important;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
}

/* Forms */
.orlando-sunshine .form-control:focus,
.orlando-sunshine .form-select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 0.2rem var(--focus-ring);
}

/* --- Services page --- */
.co-services-page__hero {
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}

.co-services-page__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.18;
  color: var(--ink);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.co-services-page__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--mid);
  max-width: 40rem;
  margin-top: 1rem;
}

.co-services-page__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.75rem 4.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.co-services-page__step {
  position: absolute;
  left: 1.25rem;
  top: 1.65rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--cta-mint);
  color: var(--ink);
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.co-services-page__card-title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.co-services-page__card p {
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.co-services-page__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink);
  line-height: 1.65;
}

.co-services-page__list li {
  margin-bottom: 0.35rem;
}

@media (max-width: 575.98px) {
  .co-services-page__card {
    padding-left: 1.25rem;
    padding-top: 3.5rem;
  }

  .co-services-page__step {
    left: 1.25rem;
    top: 1.1rem;
  }
}

/* --- Contact --- */
.orlando-sunshine .co-page-hero {
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--white) 100%);
  padding: 2.75rem 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
}

.orlando-sunshine .co-page-hero h1 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.orlando-sunshine .co-page-hero p {
  color: var(--mid);
  line-height: 1.65;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.orlando-sunshine .co-contact-form > form {
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.5rem 1rem 2rem;
  background: var(--white);
}

@media (min-width: 768px) {
  .orlando-sunshine .co-contact-form > form {
    padding: 2rem 2rem 2.5rem;
  }
}

.orlando-sunshine .co-contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.orlando-sunshine .co-contact-info-card h3 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
}

.orlando-sunshine .co-contact-info-card .imoji {
  color: var(--slate-hover);
  font-size: 1.5rem;
}

.orlando-sunshine .co-content-panel {
  background: var(--surface-elevated) !important;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  line-height: 1.65;
  color: var(--mid);
}

.orlando-sunshine .co-content-panel h1 {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

/* --- Referrals --- */
.co-referrals-hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  box-shadow: var(--shadow-md);
}

.co-referrals-hero__lead {
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.65;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.co-referrals-card {
  background: var(--white) !important;
  border-color: var(--line) !important;
}

.co-referrals-card__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink) !important;
}

.orlando-sunshine .co-referrals-page .text-primary {
  color: var(--ink) !important;
}

/* --- Sells / get-offer strip --- */
.co-sells-hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 45%, #0f172a 100%) !important;
  background-image: none !important;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding-bottom: 2rem !important;
}

.co-sells-hero__title {
  color: var(--white) !important;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
}

.co-sells-hero__subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
}

.co-sells-hero__form-row {
  max-width: 960px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.co-sells-hero .form-select {
  border-radius: 10px;
  border: 1px solid var(--line);
}

.co-sells-hero__submit,
.co-sells-hero__submit strong {
  background: var(--cta-mint) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Unbounded", system-ui, sans-serif;
}

.co-sells-hero__submit:hover {
  background: var(--cta-mint-hover) !important;
  color: var(--ink) !important;
}

.co-content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.co-sells-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--mid);
}

/* --- Donate hero --- */
.co-donate-hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%) !important;
  padding: 3rem 1.5rem !important;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.co-donate-hero__title {
  text-align: center;
  color: var(--white) !important;
  font-weight: 800 !important;
  font-family: "Unbounded", system-ui, sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.co-donate-hero__sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- Junk / location landings --- */
/* Inline templates use margin-top:150px; override so content sits just under the fixed nav */
.orlando-sunshine .junk-car-page {
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--white) 100%) !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  margin-top: 0 !important;
  padding-top: calc(var(--nav-h, 84px) + 1rem) !important;
  padding-bottom: 2rem !important;
}

/* Gradient + background-clip text fails in some browsers → invisible h1; force readable fill */
.orlando-sunshine .junk-car-page h1 {
  color: #0f0c29 !important;
  -webkit-text-fill-color: #0f0c29 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.orlando-sunshine .junk-car-page a[href^="tel:"] {
  background: var(--white) !important;
  color: var(--ink) !important;
  border: 2px solid var(--line-soft) !important;
  box-shadow: none !important;
}

.orlando-sunshine .junk-car-page a[href^="tel:"]:hover {
  border-color: var(--ink) !important;
  background: var(--surface-elevated) !important;
}

.orlando-sunshine .junk-car-page [style*="#FF6B35"],
.orlando-sunshine .junk-car-page [style*="255, 107, 53"],
.orlando-sunshine .junk-car-page [style*="#F7931E"] {
  background: var(--surface-elevated) !important;
  border-color: var(--line) !important;
  color: var(--ink) !important;
}

/* --- Blog index cards --- */
.orlando-sunshine .co-blog-index .card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* --- Pricing page title --- */
.orlando-sunshine .co-pricing-page .title-1 {
  margin-top: 1rem;
}

/* --- Pagination --- */
.orlando-sunshine .pagination .page-link {
  color: var(--ink);
  border-color: var(--line);
}

.orlando-sunshine .pagination .page-item.active .page-link {
  background-color: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.orlando-sunshine .pagination .page-link:hover {
  background: var(--surface-elevated);
  color: var(--ink);
}

/* --- Breadcrumbs (mobile / touch): avoid dead taps under SERP chrome or stacking gaps --- */
/* custom.css sets body padding-top while #wrapper already offsets the fixed nav — drop the extra inset */
body.skin.orlando-sunshine {
  padding-top: 0 !important;
}

/* Local stacking so crumb links sit above filters/tabs in the same column (not above the fixed header) */
.orlando-sunshine .co-search-results {
  isolation: isolate;
}

.orlando-sunshine .search-breadcrumb {
  position: relative;
  z-index: 5;
}

.orlando-sunshine .search-breadcrumb .breadcrumb-item a {
  position: relative;
  z-index: 1;
  touch-action: manipulation;
}

.orlando-sunshine .main-container nav[aria-label="breadcrumb"] {
  position: relative;
  z-index: 5;
}

.orlando-sunshine .main-container nav[aria-label="breadcrumb"] .breadcrumb-item a {
  position: relative;
  z-index: 1;
  touch-action: manipulation;
}
