/* =============================================================
   Dacko Realty – Shared Page Styles
   Used by all page-{slug}.php templates
   ============================================================= */

:root {
  --dr-red:    #dc143c;
  --dr-dark:   #1a1a2e;
  --dr-mid:    #444;
  --dr-gray:   #6c757d;
  --dr-light:  #f8f9fa;
  --dr-white:  #ffffff;
  --dr-shadow: 0 2px 14px rgba(0,0,0,.09);
  --dr-radius: 8px;
}

/* ── Typography base ── */
.dr-page *,
.dr-page *::before,
.dr-page *::after { box-sizing: border-box; }

.dr-page {
  font-family: 'Open Sans', sans-serif;
  color: var(--dr-mid);
  line-height: 1.7;
}

/* ── Navigation ── */
.dr-nav {
  background: var(--dr-white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.dr-nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.dr-nav__logo img { height: 56px; width: auto; display: block; }
.dr-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.dr-nav__links a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: .78rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: .4rem .55rem;
  white-space: nowrap;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.dr-nav__links a:hover,
.dr-nav__links a.active { color: var(--dr-red); }
.dr-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: .25rem;
  margin-left: auto;
}
/* ── Nav items and dropdowns ── */
.dr-nav__item { position: relative; }
.dr-nav__caret { font-size: .6rem; margin-left: .2rem; vertical-align: middle; }
.dr-nav__dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--dr-white);
  border: 1px solid #e8e8e8;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  list-style: none;
  margin: 0;
  padding: .4rem 0;
  z-index: 200;
}
.dr-nav__dropdown li a {
  display: block;
  padding: .5rem 1.2rem;
  color: #333;
  text-decoration: none;
  font-size: .8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  transition: background .12s, color .12s;
}
.dr-nav__dropdown li a:hover,
.dr-nav__dropdown li a.active { background: #f5f5f5; color: var(--dr-red); }
.dr-nav__item--has-dropdown:hover > .dr-nav__dropdown,
.dr-nav__item--has-dropdown:focus-within > .dr-nav__dropdown { display: block !important; }
/* ── Nav actions (phone + login) ── */
.dr-nav__actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  margin-left: .5rem;
}
.dr-nav__phone {
  background: var(--dr-red);
  color: #fff;
  padding: .35rem .75rem;
  border-radius: 4px;
  font-size: .75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.dr-nav__phone:hover { background: #b01030; color: #fff; }
.dr-nav__login { display: flex; align-items: center; color: #1a1a2e; text-decoration: none; }
.dr-nav__login:hover { color: var(--dr-red); }
.dr-nav__login svg { display: block; }

/* ── Hero ── */
.dr-hero {
  background: var(--dr-red);
  color: var(--dr-white);
  padding: 5rem 1.5rem;
  text-align: center;
}
.dr-hero--img {
  background-size: cover;
  background-position: center;
  position: relative;
}
.dr-hero--img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(220,20,60,.75);
}
.dr-hero--img > * { position: relative; z-index: 1; }
.dr-hero__eyebrow {
  font-size: .85rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 .75rem;
}
.dr-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.dr-hero p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: .92;
}

/* ── Sections ── */
.dr-section { padding: 4rem 1.5rem; }
.dr-section--gray { background: var(--dr-light); }
.dr-section--dark { background: var(--dr-dark); color: var(--dr-white); }
.dr-section--dark h2,
.dr-section--dark h3 { color: var(--dr-white); }
.dr-section--dark p { color: #ccc; }
.dr-inner { max-width: 1100px; margin: 0 auto; }
.dr-inner--narrow { max-width: 800px; margin: 0 auto; }

.dr-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dr-dark);
  margin: 0 0 1.25rem;
}
.dr-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dr-dark);
  margin: 0 0 .75rem;
}
.dr-section p { margin: 0 0 1rem; }

/* ── Cards grid ── */
.dr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.dr-card {
  background: var(--dr-white);
  border-radius: var(--dr-radius);
  box-shadow: var(--dr-shadow);
  padding: 2rem 1.75rem;
}
.dr-card h3 { color: var(--dr-red); margin-top: 0; }
.dr-card p  { margin: 0; color: #555; font-size: .95rem; }

/* ── Team ── */
.dr-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.dr-team-card {
  background: var(--dr-white);
  border-radius: var(--dr-radius);
  box-shadow: var(--dr-shadow);
  padding: 2rem 1.75rem;
  text-align: center;
}
.dr-team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dr-red);
  margin-bottom: 1rem;
}
.dr-team-card h3 { color: var(--dr-dark); margin-top: 0; }
.dr-team-card .dr-role {
  font-size: .82rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dr-red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.dr-team-card p { font-size: .9rem; color: #555; text-align: left; }

/* ── Buttons ── */
.dr-btn {
  display: inline-block;
  background: var(--dr-red);
  color: var(--dr-white);
  padding: .85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.dr-btn:hover { background: #b01030; color: var(--dr-white); }
.dr-btn--outline {
  background: transparent;
  border: 2px solid var(--dr-red);
  color: var(--dr-red);
}
.dr-btn--outline:hover { background: var(--dr-red); color: var(--dr-white); }
.dr-btn--white {
  background: var(--dr-white);
  color: var(--dr-red);
}
.dr-btn--white:hover { background: #f5e6ea; color: var(--dr-red); }
.dr-btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }

/* ── Feature list ── */
.dr-features { list-style: none; padding: 0; margin: 1rem 0 0; }
.dr-features li {
  padding: .5rem 0 .5rem 2rem;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  border-bottom: 1px solid #eee;
}
.dr-features li:last-child { border-bottom: none; }
.dr-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dr-red);
  font-weight: 700;
}

/* ── FAQ ── */
.dr-faq { margin-top: 2rem; }
.dr-faq-item {
  border-bottom: 1px solid #e9ecef;
  padding: 1.5rem 0;
}
.dr-faq-item h3 {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  color: var(--dr-dark);
}
.dr-faq-item p { margin: 0; color: #666; font-size: .95rem; }

/* ── Contact grid ── */
.dr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.dr-contact-info h3 { color: var(--dr-red); }
.dr-contact-info p  { font-size: .95rem; }
.dr-contact-info a  { color: var(--dr-red); text-decoration: none; }
.dr-contact-info a:hover { text-decoration: underline; }

/* ── Form ── */
.dr-form label {
  display: block;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem;
  margin-bottom: .3rem;
  color: var(--dr-dark);
}
.dr-form input,
.dr-form textarea,
.dr-form select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  margin-bottom: 1rem;
  transition: border-color .15s;
}
.dr-form input:focus,
.dr-form textarea:focus {
  border-color: var(--dr-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220,20,60,.1);
}
.dr-form textarea { height: 140px; resize: vertical; }
.dr-form-note { font-size: .8rem; color: var(--dr-gray); margin-top: .25rem; }
.dr-form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

/* ── IDX embed ── */
.dr-idx-embed { width: 100%; min-height: 700px; border: none; display: block; }
.dr-idx-wrap  { border-radius: var(--dr-radius); overflow: hidden; box-shadow: var(--dr-shadow); }

/* ── Rental cards ── */
.dr-rental-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.dr-rental-card {
  background: var(--dr-white);
  border-radius: var(--dr-radius);
  box-shadow: var(--dr-shadow);
  overflow: hidden;
}
.dr-rental-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e9ecef;
  display: block;
}
.dr-rental-card__body { padding: 1.5rem; }
.dr-rental-card__body h3 { margin: 0 0 .5rem; color: var(--dr-dark); }
.dr-rental-card__meta { font-size: .85rem; color: var(--dr-gray); margin-bottom: 1rem; }

/* ── Two-column layout ── */
.dr-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.dr-two-col img { width: 100%; border-radius: var(--dr-radius); box-shadow: var(--dr-shadow); }

/* ── Stats row ── */
.dr-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.dr-stat { text-align: center; }
.dr-stat__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dr-red);
  line-height: 1;
}
.dr-stat__label { font-size: .85rem; color: var(--dr-gray); margin-top: .25rem; }

/* ── Review card ── */
.dr-review {
  background: var(--dr-white);
  border-radius: var(--dr-radius);
  box-shadow: var(--dr-shadow);
  padding: 2rem;
  border-left: 4px solid var(--dr-red);
}
.dr-review blockquote { margin: 0 0 1rem; font-style: italic; color: #555; }
.dr-review cite { font-size: .85rem; color: var(--dr-gray); }
.dr-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .5rem; }

/* ── Site footer ── */
.dr-site-footer {
  background: var(--dr-dark);
  color: #aaa;
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}
.dr-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.dr-footer-logo { margin: 0 auto 1.5rem; filter: brightness(0) invert(1) opacity(.7); }
.dr-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.dr-footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: .82rem;
  font-family: 'Poppins', sans-serif;
  transition: color .15s;
}
.dr-footer-nav a:hover { color: var(--dr-white); }
.dr-footer-contact { margin-bottom: .75rem; }
.dr-footer-contact a { color: #ccc; text-decoration: none; }
.dr-footer-contact a:hover { color: var(--dr-red); }
.dr-footer-copy { font-size: .8rem; color: #666; margin: 0; }

/* ── Neighbourhood badges ── */
.dr-hoods {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}
.dr-hood {
  background: var(--dr-white);
  border: 1px solid #dee2e6;
  border-radius: 999px;
  padding: .4rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  color: var(--dr-dark);
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-red    { color: var(--dr-red); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ── Hide GoDaddy hours widget ── */
#bs-10,
[data-aid="CONTACT_HOURS_TITLE_REND"],
[data-aid="CONTACT_HOURS_REND"],
[data-aid="CONTACT_HOURS_CUST_MSG_REND"],
[data-aid="CONTACT_SECTION_HOURS_REND"] { display: none !important; }

/* ── Fix GoDaddy Contact section layout & readability ────────────────────
   The c2-* atomic CSS block in front-page.php is empty in the WP context.
   Rules below restore legibility using stable data-ux / data-aid hooks.
   NOTE: the correct container is CONTACT_FORM_CONTAINER_REND, not CONTACT_FORM_REND.
   ────────────────────────────────────────────────────────────────────── */

/* Force clean two-column split on the contact container */
[data-aid="CONTACT_INFO_CONTAINER_REND"] > [data-ux="Grid"] {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 2rem !important;
  margin: 0 !important;
}
[data-aid="CONTACT_INFO_CONTAINER_REND"] [data-ux="GridCell"] {
  flex: 1 1 300px !important;
  min-width: 0 !important;
  padding: 1rem 0 !important;
}

/* Readable text inside the contact section */
[data-aid="CONTACT_INFO_CONTAINER_REND"] [data-ux="ContentHeading"],
[data-aid="CONTACT_INFO_CONTAINER_REND"] [data-ux="ContentText"],
[data-aid="CONTACT_INFO_CONTAINER_REND"] p,
[data-aid="CONTACT_INFO_CONTAINER_REND"] h4 {
  color: #1a1a1a !important;
}
[data-aid="CONTACT_INFO_CONTAINER_REND"] a {
  color: var(--dr-red) !important;
  text-decoration: none;
}

/* Form inputs / textareas — correct container: CONTACT_FORM_CONTAINER_REND */
[data-aid="CONTACT_FORM_CONTAINER_REND"] input:not([type="hidden"]):not([name="_app_id"]),
[data-aid="CONTACT_FORM_CONTAINER_REND"] textarea,
[data-aid="CONTACT_FORM_CONTAINER_REND"] select {
  display: block !important;
  width: 100% !important;
  color: #333 !important;
  background: #fff !important;
  border: 0 !important;
  border-bottom: 1px solid #aaa !important;
  border-radius: 0 !important;
  padding: 1.4rem 0.5rem 0.5rem !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.95rem !important;
  outline: none !important;
  box-sizing: border-box !important;
  margin-bottom: 0.25rem !important;
}
[data-aid="CONTACT_FORM_CONTAINER_REND"] input:focus,
[data-aid="CONTACT_FORM_CONTAINER_REND"] textarea:focus {
  border-bottom-color: var(--dr-red) !important;
  box-shadow: inset 0 -1px 0 var(--dr-red) !important;
}
[data-aid="CONTACT_FORM_CONTAINER_REND"] textarea {
  min-height: 100px !important;
  resize: vertical !important;
}
/* Labels */
[data-aid="CONTACT_FORM_CONTAINER_REND"] label {
  display: block !important;
  color: #666 !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 0.85rem !important;
  margin-bottom: 0.3rem !important;
  pointer-events: none !important;
}
/* reCAPTCHA disclaimer — make links readable */
[data-aid="CONTACT_FORM_CONTAINER_REND"] p,
[data-aid="CONTACT_FORM_CONTAINER_REND"] p a {
  color: #888 !important;
  font-size: 0.78rem !important;
}
/* Submit button */
[data-aid="CONTACT_SUBMIT_BUTTON_REND"] {
  background: var(--dr-red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 0.85rem 2rem !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  margin-top: 1rem !important;
}
[data-aid="CONTACT_SUBMIT_BUTTON_REND"]:hover {
  background: #b01030 !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .dr-contact-grid,
  .dr-two-col { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .dr-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dr-white);
    box-shadow: 0 8px 16px rgba(0,0,0,.12);
    padding: .5rem 0 1rem;
  }
  .dr-nav__links.active { display: flex; }
  .dr-nav__links a { padding: .6rem 1.5rem; font-size: .9rem; }
  .dr-nav__toggle { display: flex; }
  .dr-nav { position: relative; }
  /* Mobile dropdowns */
  .dr-nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--dr-red);
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
  .dr-nav__item--has-dropdown > .dr-nav__dropdown { display: none !important; }
  .dr-nav__item--has-dropdown:hover > .dr-nav__dropdown,
  .dr-nav__item--has-dropdown:focus-within > .dr-nav__dropdown { display: none !important; }
  .dr-nav__item--has-dropdown.dr-open > .dr-nav__dropdown { display: block !important; }
  .dr-nav__dropdown li a { padding: .45rem 1rem .45rem 2rem; font-size: .85rem; }
  .dr-nav__actions { gap: .4rem; }
  .dr-nav__phone { font-size: .7rem; padding: .28rem .55rem; }
  .dr-hero h1 { font-size: 1.8rem; }
  .dr-hero p  { font-size: 1rem; }
  .dr-btn-group { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PHASE 2 ADDITIONS — funnel pages, Calendly, ROI calc, blog, mobile CTA
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Crimson CTA section (Make Ready cross-sell) ────────────────────── */
.dr-section--crimson { background: var(--dr-red); padding: 4rem 1.5rem; }
.dr-section--crimson h2,
.dr-section--crimson p { color: #fff; }
.dr-section--crimson p { max-width: 640px; margin: 0 auto 2rem; opacity: .92; }

/* ── Value strip (3-col icon + text) ────────────────────────────────── */
.dr-value-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 0;
}
.dr-value-strip__item { text-align: center; }
.dr-value-strip__icon { font-size: 2.2rem !important; line-height: 1; display: block; margin-bottom: .6rem; }
/* ── Hero outline button override ── */
.dr-hero .dr-btn--outline {
  border-color: #fff !important;
  color: #fff !important;
}

/* ── Make Ready page back-link override ── */
.page-template-page-make-ready .dr-btn--outline,
.page-id-XXX .dr-btn--outline {
  border-color: #1a1a2e !important;
  color: #1a1a2e !important;
}
.dr-value-strip__item strong { display: block; font-size: 1.05rem; color: var(--dr-dark); margin-bottom: .25rem; }
.dr-value-strip__item span { font-size: .92rem; color: #555; line-height: 1.45; }

/* ── Calendly inline embed wrapper ──────────────────────────────────── */
.dr-booking-section { padding: 4rem 1.5rem; background: #f0f4f8; }
.dr-calendly-wrap {
  min-width: 320px;
  min-height: 750px;
  border-radius: 10px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

/* ── ROI Calculator card (investors page) ───────────────────────────── */
.dr-roi-calc {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  padding: 2.5rem 2rem;
  max-width: 680px;
  margin: 0 auto;
}
.dr-roi-calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
.dr-roi-calc__grid label { display: block; font-size: .88rem; font-weight: 600; color: var(--dr-dark); margin-bottom: .35rem; }
.dr-roi-calc__grid input {
  width: 100%;
  padding: .6rem .8rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color .2s;
}
.dr-roi-calc__grid input:focus { outline: none; border-color: var(--dr-red); }
.dr-roi-calc__results {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--dr-dark);
  color: #fff;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.dr-roi-calc__results span { font-size: .78rem; opacity: .75; display: block; margin-bottom: .2rem; }
.dr-roi-calc__results strong { font-size: 1.55rem; font-weight: 700; color: #f8c630; }
@media (max-width: 580px) {
  .dr-roi-calc__grid { grid-template-columns: 1fr; }
  .dr-roi-calc__results { grid-template-columns: 1fr; }
}

/* ── Homepage funnel navigator ──────────────────────────────────────── */
.dr-funnel-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.dr-funnel-nav__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  padding: 2.2rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0,0,0,.08);
  text-decoration: none;
  color: var(--dr-dark);
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid transparent;
}
.dr-funnel-nav__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 26px rgba(0,0,0,.13);
  border-top-color: var(--dr-red);
}
.dr-funnel-nav__icon { font-size: 2.8rem; line-height: 1; }
.dr-funnel-nav__card strong { font-size: 1.15rem; color: var(--dr-dark); }
.dr-funnel-nav__card span { font-size: .9rem; color: #666; line-height: 1.4; }

/* ── Mobile sticky call button ───────────────────────────────────────── */
.dr-mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dr-red);
  color: #fff;
  text-align: center;
  padding: .9rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,.2);
}
@media (max-width: 768px) {
  .dr-mobile-call { display: flex; }
  body { padding-bottom: 56px; }
}

/* ── Blog grid + cards ───────────────────────────────────────────────── */
.dr-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.dr-blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(0,0,0,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.dr-blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.dr-blog-card__thumb { width: 100%; height: 200px; object-fit: cover; }
.dr-blog-card__thumb--placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--dr-red), #a50f2e); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.dr-blog-card__body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.dr-blog-card__meta { font-size: .8rem; color: #888; margin-bottom: .5rem; }
.dr-blog-card__title { font-size: 1.1rem; font-weight: 600; color: var(--dr-dark); text-decoration: none; margin-bottom: .75rem; line-height: 1.35; display: block; }
.dr-blog-card__title:hover { color: var(--dr-red); }
.dr-blog-card__excerpt { font-size: .9rem; color: #555; line-height: 1.55; flex: 1; }
.dr-blog-card__read-more { margin-top: 1rem; font-size: .88rem; font-weight: 600; color: var(--dr-red); text-decoration: none; }
.dr-blog-card__read-more:hover { text-decoration: underline; }

/* ── Single blog post ────────────────────────────────────────────────── */
.dr-post-content { max-width: 740px; margin: 0 auto; padding: 3rem 1.5rem 4rem; line-height: 1.75; font-size: 1.05rem; color: #333; }
.dr-post-content h1, .dr-post-content h2, .dr-post-content h3 { color: var(--dr-dark); margin-top: 2.2rem; }
.dr-post-content img { max-width: 100%; border-radius: 8px; margin: 1.5rem 0; }
.dr-post-content a { color: var(--dr-red); }
.dr-post-meta { text-align: center; color: #888; font-size: .88rem; margin-bottom: 2rem; }
