/* =========================================================
   CALM & CLEAN
   DEEP CLEANING SERVICES IN SHARJAH
   Page-specific stylesheet
   ========================================================= */

/* =========================================================
   1. GLOBAL PAGE VARIABLES
   ========================================================= */

.cc-deep-page {
  --cc-navy: #0d1b2a;
  --cc-navy-light: #16283b;
  --cc-green: #2ecc71;
  --cc-green-dark: #20a85a;
  --cc-white: #ffffff;
  --cc-light: #f8fafc;
  --cc-light-2: #eef3f7;
  --cc-text: #253444;
  --cc-muted: #687787;
  --cc-border: #e2e8ee;
  --cc-shadow: 0 12px 35px rgba(13, 27, 42, 0.09);
  --cc-shadow-hover: 0 18px 45px rgba(13, 27, 42, 0.14);

  color: var(--cc-text);
  background: var(--cc-white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

.cc-deep-page *,
.cc-deep-page *::before,
.cc-deep-page *::after {
  box-sizing: border-box;
}

.cc-deep-page img {
  max-width: 100%;
  height: auto;
}

.cc-deep-container {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.cc-deep-page h1,
.cc-deep-page h2,
.cc-deep-page h3 {
  margin-top: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--cc-navy);
  line-height: 1.2;
}

.cc-deep-page p {
  margin-top: 0;
}

.cc-deep-page a {
  text-decoration: none;
}

.cc-deep-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================================================
   2. HERO
   ========================================================= */

.cc-deep-hero {
  position: relative;
  min-height: 650px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(13, 27, 42, 0.96) 0%,
      rgba(13, 27, 42, 0.86) 45%,
      rgba(13, 27, 42, 0.42) 100%
    ),
    url("../images/deep-cleaning-hero.jpg") center center / cover no-repeat;

  overflow: hidden;
}

.cc-deep-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cc-deep-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
}

.cc-deep-hero-content {
  width: min(760px, 100%);
  padding: 100px 0;
}

.cc-deep-eyebrow {
  display: inline-block;
  margin-bottom: 15px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.4;

  color: var(--cc-green);
  text-transform: uppercase;
}

.cc-deep-hero h1 {
  margin-bottom: 25px;

  color: var(--cc-white);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: -1.2px;
}

.cc-deep-hero-subtitle {
  max-width: 720px;
  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.cc-deep-hero-text {
  max-width: 680px;
  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.cc-deep-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.cc-deep-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.cc-deep-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* =========================================================
   3. BUTTONS
   ========================================================= */

.cc-deep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 13px 25px;

  border-radius: 8px;

  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.cc-deep-btn:hover {
  transform: translateY(-2px);
}

.cc-deep-btn-primary {
  color: var(--cc-navy);
  background: var(--cc-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cc-deep-btn-primary:hover {
  color: var(--cc-navy);
  background: #f1f5f8;
}

.cc-deep-btn-whatsapp {
  color: var(--cc-white);
  background: var(--cc-green);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.25);
}

.cc-deep-btn-whatsapp:hover {
  color: var(--cc-white);
  background: var(--cc-green-dark);
}

/* =========================================================
   4. SECTIONS
   ========================================================= */

.cc-deep-section {
  padding: 95px 0;
  background: var(--cc-white);
}

.cc-deep-light-section {
  background: var(--cc-light);
}

.cc-deep-section-heading {
  max-width: 760px;
  margin: 0 auto 55px;

  text-align: center;
}

.cc-deep-section-heading .cc-deep-eyebrow {
  margin-bottom: 12px;
}

.cc-deep-section-heading h2 {
  margin-bottom: 18px;

  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.6px;
}

.cc-deep-section-heading p {
  margin-bottom: 0;

  color: var(--cc-muted);
  font-size: 17px;
}

/* =========================================================
   5. BENEFIT CARDS
   ========================================================= */

.cc-deep-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cc-deep-benefit-card {
  padding: 32px 27px;

  border: 1px solid var(--cc-border);
  border-radius: 14px;

  background: var(--cc-white);
  box-shadow: var(--cc-shadow);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cc-deep-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cc-shadow-hover);
}

.cc-deep-benefit-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  margin-bottom: 22px;

  border-radius: 50%;

  color: var(--cc-green);
  background: rgba(46, 204, 113, 0.1);

  font-size: 13px;
  font-weight: 800;
}

.cc-deep-benefit-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.cc-deep-benefit-card p {
  margin-bottom: 0;
  color: var(--cc-muted);
  font-size: 15px;
}

/* =========================================================
   6. CLEANING SITUATIONS
   ========================================================= */

.cc-deep-situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cc-deep-situation-grid article {
  padding: 30px;

  border: 1px solid var(--cc-border);
  border-radius: 12px;

  background: var(--cc-white);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cc-deep-situation-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--cc-shadow);
}

.cc-deep-situation-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cc-deep-situation-grid p {
  margin-bottom: 0;
  color: var(--cc-muted);
  font-size: 15px;
}

/* =========================================================
   7. PRICING
   ========================================================= */

.cc-deep-pricing-section {
  background: #f4f8fb;
}

.cc-deep-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.cc-deep-price-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 32px 27px;

  border: 1px solid var(--cc-border);
  border-radius: 16px;

  background: var(--cc-white);
  box-shadow: var(--cc-shadow);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cc-deep-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cc-shadow-hover);
}

.cc-deep-price-card.cc-deep-featured {
  border: 2px solid var(--cc-green);

  transform: translateY(-8px);
}

.cc-deep-price-card.cc-deep-featured:hover {
  transform: translateY(-13px);
}

.cc-deep-popular {
  position: absolute;
  top: 0;
  right: 22px;

  padding: 7px 12px;

  border-radius: 0 0 8px 8px;

  color: var(--cc-white);
  background: var(--cc-green);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.cc-deep-price-header {
  margin-bottom: 15px;
}

.cc-deep-price-icon {
  display: block;
  margin-bottom: 15px;
  font-size: 30px;
}

.cc-deep-price-header h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.cc-deep-price-header p {
  margin-bottom: 0;
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-deep-price {
  display: flex;
  align-items: baseline;
  gap: 5px;

  margin: 15px 0 5px;
}

.cc-deep-price small {
  font-size: 14px;
  font-weight: 700;
  color: var(--cc-muted);
}

.cc-deep-price strong {
  color: var(--cc-navy);

  font-family: "Poppins", Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.cc-deep-price-card ul {
  margin: 25px 0 28px;
}

.cc-deep-price-card li {
  position: relative;

  padding: 9px 0 9px 25px;

  border-bottom: 1px solid #edf1f4;

  color: var(--cc-text);
  font-size: 14px;
}

.cc-deep-price-card li:last-child {
  border-bottom: 0;
}

.cc-deep-price-card li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 8px;

  color: var(--cc-green);

  font-weight: 800;
}

.cc-deep-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 18px;

  border-radius: 7px;

  color: var(--cc-white);
  background: var(--cc-navy);

  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.cc-deep-card-btn:hover {
  color: var(--cc-white);
  background: var(--cc-green);
  transform: translateY(-2px);
}

.cc-deep-pricing-note {
  max-width: 850px;
  margin: 35px auto 0;

  color: var(--cc-muted);
  text-align: center;
  font-size: 13px;
}

/* =========================================================
   8. VILLA PRICING
   ========================================================= */

.cc-deep-villa-section {
  background: var(--cc-navy);
}

.cc-deep-villa-section .cc-deep-section-heading h2,
.cc-deep-villa-section .cc-deep-section-heading p {
  color: var(--cc-white);
}

.cc-deep-villa-section .cc-deep-section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.cc-deep-villa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cc-deep-villa-grid article {
  padding: 28px 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.06);

  text-align: center;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.cc-deep-villa-grid article:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.cc-deep-villa-grid h3 {
  margin-bottom: 12px;

  color: var(--cc-white);
  font-size: 17px;
}

.cc-deep-villa-grid strong {
  display: block;
  margin-bottom: 10px;

  color: var(--cc-green);

  font-family: "Poppins", Arial, sans-serif;
  font-size: 27px;
}

.cc-deep-villa-grid p {
  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.cc-deep-centered-cta {
  margin-top: 35px;
  text-align: center;
}

/* =========================================================
   9. CLEANING AREAS
   ========================================================= */

.cc-deep-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cc-deep-area-grid article {
  padding: 30px;

  border: 1px solid var(--cc-border);
  border-radius: 14px;

  background: var(--cc-white);
  box-shadow: var(--cc-shadow);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cc-deep-area-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--cc-shadow-hover);
}

.cc-deep-area-grid article > span {
  display: block;
  margin-bottom: 18px;
  font-size: 30px;
}

.cc-deep-area-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.cc-deep-area-grid p {
  margin-bottom: 0;
  color: var(--cc-muted);
  font-size: 14px;
}

/* =========================================================
   10. DEEP VS REGULAR COMPARISON
   ========================================================= */

.cc-deep-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.cc-deep-comparison > div {
  padding: 38px;

  border-radius: 14px;
  border: 1px solid var(--cc-border);

  background: var(--cc-white);
  box-shadow: var(--cc-shadow);
}

.cc-deep-comparison > div:first-child {
  border-top: 4px solid var(--cc-green);
}

.cc-deep-comparison > div:last-child {
  border-top: 4px solid var(--cc-navy);
}

.cc-deep-comparison h3 {
  margin-bottom: 22px;
  font-size: 25px;
}

.cc-deep-comparison li {
  position: relative;

  padding: 9px 0 9px 28px;

  color: var(--cc-text);
  font-size: 15px;
}

.cc-deep-comparison li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--cc-green);
  font-weight: 800;
}

.cc-deep-text-link {
  display: inline-block;
  margin-top: 20px;

  color: var(--cc-green-dark);

  font-size: 14px;
  font-weight: 700;
}

.cc-deep-text-link:hover {
  color: var(--cc-navy);
}

/* =========================================================
   11. HOW IT WORKS
   ========================================================= */

.cc-deep-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cc-deep-steps article {
  position: relative;

  padding: 32px 25px;

  border: 1px solid var(--cc-border);
  border-radius: 14px;

  background: var(--cc-white);
}

.cc-deep-steps article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  margin-bottom: 20px;

  border-radius: 50%;

  color: var(--cc-green);
  background: rgba(46, 204, 113, 0.1);

  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.cc-deep-steps h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.cc-deep-steps p {
  margin-bottom: 0;
  color: var(--cc-muted);
  font-size: 14px;
}

/* =========================================================
   12. FAQ
   ========================================================= */

.cc-deep-faq {
  max-width: 900px;
  margin: 0 auto;
}

.cc-deep-faq details {
  margin-bottom: 12px;

  border: 1px solid var(--cc-border);
  border-radius: 10px;

  background: var(--cc-white);

  overflow: hidden;
}

.cc-deep-faq summary {
  position: relative;

  padding: 21px 55px 21px 22px;

  cursor: pointer;

  color: var(--cc-navy);

  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;

  list-style: none;
}

.cc-deep-faq summary::-webkit-details-marker {
  display: none;
}

.cc-deep-faq summary::after {
  content: "+";

  position: absolute;
  right: 22px;
  top: 50%;

  transform: translateY(-50%);

  color: var(--cc-green);

  font-size: 24px;
  font-weight: 400;
}

.cc-deep-faq details[open] summary::after {
  content: "−";
}

.cc-deep-faq details p {
  margin: 0;

  padding: 0 22px 22px;

  color: var(--cc-muted);
  font-size: 15px;
}

/* =========================================================
   13. FINAL CTA
   ========================================================= */

.cc-deep-final-cta {
  padding: 75px 0;

  background: linear-gradient(135deg, var(--cc-navy), #142c41);
}

.cc-deep-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cc-deep-final-inner .cc-deep-eyebrow {
  margin-bottom: 10px;
}

.cc-deep-final-inner h2 {
  max-width: 700px;
  margin-bottom: 14px;

  color: var(--cc-white);
  font-size: clamp(30px, 4vw, 44px);
}

.cc-deep-final-inner p {
  max-width: 700px;
  margin-bottom: 0;

  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.cc-deep-final-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   14. FLOATING WHATSAPP
   ========================================================= */

.cc-deep-floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;

  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 12px 17px;

  border-radius: 50px;

  color: var(--cc-white);
  background: var(--cc-green);

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);

  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.cc-deep-floating-whatsapp:hover {
  color: var(--cc-white);
  background: var(--cc-green-dark);
  transform: translateY(-3px);
}

.cc-deep-floating-whatsapp > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);

  font-size: 11px;
}

/* =========================================================
   15. TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .cc-deep-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-deep-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-deep-villa-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cc-deep-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-deep-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   16. TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 850px) {
  .cc-deep-container {
    width: min(100% - 32px, 720px);
  }

  .cc-deep-hero {
    min-height: 580px;
  }

  .cc-deep-hero-content {
    padding: 80px 0;
  }

  .cc-deep-situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-deep-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-deep-comparison {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   17. MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .cc-deep-container {
    width: calc(100% - 28px);
  }

  .cc-deep-section {
    padding: 65px 0;
  }

  .cc-deep-hero {
    min-height: 650px;

    background:
      linear-gradient(180deg, rgba(13, 27, 42, 0.94), rgba(13, 27, 42, 0.78)),
      url("../images/deep-cleaning-hero.jpg") center center / cover no-repeat;
  }

  .cc-deep-hero-content {
    padding: 65px 0;
  }

  .cc-deep-hero h1 {
    font-size: 37px;
    letter-spacing: -0.7px;
  }

  .cc-deep-hero-subtitle {
    font-size: 17px;
  }

  .cc-deep-hero-text {
    font-size: 14px;
  }

  .cc-deep-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-deep-btn {
    width: 100%;
  }

  .cc-deep-trust {
    flex-direction: column;
    gap: 9px;
  }

  .cc-deep-section-heading {
    margin-bottom: 38px;
  }

  .cc-deep-section-heading h2 {
    font-size: 30px;
  }

  .cc-deep-section-heading p {
    font-size: 15px;
  }

  .cc-deep-benefit-grid,
  .cc-deep-situation-grid,
  .cc-deep-price-grid,
  .cc-deep-area-grid,
  .cc-deep-steps {
    grid-template-columns: 1fr;
  }

  .cc-deep-benefit-card,
  .cc-deep-situation-grid article,
  .cc-deep-area-grid article,
  .cc-deep-steps article {
    padding: 25px;
  }

  .cc-deep-price-card {
    padding: 28px 23px;
  }

  .cc-deep-price-card.cc-deep-featured {
    transform: none;
  }

  .cc-deep-price-card.cc-deep-featured:hover {
    transform: translateY(-4px);
  }

  .cc-deep-price strong {
    font-size: 38px;
  }

  .cc-deep-villa-grid {
    grid-template-columns: 1fr;
  }

  .cc-deep-comparison > div {
    padding: 27px;
  }

  .cc-deep-comparison h3 {
    font-size: 22px;
  }

  .cc-deep-final-cta {
    padding: 60px 0;
  }

  .cc-deep-final-actions {
    width: 100%;
    flex-direction: column;
  }

  .cc-deep-floating-whatsapp {
    right: 14px;
    bottom: 14px;

    padding: 11px 14px;
  }
}

/* =========================================================
   18. SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {
  .cc-deep-container {
    width: calc(100% - 22px);
  }

  .cc-deep-hero h1 {
    font-size: 32px;
  }

  .cc-deep-eyebrow {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .cc-deep-section-heading h2 {
    font-size: 27px;
  }

  .cc-deep-floating-whatsapp span:last-child {
    display: none;
  }
}

/* =========================================================
   19. ACCESSIBILITY
   ========================================================= */

.cc-deep-page a:focus-visible,
.cc-deep-page button:focus-visible,
.cc-deep-page summary:focus-visible {
  outline: 3px solid rgba(46, 204, 113, 0.45);
  outline-offset: 3px;
}

/* =========================================================
   20. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .cc-deep-page *,
  .cc-deep-page *::before,
  .cc-deep-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   DEEP CLEANING - SPECIAL OFFER
   CALM & CLEAN
   ========================================================= */

.cc-deep-offer {
  position: relative;
  overflow: hidden;
  padding: 22px 28px;
  margin: 0 auto 35px;
  max-width: 1100px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d1b2a 0%, #16324a 100%);
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(13, 27, 42, 0.15);
}

.cc-deep-offer::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.12);
}

.cc-deep-offer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.cc-deep-offer-label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2ecc71;
}

.cc-deep-offer h2 {
  margin: 0 0 7px;
  font-size: 28px;
  line-height: 1.2;
  color: #ffffff;
}

.cc-deep-offer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
}

.cc-deep-offer strong {
  color: #2ecc71;
}

.cc-deep-offer-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 9px;
  background: #2ecc71;
  color: #0d1b2a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cc-deep-offer-button:hover {
  background: #ffffff;
  color: #0d1b2a;
  transform: translateY(-2px);
}

/* =========================================================
   OFFER BADGES ON SERVICE / PRICE CARDS
   ========================================================= */

.cc-deep-offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  margin-bottom: 12px;
  border-radius: 50px;
  background: #e9fff1;
  color: #168447;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cc-deep-free-sofa {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 10px;
  background: #f0fff5;
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #176b3c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.cc-deep-free-sofa::before {
  content: "✓ ";
  color: #2ecc71;
  font-weight: 900;
}

/* =========================================================
   OFFER INFORMATION STRIP
   ========================================================= */

.cc-deep-offer-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px auto;
  max-width: 1100px;
}

.cc-deep-offer-strip-item {
  padding: 18px 20px;
  border: 1px solid #e5eaf0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 7px 25px rgba(13, 27, 42, 0.06);
}

.cc-deep-offer-strip-item strong {
  display: block;
  margin-bottom: 5px;
  color: #0d1b2a;
  font-size: 16px;
}

.cc-deep-offer-strip-item span {
  color: #5b6673;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .cc-deep-offer {
    padding: 22px 20px;
    margin-bottom: 25px;
    border-radius: 15px;
  }

  .cc-deep-offer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cc-deep-offer h2 {
    font-size: 23px;
  }

  .cc-deep-offer p {
    font-size: 14px;
  }

  .cc-deep-offer-button {
    width: 100%;
  }

  .cc-deep-offer-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px auto;
  }

  .cc-deep-offer-strip-item {
    padding: 16px;
  }
}
