:root {
  --primary-gold: #e5b567;
  --primary-gold-hover: #f3c87a;

  --dark-main: #0b0b0b;
  --dark-secondary: #111111;
  --dark-card: rgba(15, 15, 15, 0.85);

  --text-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #cfcfcf;
  --text-dim: #888888;

  --border-gold: rgba(229, 181, 103, 0.4);
  --border-soft: rgba(229, 181, 103, 0.2);

  --gold-gradient: linear-gradient(90deg, #e5b567, #f3c87a);
  --dark-gradient: linear-gradient(90deg, #0b0b0b, #111111);

  --gold-glow: 0 0 20px rgba(229, 181, 103, 0.4);
  --soft-glow: 0 0 40px rgba(229, 181, 103, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark);
  color: white;
  overflow-x: hidden;
  background: #f8f6f3;
  /* adjust based on navbar height */
}

/* --- Hero Container --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* --- Background Layer --- */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Image positioning: 60% from the right */
  background-image: url("../image/cp-hero.webp");
  background-size: cover;
  background-position: 45% center;
  z-index: 1;
}

/* Dark overlay to keep text readable on all screens */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 1) 0%,
    rgba(5, 5, 5, 0.9) 30%,
    rgba(5, 5, 5, 0) 70%
  );
  z-index: 2;
}

/* --- Content Layout --- */
.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8% 8%;
  z-index: 5;
}

.text-area {
  max-width: 600px;
}

.tagline {
  color: #e5b567;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem); /* Dynamic resizing */
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

h1 span {
  color: #e5b567;
}

.description {
  color: #d3cccc;
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 480px;
}

.cta-group {
  display: flex;
  gap: 15px;
}

.btn-fill,
.btn-outline {
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-fill {
  background: linear-gradient(90deg, #e5b567, #d89c5a);
  color: black;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  color: white;
}

/* --- Hover Effects --- */

/* Base Hover for both buttons */
.btn-fill:hover,
.btn-outline:hover {
  transform: translateY(-3px); /* Subtle lift effect */
  box-shadow: 0 10px 20px rgba(196, 107, 45, 0.15); /* Soft themed glow */
}

/* Specific for Outline Button */
.btn-outline {
  background-color: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
  color: white;
}

/* Active State (When clicked) */
.btn-fill:active,
.btn-outline:active {
  transform: translateY(-1px); /* Pushes down slightly when clicked */
}
/* --- Tablet & Mobile Breakpoints --- */
@media (max-width: 1024px) {
  .hero-bg {
    background-position: 75% center;
  } /* Shift image slightly for tablets */
}

@media (max-width: 768px) {
  .nav-links,
  .btn-nav {
    display: none;
  } /* Hide complex nav elements */

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.8) 0%,
      rgba(5, 5, 5, 0.4) 50%,
      rgba(5, 5, 5, 0.9) 100%
    );
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-content {
    justify-content: center;
    text-align: center;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-fill,
  .btn-outline {
    width: 100%;
    max-width: 320px;
  }
}

/* our care programs section */

.container {
  width: 1200px;
  max-width: 95%;
  margin: auto;
  margin-top: 20px;
}

/* HEADER */
/* --- Programs Header Modern Styling --- */

.programs-header {
  padding: 0px 40px;
  padding-top: 40px;
  font-family: "Inter", sans-serif; /* Recommended for that premium SaaS look */
}

.header-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Aligns content to the bottom for a modern baseline */
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

/* Column 1: Title */
.title-col {
  flex: 0 0 40%; /* Gives the title a bit more breathing room */
  padding-top: 20px;
}

.title-col .tag {
  color: var(--primary-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.title-col h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0;
}

.title-col h2 span {
  color: var(--primary-gold);
}

/* Column 2: Description */
.description-col {
  flex: 0 0 25%;
  padding-bottom: 8px; /* Alignment adjustment */
}

.description-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Column 3: Guidance CTA Box */
.guidance-col {
  flex: 0 0 25%;
}

.cta-box {
  background: #fdfaf8; /* Matches your light cream brand color */
  border: 1px solid #f0e6df;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 107, 45, 0.08);
}

.cta-box p {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.cta-box a {
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .header-flex-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .title-col,
  .description-col,
  .guidance-col {
    flex: 0 0 100%;
    width: 100%;
  }

  .title-col h2 {
    font-size: 32px;
  }

  .cta-box {
    text-align: left;
    padding: 20px;
  }
}

/* CARDS */
/* --- Cards Grid --- */
#cp-services {
  scroll-margin-top: 120px;
}
.cp-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;

  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* --- Card --- */
.cp-card {
  background: linear-gradient(180deg, #ffffff, hsl(36, 63%, 88%));
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid #f0e6df;

  transition: all 0.35s ease;
}

/* PREMIUM HOVER (subtle lift, not zoom) */
.cp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* --- Content --- */
.cp-card-content {
  position: relative;
  z-index: 5;
  width: 60%;
}

/* Title */
.cp-card-content h3 {
  font-size: 1.2rem;
  margin: 8px 0;
  color: #111;
}

/* Description */
.cp-card-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Link */
.cp-card-content a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

/* --- Icon --- */
.cp-icon {
  width: 64px;
  height: 64px;
  border: 1px solid #eaded5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.cp-icon::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #f8dccb 0%, #fff6f0 100%);
  z-index: 1;
}

/* SVG */
.cp-icon svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  color: #1a1a1a;
  transition: transform 0.3s ease;
}

.cp-card:hover .cp-icon svg {
  transform: scale(1.08);
}

/* IMAGE */
.cp-card-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;

  width: 42%;
  z-index: 1;

  overflow: hidden;

  transition: width 0.45s ease;
}

.cp-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0)
  );

  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0)
  );
}

/* BIGGER IMAGE ON HOVER */
.cp-card:hover .cp-card-image {
  width: 58%;
}

.cp-card {
  text-decoration: none;
  color: inherit;

  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.cp-card-link {
  color: var(--primary-gold);
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: gap 0.3s ease;
}

.cp-card:hover .cp-card-link {
  gap: 10px;
}








/* --- Header alignment fix --- */
.programs-header {
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .cp-cards {
    grid-template-columns: repeat(2, 1fr);

    margin: 20px;
  }
}

@media (max-width: 600px) {
  .cp-cards {
    grid-template-columns: 1fr;
  }

  .cp-card {
    flex-direction: column;
  }

  .cp-card-content,
  .cp-card-image {
    width: 50%;
  }
}

/* Why Choose Us */

/* --- Banner --- */
.cp-trust-banner {
  background: linear-gradient(180deg, #121212, #0d0d0d);
  border-radius: 24px;
  padding: 20px 40px;
  margin: 20px 50px;
  color: white;
  font-family: "Inter", sans-serif;

  /* Premium depth */
  border: 1px solid rgba(229, 181, 103, 0.12);
}

/* Layout */
.cp-banner-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* --- Headline --- */
.cp-headline-group {
  flex: 0 0 320px;
}

.cp-sub-label {
  color: var(--primary-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  display: block;
}

.cp-main-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 600;
  color: #ffffff;
}

.highlight {
  color: var(--primary-gold);
}

/* --- Features --- */
.cp-features-row {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 20px;
}

/* Each feature */
.cp-feature-item {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

/* Subtle hover card feel */
.cp-feature-item:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}

/* Icon */
.cp-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  /* Premium gold tint */
  background: radial-gradient(
    circle,
    rgba(229, 181, 103, 0.2),
    transparent 70%
  );
  color: var(--primary-gold);
}

/* Title */
.cp-feature-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

/* Description */
.cp-feature-item p {
  font-size: 13px;
  color: #9a9a9a;
  line-height: 1.5;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .cp-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .cp-features-row {
    flex-wrap: wrap;
  }
  .cp-feature-item {
    flex: 0 0 45%;
  }
  .cp-headline-group {
    flex: 0 0 100px;
  }
  .cp-feature-item p {
    font-size: 12px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .cp-headline-group {
    flex: 0 0 100%;
    text-align: center; /* optional but looks better */
  }
  .cp-feature-item p {
    font-size: 12px;
  }
  .cp-trust-banner {
    margin: 20px;
    padding: 15px;
  }
}

/* ================= SECTION WRAPPER ================= */
/* ================= ULTRA PREMIUM FULL DARK RECOVERY SECTION ================= */

.cp-recovery-container {
  display: flex;
  max-width: 1500px;
  margin: 20px 50px;

  position: relative;
  overflow: hidden;

  border-radius: 34px;
  padding: 45px;

  /* FULL DARK LUXURY BACKGROUND */
  background: linear-gradient(145deg, #0f0f0f, #171717, #1d1d1d);

  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* GOLD AMBIENT GLOW */

.cp-recovery-container::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  right: -100px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(229, 181, 103, 0.16),
    transparent 70%
  );

  z-index: 0;
}

/* SOFT ORANGE GLOW */

.cp-recovery-container::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  bottom: -140px;
  left: -80px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(196, 107, 45, 0.12),
    transparent 70%
  );

  z-index: 0;
}

/* CONTENT ABOVE EFFECTS */

.cp-recovery-info,
.cp-process-steps {
  position: relative;
  z-index: 2;
}

/* ================= LEFT SIDE ================= */

.cp-recovery-info {
  flex: 0 0 35%;
  padding-right: 45px;

  position: relative;
}

/* PREMIUM GLASS PANEL */

.cp-recovery-info::before {
  content: "";

  position: absolute;

  inset: -20px;

  border-radius: 28px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );

  border: 1px solid rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(12px);

  z-index: -1;
}

/* EYEBROW */

.cp-eyebrow {
  color: #e5b567;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;

  display: inline-block;

  margin-bottom: 20px;
}

/* TITLE */

.cp-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;

  margin-bottom: 22px;

  color: #ffffff;

  letter-spacing: -1px;
}

.cp-title span {
  color: #e5b567;
}

/* DESCRIPTION */

.cp-description1 {
  font-size: 15px;
  color: #a8a8a8;

  margin-bottom: 34px;

  line-height: 1.9;
}

/* ================= BUTTON ================= */

.cp-btn-primary {
  background: linear-gradient(135deg, #c46b2d, #e5b567);

  color: white;

  padding: 15px 30px;

  border-radius: 16px;

  text-decoration: none;

  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition: all 0.35s ease;

  box-shadow: 0 12px 28px rgba(196, 107, 45, 0.28);
}

.cp-btn-primary:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(196, 107, 45, 0.35);
}

/* ================= RIGHT PROCESS AREA ================= */

.cp-process-steps {
  flex: 0 0 65%;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  position: relative;

  padding: 36px 20px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(16px);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* CONNECTOR LINE */

.cp-process-steps::before {
  content: "";

  position: absolute;

  top: 78px;
  left: 10%;
  right: 10%;

  border-top: 2px dashed rgba(229, 181, 103, 0.22);

  z-index: 1;
}

/* ================= STEP ITEM ================= */

.cp-step-item {
  flex: 1;

  text-align: center;

  position: relative;
  z-index: 2;
}

/* ICON BOX */

.cp-icon-circle {
  width: 90px;
  height: 90px;

  margin: 0 auto 28px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  color: #e5b567;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);

  transition: all 0.35s ease;
}

/* INNER GLOW */

.cp-icon-circle::before {
  content: "";

  position: absolute;

  inset: 10px;

  border-radius: 18px;

  background: radial-gradient(
    circle,
    rgba(229, 181, 103, 0.15),
    transparent 70%
  );
}

/* HOVER */

.cp-step-item:hover .cp-icon-circle {
  transform: translateY(-8px);

  border-color: rgba(229, 181, 103, 0.3);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(229, 181, 103, 0.16);
}

/* STEP NUMBER */

.cp-step-number {
  background: linear-gradient(135deg, #c46b2d, #e5b567);

  border: 3px solid #1a1a1a;

  box-shadow: 0 8px 20px rgba(229, 181, 103, 0.28);
}

/* TEXT */

.cp-step-item h4 {
  color: #ffffff;

  font-size: 17px;
  font-weight: 600;

  margin-bottom: 12px;
}

.cp-step-item p {
  color: #a8a8a8;

  font-size: 14px;
  line-height: 1.7;

  padding: 0 12px;
}
/* --- RESPONSIVENESS CODE --- */

/* Breakpoint for Tablets and Large Mobiles (e.g., 992px) */
@media (max-width: 992px) {
  /* 1. Reset the overall section padding for a closer fit */
  .cp-recovery-section {
    padding: 0px 0px; /* Reduced vertical and horizontal padding */
  }

  /* 2. Stack the content and remove maximum width constraints */
  .cp-recovery-container {
    flex-direction: column; /* Stacks .cp-recovery-info and .cp-process-steps */
    max-width: 100%; /* Spans the full available width */
    padding: 40px; /* Internal padding of the container */
    border-radius: 20px; /* Slightly softer corners for smaller screens */
  }

  /* 3. Adjust the Left Info Side (.recovery-info) */
  .cp-recovery-info {
    flex: 0 0 100%; /* Full width */
    padding-right: 0; /* Remove right padding needed for row layout */
    text-align: center; /* Center align the text content */
    margin-bottom: 0px; /* Add space before the steps start */
  }

  /* Keep eyebrow, title, and description styled but center them */
  .cp-recovery-info .cp-eyebrow,
  .cp-recovery-info .cp-title,
  .cp-recovery-info .cp-description {
    margin-left: auto;
    margin-right: auto;
  }

  /* 4. Adjust the Process Steps Side (.process-steps) */
  .cp-process-steps {
    flex: 0 0 100%; /* Full width */
    flex-direction: column; /* Stack the step items vertically */
    gap: 40px; /* Space between each step */
    align-items: center; /* Center the step items horizontally */
  }

  /* 5. Adjust Individual Step Items (.step-item) */
  .cp-step-item {
    width: 100%; /* Full width for the text to wrap */
    max-width: 400px; /* Prevent it from getting too wide on tablets */
  }

  /* Increase bottom margin of icon on tablet for clarity */
  .cp-icon-circle {
    margin: 0 auto 20px;
  }

  /* 6. Fix the Connector Line (IMPORTANT) */
  /* On mobile/vertical layout, the line must be vertical, not horizontal */
  .cp-process-steps::before {
    left: 50%; /* Center it horizontally */
    top: 40px; /* Start at the center of the first icon */
    bottom: 40px; /* End at the center of the last icon */
    right: auto; /* Remove right constraint */
    width: 2px; /* Vertical line thickness */
    height: auto; /* Line grows vertically with content */
    border-top: none; /* Remove horizontal dotted border */
    border-left: 2px dotted #f0e6df; /* Add vertical dotted border */
  }
}

/* Optional: Additional fine-tuning for smaller Mobiles (e.g., 576px) */
@media (max-width: 576px) {
  .cp-recovery-section {
    padding: 0px 15px;
  }

  .cp-recovery-container {
    padding: 30px;
    margin: 10px;
  }

  .cp-title {
    font-size: 26px; /* Slightly smaller title for very small screens */
  }

  /* For even tighter vertical flow, reduce the gap between steps */
  .cp-process-steps {
    gap: 30px;
  }
  .cp-recovery-section {
    margin: 0px;
  }
}

.cp-cta-banner {
  padding: 20px 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 0px;
}

.cp-cta-container {
  background-color: #0f0f0f; /* Deep matte black */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 180px; /* Fixed height for the slim banner look */
  position: relative;
  overflow: hidden;
}

/* Cinematic Visual Side */
.cp-cta-visual {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 35%;
  opacity: 0.8;
}

.cp-cta-visual img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* Soft fade effect into the black background */
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
}

/* Content Styling */
.cp-cta-content {
  flex: 1;
  margin-left: 30%; /* Offset to clear the visual */
  z-index: 2;
}

.cp-cta-title {
  color: white;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cp-cta-title .highlight {
  color: var(--primary-gold); /* Brand Orange */
}

.cp-cta-subtitle {
  color: #a0a0a0;
  font-size: 14px;
  margin: 0;
}

/* Button Styling */
.cp-cta-action {
  z-index: 2;
}

.cp-btn-cta {
  background: linear-gradient(90deg, #e5b567, #d89c5a);
  color: black;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.cp-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(196, 107, 45, 0.15); /* Soft themed glow */
}

.cp-btn-cta .arrow {
  font-size: 18px;
}

.cta_new {
  padding: 0px 45px;
  padding-bottom: 20px;
}
.success-cta {
  align-items: center;
  background: url("../image/cta_section.png");
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px 14px 14px 14px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center; /* vertical center */
  text-align: center;
  margin: 0 auto;
  max-width: 1300px;
  padding: 42px 24px 28px;
}

.success-cta h2 {
  font-size: 24px;
  margin: 0;
  color: white;
}

.success-cta h2 span {
  color: var(--accent);
}

.success-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin: 6px 0 0;
}

.success-new-cta {
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: large;
  transition: 0.3s;
}

.success-new-cta {
  background: linear-gradient(90deg, #e5b567, #d89c5a);
  color: black;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .cp-cta-container {
    flex-direction: column;
    height: auto;
    padding: 30px;
    text-align: center;
  }
  .cp-cta-visual {
    display: none;
  }
  .cp-cta-content {
    margin-left: 0;
    margin-bottom: 15px;
  }
  .cp-cta-banner {
    margin: 0px;
  }
}

/* =========================================================
   CP RECOVERY SECTION RESPONSIVE
   (NO CONNECTOR LINE)
========================================================= */

@media (max-width: 992px) {
  .cp-recovery-container {
    flex-direction: column;
    gap: 40px;

    margin: 20px;
    padding: 40px 24px;

    border-radius: 24px;
  }

  .cp-recovery-info {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .cp-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .cp-description1 {
    max-width: 650px;
    margin: auto;
  }

  .cp-process-steps {
    flex-direction: column;
    align-items: center;

    gap: 34px;

    padding: 10px 0;

    background: transparent;
    border: none;
    box-shadow: none;
  }

  /* REMOVE LINE COMPLETELY */
  .cp-process-steps::before {
    display: none;
  }

  .cp-step-item {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .cp-recovery-container {
    margin: 16px;
    padding: 32px 18px;
  }

  .cp-title {
    font-size: 1.9rem;
  }

  .cp-description1 {
    font-size: 14px;
    line-height: 1.7;
  }

  .cp-process-steps {
    gap: 28px;
  }

  .cp-icon-circle {
    width: 78px;
    height: 78px;

    border-radius: 20px;

    margin-bottom: 18px;
  }

  .cp-step-item h4 {
    font-size: 18px;
  }

  .cp-step-item p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .cp-recovery-container {
    margin: 12px;
    padding: 26px 16px;

    border-radius: 20px;
  }

  .cp-title {
    font-size: 1.7rem;
  }

  .cp-process-steps {
    gap: 24px;
  }

  .cp-icon-circle {
    width: 72px;
    height: 72px;
  }

  .cp-step-item h4 {
    font-size: 16px;
  }

  .cp-step-item p {
    font-size: 13px;
  }
}

/* =========================================================
   CTA RESPONSIVE FIX
========================================================= */

@media (max-width: 992px) {
  .cta_new {
    padding: 0 20px 20px;
  }

  .success-cta {
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 48px 30px;

    gap: 24px;

    border-radius: 24px;

    background-position: center;
    background-size: cover;
  }

  .success-cta h2 {
    font-size: 2.3rem;
    line-height: 1.2;

    margin-bottom: 14px;
  }

  .success-cta p {
    font-size: 15px;
    line-height: 1.7;

    max-width: 520px;

    margin: auto;
  }

  .success-new-cta {
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .cta_new {
    padding: 0 16px 18px;
  }

  .success-cta {
    padding: 42px 22px;

    gap: 22px;

    border-radius: 22px;
  }

  .success-cta h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .success-cta p {
    font-size: 14px;
    line-height: 1.6;
  }

  .success-new-cta {
    width: 100%;
    max-width: 320px;

    justify-content: center;

    padding: 16px 20px;

    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cta_new {
    padding: 0 12px 16px;
  }

  .success-cta {
    padding: 36px 18px;

    border-radius: 20px;

    gap: 20px;
  }

  .success-cta h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .success-cta p {
    font-size: 13px;
    line-height: 1.6;

    max-width: 280px;
  }

  .success-new-cta {
    width: 100%;
    max-width: 260px;

    padding: 15px 18px;

    border-radius: 14px;
  }
}
