/* ============================================================
   HOME PAGE STYLES
   Theme: Red (#E8312A) + Light Blue (#1A6FB4)
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */

.cp-hero {
  background: linear-gradient(135deg, #dce9f7 0%, #e8f0fd 50%, #edf3f7 100%);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* ---- LEFT ---- */
.cp-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: heroFadeUp 0.7s ease both;
}

.cp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #c8dff5;
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  width: fit-content;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  animation: heroFadeUp 0.7s 0.1s ease both;
}

.cp-hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0;
  animation: heroFadeUp 0.7s 0.18s ease both;
}

.cp-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 480px;
  margin: 0;
  animation: heroFadeUp 0.7s 0.26s ease both;
}

.cp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s 0.34s ease both;
}

.cp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  background: #F45C1C;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(244, 92, 28, 0.35);
}

.cp-hero-btn-primary:hover {
  background: #d94e12;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 92, 28, 0.40);
}

.cp-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: #ffffff;
  color: #374151;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid #d1d5db;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cp-hero-btn-secondary:hover {
  border-color: #1A6FB4;
  color: #1A6FB4;
  transform: translateY(-2px);
}

/* ---- RIGHT ---- */
.cp-hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroFadeRight 0.8s 0.15s ease both;
}

.cp-hero-photo-wrap {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
  position: relative;
}

.cp-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback placeholder */
.cp-photo-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
}

.cp-ph-bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.cp-ph-block { position: absolute; }

.cp-ph-teal {
  width: 55%;
  height: 60%;
  top: 0;
  right: 0;
  background: #1A6FB4;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cp-ph-orange {
  width: 35%;
  height: 40%;
  top: 0;
  right: 30%;
  background: #F4A007;
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}

.cp-ph-coral {
  width: 45%;
  height: 50%;
  bottom: 0;
  right: 0;
  background: #E8312A;
  clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 100%);
}

.cp-ph-people {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 0 40px;
}

.cp-ph-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cp-ph-head {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #D4A574;
  border: 3px solid #fff;
}

.cp-ph-head-dark { background: #6B3F22; }

.cp-ph-body {
  width: 90px;
  height: 120px;
  border-radius: 12px 12px 0 0;
}

.cp-ph-body-grey  { background: #6b7280; }
.cp-ph-body-white { background: #f9fafb; border: 2px solid #e5e7eb; }

.cp-ph-stethoscope {
  position: absolute;
  bottom: 80px;
  width: 28px;
  height: 28px;
  border: 3px solid #374151;
  border-radius: 50%;
  right: 50px;
}

/* Rating card */
.cp-rating-card {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  animation: heroFadeUp 0.7s 0.55s ease both;
}

.cp-rating-icon {
  width: 40px;
  height: 40px;
  background: #FFF8E8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-rating-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cp-rating-stars { display: flex; gap: 1px; }

.cp-rating-score {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.cp-rating-count {
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

/* Animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .cp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px 60px;
    text-align: center;
  }
  .cp-hero-left   { align-items: center; }
  .cp-hero-sub    { max-width: 100%; }
  .cp-hero-btns   { justify-content: center; }
  .cp-hero-right  { justify-content: center; }
  .cp-hero-photo-wrap { max-width: 420px; }
  .cp-rating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .cp-hero-headline { font-size: 28px; }
  .cp-hero-btns { flex-direction: column; width: 100%; }
  .cp-hero-btn-primary,
  .cp-hero-btn-secondary { justify-content: center; width: 100%; }
  .cp-hero-photo-wrap { max-width: 100%; }
  .cp-trust-badge {
    font-size: 11.5px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================================
   WHO WE SERVE SECTION
   ============================================================ */

.wws-section {
  padding: 72px 24px 80px;
  background: #ffffff;
}

.wws-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wws-header {
  text-align: center;
  margin-bottom: 48px;
}

.wws-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.wws-subtitle {
  font-size: 15px;
  color: #64748b;
  font-weight: 400;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.wws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wws-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 26px 30px;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.wws-card:hover {
  border-color: #99c0e8;
  box-shadow: 0 8px 28px rgba(26, 111, 180, 0.09);
  transform: translateY(-3px);
}

.wws-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.wws-card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748b;
  font-weight: 400;
}

@media (max-width: 900px) {
  .wws-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 560px) {
  .wws-section { padding: 52px 20px 60px; }
  .wws-grid    { grid-template-columns: 1fr; gap: 14px; }
  .wws-title   { font-size: 26px; }
}

/* ============================================================
   OUR SERVICES SECTION
   ============================================================ */

.os-section {
  padding: 72px 24px 80px;
  background: linear-gradient(135deg, #dce9f7 0%, #e8f0fd 50%, #edf3f7 100%);
}

.os-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.os-header {
  text-align: center;
  margin-bottom: 44px;
}

.os-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.os-subtitle {
  font-size: 15px;
  color: #64748b;
  font-weight: 400;
  line-height: 1.6;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.os-card {
  background: #ffffff;
  border: 1px solid #e8f0f7;
  border-radius: 14px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.os-card:hover {
  border-color: #99c0e8;
  box-shadow: 0 8px 28px rgba(26, 111, 180, 0.11);
  transform: translateY(-3px);
}

.os-icon {
  width: 48px;
  height: 48px;
  background: #E8312A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.os-icon svg { width: 22px; height: 22px; }

.os-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.os-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

.os-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #1A6FB4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.os-card:hover .os-card-link { gap: 8px; }

@media (max-width: 1024px) { .os-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  {
  .os-grid  { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .os-title { font-size: 28px; }
}
@media (max-width: 560px)  {
  .os-section { padding: 52px 18px 60px; }
  .os-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .os-title   { font-size: 24px; }
  .os-icon    { width: 42px; height: 42px; border-radius: 10px; }
  .os-icon svg { width: 19px; height: 19px; }
}

/* ============================================================
   WHY CHOOSE CAREPORT SECTION
   ============================================================ */

.wcc-section {
  padding: 72px 24px 80px;
  background: #ffffff;
}

.wcc-inner {
  max-width: 960px;
  margin: 0 auto;
}

.wcc-header {
  text-align: center;
  margin-bottom: 56px;
}

.wcc-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.wcc-subtitle {
  font-size: 15px;
  color: #64748b;
  font-weight: 400;
}

.wcc-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-bottom: 48px;
}

.wcc-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  max-width: 640px;
  margin: 0 auto;
}

.wcc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.wcc-icon {
  width: 64px;
  height: 64px;
  background: #E8312A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcc-item:hover .wcc-icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(232, 49, 42, 0.30);
}

.wcc-icon svg { width: 26px; height: 26px; }

.wcc-item-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}

.wcc-item-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748b;
  font-weight: 400;
  max-width: 240px;
  margin: 0;
}

@media (max-width: 768px) {
  .wcc-grid-top    { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .wcc-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .wcc-title       { font-size: 28px; }
}

@media (max-width: 480px) {
  .wcc-section     { padding: 52px 20px 60px; }
  .wcc-grid-top    { grid-template-columns: 1fr; gap: 36px; }
  .wcc-grid-bottom { grid-template-columns: 1fr; }
  .wcc-item-desc   { max-width: 100%; }
  .wcc-title       { font-size: 24px; }
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */

.hiw-section {
  padding: 72px 24px 80px;
  background: linear-gradient(135deg, #dce9f7 0%, #e8f0fd 50%, #edf3f7 100%);
}

.hiw-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.hiw-header {
  text-align: center;
  margin-bottom: 56px;
}

.hiw-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hiw-subtitle {
  font-size: 15px;
  color: #64748b;
  font-weight: 400;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #1A6FB4;
  z-index: 0;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.hiw-circle {
  width: 64px;
  height: 64px;
  background: #E8312A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  border: 4px solid #e8f0fd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-step:hover .hiw-circle {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(232, 49, 42, 0.32);
}

.hiw-step-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hiw-step-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.hiw-step-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748b;
  font-weight: 400;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .hiw-steps::before { display: none; }
  .hiw-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hiw-section   { padding: 52px 20px 60px; }
  .hiw-steps     { grid-template-columns: 1fr; gap: 40px; }
  .hiw-step-desc { max-width: 100%; }
  .hiw-title     { font-size: 24px; }
}

/* ============================================================
   WHAT FAMILIES SAY SECTION
   ============================================================ */

.wfs-section {
  padding: 72px 24px 80px;
  background: #ffffff;
}

.wfs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.wfs-header {
  text-align: center;
  margin-bottom: 48px;
}

.wfs-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.wfs-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.wfs-stars { display: flex; gap: 3px; }

.wfs-stars svg,
.wfs-card-stars svg { width: 18px; height: 18px; }

.wfs-stars svg { width: 20px; height: 20px; }

.star-filled { fill: #F4A007; }

.wfs-score {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.wfs-count {
  font-size: 13.5px;
  color: #64748b;
  text-align: center;
}

.wfs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.wfs-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 26px 30px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.wfs-card:hover {
  border-color: #fcd87e;
  box-shadow: 0 8px 28px rgba(244, 160, 7, 0.09);
  transform: translateY(-3px);
}

.wfs-card-stars { display: flex; gap: 3px; }

.wfs-quote {
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.wfs-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wfs-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.wfs-author-tag {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 400;
}

.wfs-cta {
  display: flex;
  justify-content: center;
}

.wfs-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #1A6FB4;
  border: 1.5px solid #1A6FB4;
  border-radius: 8px;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.wfs-btn:hover {
  background: #1A6FB4;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .wfs-grid    { grid-template-columns: 1fr; gap: 16px; }
  .wfs-title   { font-size: 26px; }
  .wfs-section { padding: 52px 20px 60px; }
}

/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */

.sa-section {
  padding: 72px 24px 80px;
  background: linear-gradient(135deg, #dce9f7 0%, #e8f0fd 50%, #edf3f7 100%);
  font-family: 'DM Sans', sans-serif;
}

.sa-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sa-header {
  text-align: center;
  margin-bottom: 48px;
}

.sa-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sa-subtitle {
  font-size: 15px;
  color: #64748b;
  font-weight: 400;
  line-height: 1.6;
}

.sa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.sa-card {
  background: #ffffff;
  border: 1px solid #e8f0f7;
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sa-card:hover {
  border-color: #99c0e8;
  box-shadow: 0 8px 28px rgba(26, 111, 180, 0.11);
  transform: translateY(-4px);
}

.sa-icon {
  width: 52px;
  height: 52px;
  background: #EBF4FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sa-card:hover .sa-icon {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 111, 180, 0.22);
}

.sa-icon svg { width: 22px; height: 22px; }

.sa-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}

.sa-card-areas {
  font-size: 13.5px;
  line-height: 1.7;
  color: #64748b;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .sa-grid  { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .sa-title { font-size: 28px; }
}

@media (max-width: 560px) {
  .sa-section { padding: 52px 20px 60px; }
  .sa-grid    { grid-template-columns: 1fr; gap: 14px; }
  .sa-title   { font-size: 24px; }
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */

.cta-section {
  padding: 64px 24px;
  background: linear-gradient(135deg, #1A6FB4 0%, #1A4FA0 100%);
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin: 0;
}

.cta-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

.cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.cta-btn-outline svg { width: 15px; height: 15px; flex-shrink: 0; }

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #E8312A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(232, 49, 42, 0.40);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cta-btn-primary:hover {
  background: #c9271f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 49, 42, 0.45);
}

@media (max-width: 560px) {
  .cta-section { padding: 52px 20px; }
  .cta-btns    { flex-direction: column; width: 100%; }
  .cta-btn-outline,
  .cta-btn-primary { justify-content: center; width: 100%; }
}


.cp-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #dce9f7 0%, #e8f0fd 50%, #edf3f7 100%);
}
 
.cp-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  background: #cfe0f0; /* shows while loading / if broken */
}