/*
Theme Name: Clear Roof Pro Neve Child
Theme URI: https://clearroofpros.com/
Description: Child theme for Clear Roof Pro using the Neve parent theme.
Author: Clear Roof Pro
Template: neve
Version: 1.0.0
Text Domain: clearroofpro-neve-child
*/

/* Custom CSS below */

:root {
  --crp-teal: #00a6a6;
  --crp-teal-dark: #007f83;
  --crp-navy: #0b1f33;
  --crp-navy-soft: #12324f;
  --crp-sky: #e8f7f8;
  --crp-ice: #f4fbfc;
  --crp-silver: #eef3f6;
  --crp-dark: #111827;
  --crp-text: #415164;
  --crp-border: #c8dde5;
  --crp-white: #ffffff;
}

/* GLOBAL */
.container,
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--hero-bg) center center / cover no-repeat;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: rgba(0, 166, 166, 0.18);
  border-radius: 50%;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(
    120deg,
    rgba(11,31,51,0.94),
    rgba(18,50,79,0.82),
    rgba(0,166,166,0.34)
  );
}

.hero-content {
  color: #fff;
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 19px;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 760px;
  color: rgba(255,255,255,0.94);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-button {
  background: linear-gradient(135deg, var(--crp-teal), var(--crp-teal-dark));
  color: #fff;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0,166,166,0.34);
  transition: 0.25s ease;
  border: 2px solid transparent;
}

.hero-button:hover {
  background: linear-gradient(135deg, var(--crp-teal-dark), #00696d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,127,131,0.38);
}

.hero-button-secondary {
  background: rgba(255,255,255,0.96);
  color: var(--crp-navy);
  border: 2px solid rgba(255,255,255,0.72);
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.hero-button-secondary:hover {
  background: var(--crp-sky);
  color: var(--crp-navy);
  border-color: var(--crp-teal);
}

/* INTRO */
.intro-section {
  padding: 78px 20px;
  background: linear-gradient(180deg, #ffffff, var(--crp-ice));
  text-align: center;
}

.intro-section h2 {
  font-size: 34px;
  margin-bottom: 18px;
  color: var(--crp-navy);
  letter-spacing: -0.01em;
}

.intro-section p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--crp-text);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICE LINKS */
.service-links {
  padding: 78px 20px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(0,166,166,0.22), transparent 34%),
    linear-gradient(135deg, var(--crp-navy), var(--crp-navy-soft));
  color: #fff;
}

.service-links h2 {
  color: #fff;
  font-size: 34px;
  letter-spacing: -0.01em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 32px auto 0;
}

.service-grid a {
  background: rgba(255,255,255,0.96);
  padding: 19px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--crp-navy);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.65);
  border-top: 5px solid var(--crp-teal);
  transition: 0.25s ease;
}

.service-grid a:hover {
  background: var(--crp-teal);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,166,166,0.32);
}

/* LOCATIONS */
.locations-section {
  padding: 78px 20px;
  background: linear-gradient(180deg, #ffffff, var(--crp-sky));
  border-top: 5px solid var(--crp-teal);
}

.locations-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.locations-section h2 {
  color: var(--crp-navy);
  font-size: 34px;
  letter-spacing: -0.01em;
}

.locations-section p {
  font-size: 18px;
  color: var(--crp-text);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.locations-grid a {
  display: block;
  background: #fff;
  color: var(--crp-navy);
  text-decoration: none;
  padding: 17px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  border: 2px solid var(--crp-border);
  box-shadow: 0 7px 16px rgba(11,31,51,0.08);
  transition: 0.25s ease;
}

.locations-grid a:hover {
  background: var(--crp-navy);
  border-color: var(--crp-navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11,31,51,0.22);
}

/* WHY */
.why-section {
  padding: 78px 20px;
  background: #ffffff;
  text-align: center;
}

.why-section h2 {
  font-size: 34px;
  color: var(--crp-navy);
  letter-spacing: -0.01em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 950px;
  margin: 36px auto 0;
}

.why-grid div {
  background: linear-gradient(180deg, #ffffff, var(--crp-ice));
  padding: 25px 18px;
  border-radius: 20px;
  font-weight: 900;
  color: var(--crp-dark);
  border: 1px solid var(--crp-border);
  box-shadow: 0 10px 22px rgba(11,31,51,0.08);
  position: relative;
  overflow: hidden;
}

.why-grid div::before {
  content: "";
  display: block;
  width: 44px;
  height: 5px;
  background: var(--crp-teal);
  border-radius: 999px;
  margin: 0 auto 14px;
}

/* FAQ */
.faq-section {
  padding: 78px 20px;
  background:
    linear-gradient(135deg, var(--crp-silver), #ffffff);
}

.faq-section h2 {
  text-align: center;
  color: var(--crp-navy);
  font-size: 34px;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.faq-item {
  max-width: 850px;
  margin: 0 auto 18px;
  background: #fff;
  padding: 23px 25px;
  border-radius: 18px;
  border-left: 7px solid var(--crp-teal);
  box-shadow: 0 10px 22px rgba(11,31,51,0.08);
}

.faq-item h3 {
  font-size: 21px;
  margin-bottom: 8px;
  color: var(--crp-navy);
}

.faq-item p {
  color: var(--crp-text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    min-height: 420px;
  }

  .hero-overlay {
    padding: 78px 20px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-button {
    width: 100%;
    text-align: center;
  }

  .intro-section h2,
  .service-links h2,
  .locations-section h2,
  .why-section h2,
  .faq-section h2 {
    font-size: 28px;
  }
}

/* FOOTER */
.crp-footer {
  background:
    radial-gradient(circle at top left, rgba(0,166,166,0.18), transparent 34%),
    linear-gradient(135deg, var(--crp-navy), var(--crp-navy-soft));
  color: #fff;
  padding: 46px 20px 24px;
  border-top: 5px solid var(--crp-teal);
}

.crp-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.crp-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.crp-footer-col h3 {
  font-size: 20px;
  margin-bottom: 13px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.crp-footer-col p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(232,247,248,0.86);
}

.crp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crp-footer-col ul li {
  margin-bottom: 7px;
}

.crp-footer-col ul li a,
.footer-services-grid a {
  color: rgba(232,247,248,0.86);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.crp-footer-col ul li a:hover,
.footer-services-grid a:hover {
  color: var(--crp-teal);
}

.footer-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.footer-services-grid .footer-view-all {
  grid-column: span 2;
  color: var(--crp-teal) !important;
  font-weight: 900;
  margin-top: 8px;
}

.footer-phone {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--crp-teal);
  margin: 10px 0;
  text-decoration: none;
}

.footer-phone:hover {
  color: #ffffff;
}

.footer-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--crp-teal), var(--crp-teal-dark));
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  margin-top: 10px;
  transition: 0.25s ease;
  box-shadow: 0 10px 22px rgba(0,166,166,0.28);
}

.footer-cta:hover {
  background: linear-gradient(135deg, var(--crp-teal-dark), #00696d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,127,131,0.34);
}

.crp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(232,247,248,0.72);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    min-height: 380px;
  }

  .hero-overlay {
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p,
  .intro-section p,
  .locations-section p {
    font-size: 16px;
  }

  .intro-section h2,
  .service-links h2,
  .locations-section h2,
  .why-section h2,
  .faq-section h2 {
    font-size: 28px;
  }

  .service-links,
  .locations-section,
  .why-section,
  .faq-section,
  .intro-section {
    padding: 55px 20px;
  }

  .footer-services-grid {
    grid-template-columns: 1fr;
  }

  .footer-services-grid .footer-view-all {
    grid-column: span 1;
  }
}

/* CONTACT FORM */
.contact-form-section {
  background:
    radial-gradient(circle at top right, rgba(0,166,166,0.13), transparent 32%),
    linear-gradient(135deg, var(--crp-ice) 0%, #ffffff 100%);
  padding: 42px 20px 48px;
}

.contact-form-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.contact-form-text {
  max-width: 520px;
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--crp-teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form-text h2 {
  margin: 0 0 15px;
  color: var(--crp-navy);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.contact-form-text p {
  margin: 0 0 14px;
  color: var(--crp-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-benefits {
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 32px;
  color: var(--crp-navy);
  font-weight: 800;
  line-height: 1.45;
}

.contact-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--crp-teal);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,166,166,0.25);
}

.contact-phone {
  margin-top: 18px !important;
  font-size: 1.08rem !important;
  font-weight: 800;
}

.contact-phone a {
  color: var(--crp-navy);
  font-size: 1.12rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-phone a:hover {
  color: var(--crp-teal-dark);
}

.crp-contact-form {
  background: #fff;
  padding: 26px;
  border: 1px solid var(--crp-border);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(11,31,51,0.11);
  position: relative;
  overflow: hidden;
}

.crp-contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--crp-teal), var(--crp-navy-soft));
}

.crp-contact-form .form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.crp-contact-form .form-row {
  margin-bottom: 13px;
}

.crp-contact-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--crp-navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.crp-contact-form input,
.crp-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--crp-border);
  border-radius: 12px;
  background: #fff;
  color: var(--crp-dark);
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.crp-contact-form input:focus,
.crp-contact-form textarea:focus {
  outline: none;
  border-color: var(--crp-teal);
  box-shadow: 0 0 0 4px rgba(0,166,166,0.14);
}

.crp-contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  margin-top: 5px;
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.form-success-message {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(0,166,166,0.32);
  border-radius: 12px;
  background: var(--crp-sky);
  color: var(--crp-navy);
  font-weight: 900;
  line-height: 1.45;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-form-text {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .contact-form-section {
    padding: 36px 16px 42px;
  }

  .crp-contact-form {
    padding: 22px;
    border-radius: 18px;
  }

  .crp-contact-form .form-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-text h2 {
    font-size: 1.85rem;
  }
}

/* FLOATING ACTIONS */
.crp-floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crp-floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 132px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--crp-teal);
  color: #fff;
  font-weight: 900;
  font-size: 0.96rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 13px 30px rgba(11,31,51,0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.crp-floating-btn:hover,
.crp-floating-btn:focus {
  color: #fff;
  background: var(--crp-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(11,31,51,0.3);
}

.crp-floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 1rem;
}

.crp-floating-label {
  white-space: nowrap;
}

.crp-floating-call {
  background: var(--crp-navy);
}

.crp-floating-call:hover,
.crp-floating-call:focus {
  background: #061522;
}

.crp-floating-text {
  background: var(--crp-teal);
}

.crp-floating-text:hover,
.crp-floating-text:focus {
  background: var(--crp-teal-dark);
}

.crp-floating-estimate {
  background: linear-gradient(135deg, var(--crp-teal), var(--crp-teal-dark));
}

@media (max-width: 768px) {
  .crp-floating-actions {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 0;
    background: #fff;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(11,31,51,0.16);
  }

  .crp-floating-btn {
    flex: 1;
    min-width: 0;
    border-radius: 14px;
    padding: 12px 8px;
    font-size: 0.86rem;
    box-shadow: none;
  }

  .crp-floating-icon {
    width: 18px;
    height: 18px;
  }

  body {
    padding-bottom: 74px;
  }
}

/* VOICE ANSWER BLOCK */
.voice-answer-block {
  padding: 30px 20px;
  background: #ffffff;
}

.voice-answer-block .container {
  max-width: 1120px;
  margin: 0 auto;
}

.voice-answer-block p {
  position: relative;
  margin: 0;
  padding: 28px 32px 28px 74px;
  background: linear-gradient(135deg, var(--crp-sky) 0%, #ffffff 100%);
  border: 1px solid rgba(0,166,166,0.24);
  border-left: 7px solid var(--crp-teal);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(11,31,51,0.08);
  color: var(--crp-navy);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  font-weight: 700;
}

.voice-answer-block p::before {
  content: "✓";
  position: absolute;
  left: 26px;
  top: 30px;
  width: 31px;
  height: 31px;
  border-radius: 999px;
  background: var(--crp-teal);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 31px;
  text-align: center;
  box-shadow: 0 9px 18px rgba(0,166,166,0.28);
}

.voice-answer-block strong {
  color: var(--crp-navy);
  font-weight: 900;
}

@media (max-width: 700px) {
  .voice-answer-block {
    padding: 24px 16px;
  }

  .voice-answer-block p {
    padding: 23px 20px 23px 58px;
    border-radius: 16px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .voice-answer-block p::before {
    left: 20px;
    top: 24px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
    line-height: 26px;
  }
}


.compact-service-links {
  padding: 52px 20px;
  background:
    radial-gradient(circle at top left, rgba(0,166,166,0.22), transparent 34%),
    linear-gradient(135deg, var(--crp-navy) 0%, var(--crp-navy-soft) 100%);
  color: #ffffff;
}

.compact-service-links .container {
  max-width: 1120px;
  margin: 0 auto;
}

.service-links-header {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--crp-teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-links-header h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.service-links-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.65;
}

.compact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.compact-service-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  color: var(--crp-navy);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.compact-service-grid a:hover,
.compact-service-grid a:focus {
  background: var(--crp-teal);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 166, 166, 0.28);
}

.hidden-service-link {
  display: none !important;
}

.services-expanded .hidden-service-link {
  display: flex !important;
}

.service-expand-wrap {
  margin-top: 24px;
  text-align: center;
}

.service-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 13px 20px;
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.service-expand-btn:hover,
.service-expand-btn:focus {
  background: #ffffff;
  color: var(--crp-navy);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 950px) {
  .compact-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .compact-service-links {
    padding: 40px 16px;
  }

  .compact-service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .compact-service-grid a {
    min-height: 50px;
    font-size: 0.94rem;
  }
}

/* =========================================================
   CLEAR ROOF PRO POLISH PACK
   Clean transitions, refined hover effects, and motion safety
========================================================= */

/* Smooth scrolling for anchor links like #contact-form */
html {
  scroll-behavior: smooth;
}

/* Better text rendering */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Global interactive polish */
a,
button,
.hero-button,
.service-grid a,
.locations-grid a,
.compact-service-grid a,
.crp-floating-btn,
.footer-cta,
.crp-contact-form input,
.crp-contact-form textarea {
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

/* Make focus states visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 166, 166, 0.42);
  outline-offset: 3px;
}

/* Hero gets a subtle premium overlay texture */
.hero-overlay {
  position: relative;
  overflow: hidden;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(255,255,255,0.11), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(0,166,166,0.18), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero headline feels more refined */
.hero-content h1 {
  letter-spacing: -0.03em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

/* CTA buttons get a cleaner premium hover */
.hero-button {
  position: relative;
  overflow: hidden;
}

.hero-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transform: skewX(-18deg);
}

.hero-button:hover::after {
  left: 130%;
  transition: left 0.65s ease;
}

/* Service and location cards feel more clickable */
.service-grid a,
.locations-grid a,
.compact-service-grid a {
  position: relative;
  overflow: hidden;
}

.service-grid a::before,
.locations-grid a::before,
.compact-service-grid a::before {
  content: "";
  position: absolute;
  inset: auto 14px 10px 14px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-grid a:hover::before,
.locations-grid a:hover::before,
.compact-service-grid a:hover::before {
  opacity: 0.5;
  transform: scaleX(1);
}

/* Contact form lift effect */
.crp-contact-form {
  position: relative;
}

.crp-contact-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,166,166,0.28), rgba(18,50,79,0.16));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.22s ease;
}

.crp-contact-form:hover::before {
  opacity: 1;
}

/* Inputs feel more modern */
.crp-contact-form input,
.crp-contact-form textarea {
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.crp-contact-form input:hover,
.crp-contact-form textarea:hover {
  border-color: rgba(0, 166, 166, 0.48);
}

/* FAQ cards: subtle open/read feel */
.faq-item {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-left-color 0.18s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(11,31,51,0.1);
  border-left-color: var(--crp-navy);
}

.faq-item h3 {
  position: relative;
  padding-right: 24px;
}

.faq-item h3::after {
  content: "?";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--crp-teal);
  font-weight: 900;
  opacity: 0.72;
}

/* Why cards look more dimensional */
.why-grid div {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.why-grid div::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: rgba(0,166,166,0.08);
}

.why-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(0,166,166,0.45);
  box-shadow: 0 15px 30px rgba(11,31,51,0.1);
}

/* Floating buttons pulse just enough to draw attention */
.crp-floating-call {
  animation: crpSoftPulse 2.8s ease-in-out infinite;
}

@keyframes crpSoftPulse {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(11,31,51,0.24);
  }
  50% {
    box-shadow: 0 12px 34px rgba(0,166,166,0.34);
  }
}

/* Estimate floating button gets a tiny arrow feel */
.crp-floating-estimate .crp-floating-label::after {
  content: " →";
}

/* Nice divider illusion between big sections */
.intro-section,
.locations-section,
.why-section,
.faq-section,
.contact-form-section,
.voice-answer-block,
.compact-service-links {
  position: relative;
}

/* Better mobile tap feel */
@media (max-width: 768px) {
  .hero-button:hover,
  .service-grid a:hover,
  .locations-grid a:hover,
  .compact-service-grid a:hover,
  .faq-item:hover,
  .why-grid div:hover {
    transform: none;
  }

  .hero-button::after {
    display: none;
  }

  .crp-floating-call {
    animation: none;
  }
}

/* Respect people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.compact-service-links .service-grid {
  margin-top: 0;
}

#contact-form {
  scroll-margin-top: 24px;
}

.hidden-service-link {
  display: none !important;
}

.services-expanded .hidden-service-link {
  display: flex !important;
}

/* CALL NOW SECTION */
.call-now-section {
  padding: 56px 20px;
  background:
    radial-gradient(circle at top right, rgba(0,166,166,0.2), transparent 34%),
    linear-gradient(135deg, var(--crp-navy) 0%, #061522 100%);
  color: #ffffff;
  text-align: center;
}

.call-now-section .container {
  max-width: 980px;
  margin: 0 auto;
}

.call-now-section h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.call-now-section p {
  max-width: 760px;
  margin: 0 auto 27px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 500;
}

.call-now-section .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.call-now-section .hero-button {
  min-width: 190px;
  justify-content: center;
  background: var(--crp-teal);
  color: #ffffff;
  border: 2px solid var(--crp-teal);
  box-shadow: 0 12px 26px rgba(0,166,166,0.26);
}

.call-now-section .hero-button:hover,
.call-now-section .hero-button:focus {
  background: #ffffff;
  color: var(--crp-navy);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.call-now-section .hero-button-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.92);
}

.call-now-section .hero-button-secondary:hover,
.call-now-section .hero-button-secondary:focus {
  background: #ffffff;
  color: var(--crp-navy);
  border-color: #ffffff;
}

@media (max-width: 700px) {
  .call-now-section {
    padding: 44px 16px;
  }

  .call-now-section .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .call-now-section .hero-button {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   CLEAR ROOF PROS BLOG POST STYLES
   Applies to single blog posts using single.php
========================================================= */

/* =========================================================
   1. BASE BLOG WRAPPERS
========================================================= */

.crp-blog-main {
  background: #ffffff;
  color: #0b1f33;
  overflow-x: hidden;
}

.crp-blog-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
   2. BLOG HERO / TITLE AREA
========================================================= */

.crp-blog-hero {
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(47, 90, 174, 0.18), transparent 34%),
    linear-gradient(135deg, #061522, #0b1f33);
  color: #ffffff;
  padding: 72px 0 60px;
  border-bottom: 5px solid #00a6a6;
}

.crp-blog-hero .crp-blog-container {
  max-width: 1120px;
}

.crp-blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.crp-blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-weight: 850;
}

.crp-blog-breadcrumb a:hover {
  color: #8ff7f7;
}

.crp-blog-breadcrumb span {
  opacity: 0.78;
}

.crp-blog-hero .section-eyebrow,
.crp-blog-bottom-cta .section-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: #8ff7f7;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.crp-blog-hero h1 {
  max-width: 940px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.crp-blog-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 750;
}

/* =========================================================
   3. FEATURED IMAGE
========================================================= */

.crp-blog-featured {
  padding: 36px 0 0;
}

.crp-featured-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.16);
}

/* =========================================================
   4. BLOG MAP SECTION
========================================================= */

.crp-blog-map-section {
  padding: 56px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 166, 166, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4fbfc);
}

.crp-blog-map-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, .95fr);
  gap: 34px;
  align-items: center;
}

.crp-blog-map-embed {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(11, 31, 51, .14);
  border: 1px solid rgba(11, 31, 51, .08);
  background: #f4f5f7;
}

.crp-blog-map-content {
  background: #ffffff;
  border: 1px solid rgba(0, 166, 166, .18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
}

.crp-blog-map-content h2 {
  margin: 0 0 14px;
  color: #0b1f33;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.crp-blog-map-content p {
  color: #415164;
  line-height: 1.75;
  font-size: 1.05rem;
}

.crp-blog-map-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.crp-blog-map-facts div {
  background: #f4fbfc;
  border: 1px solid rgba(0, 166, 166, .16);
  border-radius: 14px;
  padding: 14px;
}

.crp-blog-map-facts strong {
  display: block;
  color: #007f83;
  margin-bottom: 5px;
  font-weight: 950;
}

.crp-blog-map-facts span {
  color: #475569;
}

.crp-blog-map-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   5. MAIN BLOG CONTENT LAYOUT
========================================================= */

.crp-blog-content-section {
  padding: 54px 0 70px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 65%, #f4fbfc 100%);
}

.crp-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  align-items: start;
}

.crp-blog-content-wrap {
  min-width: 0;
}

.crp-blog-content {
  min-width: 0;
  color: #243447;
  font-size: 19px;
  line-height: 1.78;
}

.crp-blog-content p {
  margin: 0 0 22px;
}

.crp-blog-content h2 {
  scroll-margin-top: 140px;
  margin: 44px 0 16px;
  color: #0b1f33;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.crp-blog-content h3 {
  margin: 30px 0 10px;
  color: #0b1f33;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 925;
}

.crp-blog-content a {
  color: #007f83;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.crp-blog-content a:hover {
  color: #005f63;
}

/* =========================================================
   6. TABLE OF CONTENTS
========================================================= */

.crp-blog-toc {
  margin: 0 0 34px;
  padding: 26px 28px;
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.12), transparent 38%),
    #f4fbfc;
  border: 1px solid rgba(0, 166, 166, 0.22);
  border-left: 7px solid #00a6a6;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.07);
}

.crp-blog-toc h2 {
  margin: 0 0 14px;
  color: #0b1f33;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.crp-blog-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.crp-blog-toc li {
  margin: 0;
  color: #00a6a6;
  font-weight: 900;
}

.crp-blog-toc a {
  color: #0b1f33;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.crp-blog-toc a:hover {
  color: #007f83;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   7. CONTENT CALLOUT BOXES
========================================================= */

.crp-quick-answer,
.crp-related-service-box,
.crp-blog-cta-box {
  position: relative;
  overflow: hidden;
  margin: 32px 0;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.12), transparent 38%),
    #f4fbfc;
  border: 1px solid rgba(0, 166, 166, 0.22);
  border-left: 7px solid #00a6a6;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.07);
}

.crp-quick-answer::after,
.crp-related-service-box::after,
.crp-blog-cta-box::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(0, 166, 166, 0.08);
  pointer-events: none;
}

.crp-quick-answer strong {
  display: block;
  margin-bottom: 8px;
  color: #0b1f33;
  font-size: 19px;
  font-weight: 950;
}

.crp-quick-answer p,
.crp-related-service-box p,
.crp-blog-cta-box p {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.crp-quick-answer p:last-child,
.crp-related-service-box p:last-child,
.crp-blog-cta-box p:last-child {
  margin-bottom: 0;
}

.crp-related-service-box h2,
.crp-blog-cta-box h2 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 14px;
}

/* =========================================================
   8. FAQ SECTION INSIDE POST CONTENT
========================================================= */

.crp-blog-content h2#frequently-asked-questions {
  padding-top: 8px;
  border-top: 1px solid rgba(11, 31, 51, 0.08);
}

.crp-blog-content h2#frequently-asked-questions + h3,
.crp-blog-content h3 + p + h3 {
  margin-top: 22px;
}

.crp-blog-content h2#frequently-asked-questions ~ h3 {
  padding: 18px 20px 0;
  margin-bottom: 8px;
  background: #ffffff;
  border-left: 4px solid #00a6a6;
  border-radius: 14px 14px 0 0;
}

.crp-blog-content h2#frequently-asked-questions ~ h3 + p {
  padding: 0 20px 18px;
  margin-bottom: 14px;
  background: #ffffff;
  border-left: 4px solid #00a6a6;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.05);
}

/* =========================================================
   9. ARTICLE CTA BUTTON
========================================================= */

.crp-blog-cta-box p:empty,
.crp-blog-cta-box br {
  display: none !important;
}

.crp-blog-content .crp-blog-cta-box .hero-button {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 260px !important;
  max-width: 100% !important;
  min-height: 54px !important;
  padding: 15px 28px !important;
  margin: 8px 0 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00a6a6, #007f83) !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: normal !important;
  box-shadow: 0 14px 28px rgba(0, 166, 166, 0.22) !important;
  transform: none !important;
}

.crp-blog-content .crp-blog-cta-box .hero-button::before,
.crp-blog-content .crp-blog-cta-box .hero-button::after {
  display: none !important;
  content: none !important;
}

.crp-blog-content .crp-blog-cta-box .hero-button:hover,
.crp-blog-content .crp-blog-cta-box .hero-button:focus {
  background: linear-gradient(135deg, #007f83, #005f63) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* =========================================================
   10. RELATED SERVICES BOX BELOW ARTICLE
========================================================= */

.crp-blog-related-services {
  margin: 44px 0 0;
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.12), transparent 36%),
    #f4fbfc;
  border: 1px solid rgba(0, 166, 166, 0.22);
  border-left: 7px solid #00a6a6;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.07);
}

.crp-blog-related-services h2 {
  margin: 0 0 12px;
  color: #0b1f33;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.crp-blog-related-services p {
  margin: 0 0 20px;
  color: #415164;
  font-size: 17px;
  line-height: 1.65;
}

.crp-related-service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.crp-related-service-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 51, 0.12);
  color: #0b1f33;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(11, 31, 51, 0.06);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.crp-related-service-grid a::before {
  content: "✓";
  color: #00a6a6;
  font-weight: 950;
  margin-right: 8px;
}

.crp-related-service-grid a:hover {
  background: #00a6a6;
  color: #ffffff;
  transform: translateY(-1px);
}

.crp-related-service-grid a:hover::before {
  color: #ffffff;
}

/* =========================================================
   11. SIDEBAR CARDS
========================================================= */

.crp-blog-sidebar {
  position: sticky;
  top: 118px;
}

.crp-sidebar-card {
  margin-bottom: 22px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
}

.crp-sidebar-cta {
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.13), transparent 42%),
    #ffffff;
}

.crp-sidebar-kicker {
  display: inline-block;
  margin: 0 0 10px !important;
  color: #007f83 !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crp-sidebar-card h2 {
  margin: 0 0 12px;
  color: #0b1f33;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.crp-sidebar-card p {
  margin: 0 0 16px;
  color: #415164;
  font-size: 16px;
  line-height: 1.65;
}

.crp-sidebar-card .hero-button,
.crp-sidebar-card .hero-button-secondary,
.crp-sidebar-card .crp-sidebar-btn {
  display: flex !important;
  width: 100% !important;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin: 12px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 999px !important;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  white-space: normal;
  box-sizing: border-box;
  transform: none !important;
}

.crp-sidebar-card .hero-button::before,
.crp-sidebar-card .hero-button::after,
.crp-sidebar-card .hero-button-secondary::before,
.crp-sidebar-card .hero-button-secondary::after {
  display: none !important;
  content: none !important;
}

.crp-sidebar-card .hero-button {
  background: linear-gradient(135deg, #00a6a6, #007f83) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 12px 24px rgba(0, 166, 166, 0.2);
}

.crp-sidebar-card .hero-button-secondary {
  background: #0b1f33 !important;
  color: #ffffff !important;
  border: 2px solid rgba(11, 31, 51, 0.18) !important;
  box-shadow: none !important;
}

.crp-sidebar-card .hero-button:hover,
.crp-sidebar-card .hero-button-secondary:hover {
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

.crp-sidebar-note {
  background: #f4fbfc;
  border-color: rgba(0, 166, 166, 0.22);
}

/* =========================================================
   12. SIDEBAR SERVICE LINKS
========================================================= */

.crp-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crp-sidebar-links li {
  margin: 0;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

.crp-sidebar-links li:last-child {
  border-bottom: 0;
}

.crp-sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  color: #0b1f33;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.crp-sidebar-links a::after {
  content: "›";
  color: #00a6a6;
  font-size: 20px;
  line-height: 1;
}

.crp-sidebar-links a:hover {
  color: #007f83;
}

/* =========================================================
   13. BOTTOM CTA SECTION
========================================================= */

.crp-blog-bottom-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(47, 90, 174, 0.18), transparent 32%),
    linear-gradient(135deg, #061522, #0b1f33);
  color: #ffffff;
  padding: 72px 20px 88px;
  text-align: center;
  border-top: 5px solid #00a6a6;
}

.crp-blog-bottom-cta .crp-blog-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.crp-blog-bottom-cta h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-align: center;
}

.crp-blog-bottom-cta p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  text-align: center;
}

.crp-blog-bottom-cta .hero-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.crp-blog-bottom-cta .hero-button,
.crp-blog-bottom-cta .hero-button-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 15px 26px !important;
  border-radius: 999px !important;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  transform: none !important;
}

.crp-blog-bottom-cta .hero-button::before,
.crp-blog-bottom-cta .hero-button::after,
.crp-blog-bottom-cta .hero-button-secondary::before,
.crp-blog-bottom-cta .hero-button-secondary::after {
  display: none !important;
  content: none !important;
}

.crp-blog-bottom-cta .hero-button {
  background: linear-gradient(135deg, #00a6a6, #007f83) !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 14px 28px rgba(0, 166, 166, 0.28);
}

.crp-blog-bottom-cta .hero-button-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow: none !important;
}

.crp-blog-bottom-cta .hero-button:hover,
.crp-blog-bottom-cta .hero-button-secondary:hover {
  transform: translateY(-2px) !important;
  color: #ffffff !important;
}

/* =========================================================
   14. BLOG ARCHIVE STYLES
========================================================= */

.crp-blog-archive-main {
  background: #ffffff;
  color: #0b1f33;
  overflow-x: hidden;
}

.crp-blog-archive-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.crp-blog-archive-hero {
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(47, 90, 174, 0.18), transparent 34%),
    linear-gradient(135deg, #061522, #0b1f33);
  color: #ffffff;
  padding: 76px 0 68px;
  text-align: center;
  border-bottom: 5px solid #00a6a6;
}

.crp-blog-archive-hero .section-eyebrow,
.crp-blog-archive-cta .section-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: #8ff7f7;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.crp-blog-archive-hero h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.crp-blog-archive-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.crp-blog-archive-section {
  padding: 58px 0 76px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 65%, #f4fbfc 100%);
}

.crp-blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.crp-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 51, 0.10);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.08);
}

.crp-blog-card-image {
  display: block;
  background: #f4fbfc;
}

.crp-blog-card-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.crp-blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.crp-blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
  color: #007f83;
  font-size: 13px;
  font-weight: 900;
}

.crp-blog-card h2 {
  margin: 0 0 12px;
  color: #0b1f33;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.crp-blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.crp-blog-card h2 a:hover {
  color: #007f83;
}

.crp-blog-card p {
  margin: 0 0 16px;
  color: #415164;
  font-size: 16px;
  line-height: 1.65;
}

.crp-blog-card-location {
  margin: auto 0 16px;
  padding: 10px 12px;
  background: #f4fbfc;
  border-left: 4px solid #00a6a6;
  border-radius: 12px;
  color: #243447;
  font-size: 14px;
  font-weight: 850;
}

.crp-blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00a6a6, #007f83);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 166, 166, 0.20);
}

.crp-blog-read-more:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.crp-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.crp-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 51, 0.12);
  color: #0b1f33;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(11, 31, 51, 0.06);
}

.crp-blog-pagination .page-numbers.current,
.crp-blog-pagination .page-numbers:hover {
  background: #00a6a6;
  color: #ffffff;
}

.crp-blog-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px;
  background: #f4fbfc;
  border-left: 7px solid #00a6a6;
  border-radius: 22px;
  text-align: center;
}

.crp-blog-empty h2 {
  margin: 0 0 12px;
  color: #0b1f33;
  font-size: 32px;
  font-weight: 950;
}

.crp-blog-empty p {
  margin: 0;
  color: #415164;
  font-size: 18px;
}

.crp-blog-archive-cta {
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(47, 90, 174, 0.18), transparent 32%),
    linear-gradient(135deg, #061522, #0b1f33);
  color: #ffffff;
  padding: 70px 20px 82px;
  text-align: center;
  border-top: 5px solid #00a6a6;
}

.crp-blog-archive-cta h2 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.crp-blog-archive-cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.65;
}

.crp-blog-archive-cta .hero-buttons {
  display: flex;
  justify-content: center;
}

.crp-blog-archive-cta .hero-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 56px;
  padding: 15px 26px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00a6a6, #007f83) !important;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 950;
  text-decoration: none !important;
}

.crp-blog-archive-cta .hero-button::before,
.crp-blog-archive-cta .hero-button::after {
  display: none !important;
  content: none !important;
}

/* =========================================================
   15. RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
  .crp-blog-layout {
    grid-template-columns: 1fr;
  }

  .crp-blog-sidebar {
    position: static;
    top: auto;
    order: 2;
  }

  .crp-blog-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .crp-blog-map-wrap {
    grid-template-columns: 1fr;
  }

  .crp-blog-map-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  html {
    scroll-padding-top: 95px;
  }

  body.single-post .crp-blog-main,
  body.single-post .crp-blog-content-section,
  body.single-post .crp-blog-layout,
  body.single-post .crp-blog-content-wrap,
  body.single-post .crp-blog-content,
  body.single-post .crp-blog-sidebar,
  body.single-post .crp-blog-bottom-cta {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  body.single-post .crp-blog-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  body.single-post .crp-blog-hero {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 42px 0 38px !important;
    background:
      radial-gradient(circle at top left, rgba(0, 166, 166, 0.22), transparent 36%),
      linear-gradient(135deg, #061522, #0b1f33) !important;
    color: #ffffff !important;
  }

  body.single-post .crp-blog-breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 0 0 16px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.78) !important;
  }

  body.single-post .crp-blog-breadcrumb a,
  body.single-post .crp-blog-breadcrumb span {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  body.single-post .crp-blog-hero .section-eyebrow {
    display: block !important;
    margin: 0 0 12px !important;
    color: #8ff7f7 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
  }

  body.single-post .crp-blog-hero h1 {
    max-width: 100% !important;
    margin: 0 0 16px !important;
    color: #ffffff !important;
    font-size: clamp(32px, 10vw, 46px) !important;
    line-height: 1.06 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  body.single-post .crp-blog-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 8px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 750 !important;
  }

  body.single-post .crp-blog-map-section {
    padding: 32px 0 !important;
  }

  body.single-post .crp-blog-map-content {
    padding: 22px 18px !important;
  }

  body.single-post .crp-blog-content-section {
    padding: 30px 0 48px !important;
    background: #ffffff !important;
  }

  body.single-post .crp-blog-layout {
    display: block !important;
  }

  body.single-post .crp-blog-content {
    font-size: 17px !important;
    line-height: 1.72 !important;
    color: #243447 !important;
  }

  body.single-post .crp-blog-content p {
    margin: 0 0 19px !important;
  }

  body.single-post .crp-blog-content h2 {
    scroll-margin-top: 110px !important;
    margin: 34px 0 13px !important;
    color: #0b1f33 !important;
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.14 !important;
    font-weight: 950 !important;
    letter-spacing: -0.025em !important;
  }

  body.single-post .crp-blog-content h3 {
    margin: 24px 0 8px !important;
    color: #0b1f33 !important;
    font-size: 21px !important;
    line-height: 1.2 !important;
    font-weight: 925 !important;
  }

  body.single-post .crp-blog-toc,
  body.single-post .crp-quick-answer,
  body.single-post .crp-related-service-box,
  body.single-post .crp-blog-cta-box,
  body.single-post .crp-blog-related-services,
  body.single-post .crp-sidebar-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px 0 !important;
    padding: 20px 18px !important;
    border-left-width: 5px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  body.single-post .crp-blog-toc ol {
    list-style: none !important;
    counter-reset: crp-toc-counter;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 10px !important;
  }

  body.single-post .crp-blog-toc li {
    counter-increment: crp-toc-counter;
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  body.single-post .crp-blog-toc li::before {
    content: counter(crp-toc-counter);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 999px !important;
    background: #00a6a6 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
  }

  body.single-post .crp-blog-toc a {
    display: block !important;
    color: #0b1f33 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    overflow-wrap: anywhere !important;
  }

  body.single-post .crp-blog-content .crp-blog-cta-box .hero-button,
  body.single-post .crp-sidebar-card .hero-button,
  body.single-post .crp-sidebar-card .hero-button-secondary,
  body.single-post .crp-blog-bottom-cta .hero-button,
  body.single-post .crp-blog-bottom-cta .hero-button-secondary {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    font-size: 16px !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }

  body.single-post .crp-related-service-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px;
  }

  body.single-post .crp-related-service-grid a {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 13px 15px;
    font-size: 15px;
    border-radius: 14px !important;
    overflow-wrap: anywhere;
  }

  body.single-post .crp-blog-sidebar {
    position: static !important;
    margin-top: 34px !important;
  }

  body.single-post .crp-blog-bottom-cta {
    padding: 48px 16px 70px !important;
  }

  body.single-post .crp-blog-bottom-cta h2 {
    font-size: clamp(29px, 9vw, 40px) !important;
    line-height: 1.07 !important;
  }

  body.single-post .crp-blog-bottom-cta p {
    font-size: 16.5px !important;
    line-height: 1.6 !important;
  }

  body.single-post .crp-blog-bottom-cta .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .crp-blog-archive-container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .crp-blog-archive-hero {
    padding: 48px 0 42px;
  }

  .crp-blog-archive-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .crp-blog-archive-hero p {
    font-size: 17px;
    line-height: 1.6;
  }

  .crp-blog-archive-section {
    padding: 34px 0 52px;
  }

  .crp-blog-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .crp-blog-card-body {
    padding: 21px 18px;
  }

  .crp-blog-card h2 {
    font-size: 24px;
  }

  .crp-blog-card-image img {
    height: 190px;
  }

  .crp-blog-read-more {
    width: 100%;
  }

  .crp-blog-archive-cta {
    padding: 52px 18px 70px;
  }

  .crp-blog-archive-cta h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .crp-blog-archive-cta p {
    font-size: 16.5px;
  }

  .crp-blog-archive-cta .hero-button {
    width: min(100%, 340px) !important;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  body.single-post .crp-blog-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  body.single-post .crp-blog-hero h1 {
    font-size: 30px !important;
  }

  body.single-post .crp-blog-content {
    font-size: 16.5px !important;
  }

  body.single-post .crp-blog-toc,
  body.single-post .crp-quick-answer,
  body.single-post .crp-related-service-box,
  body.single-post .crp-blog-cta-box,
  body.single-post .crp-blog-related-services,
  body.single-post .crp-sidebar-card {
    padding: 18px 15px !important;
  }
}



/* CRP BLOG STYLE TEST */
.crp-blog-hero {
  background: #061522 !important;
  padding: 90px 20px !important;
  color: #ffffff !important;
}

.crp-blog-hero h1 {
  color: #ffffff !important;
  font-size: 60px !important;
}

.crp-blog-toc {
  background: #f4fbfc !important;
  border-left: 8px solid #00a6a6 !important;
  padding: 30px !important;
}