/* ============================================
plans-hero — Updated CSS
Theme color: #25bbff
Reference: Image 2 layout (content left, image right)
============================================ */

/* ---- Section wrapper ---- */


/* ---- Container ---- */

/* ---- Two-column grid: content LEFT, image RIGHT ---- */
.content-image-section .image-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-image-section .image-content-wrapper.right .content {
  order: 0;
}

.content-image-section .image-content-wrapper.right .image {
  order: 1;
  position: relative;
}
.content-image-section .image-content-wrapper.left .image {
  order: 0;
}
.content-image-section .image-content-wrapper.left .content {
  order: 1;
}
/* If CMS passes image-right modifier, flip back */
.content-image-section .image-content-wrapper.image-right .content { order: 1; }
.content-image-section .image-content-wrapper.image-right .image  { order: 0; }

/* ---- Hero image ---- */
.content-image-section .image-content-wrapper .image img:not(.badge-icon) {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ---- Location badge (eyebrow) ---- */
.content-image-section .plans-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #25bbff;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
  background: rgba(37, 187, 255, 0.08);
  color: #0a8fbf;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-image-section .plans-hero__badge .badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.content-image-section .plans-hero__badge .badge-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Main heading ---- */
.content-image-section .plans-hero__title {
  margin: 0 0 16px;
  line-height: 1.15;
  /* font-size and color come from global theme */
}

/* ---- Description ---- */
.content-image-section .plans-hero__desc {
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 500px;
}
.content-image-section .plans-hero__desc p{
padding-top: 20px;
}
.content-image-section .plans-hero__desc h1 span{
  color: #25bbff;
}

/* ---- Limited offer box ---- */
.content-image-section .limtied-offer {
  width:78%;
  /*   background: rgb(233 100 97 / 2%); */
  border: 1.5px solid rgb(0 89 156 / 73%);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 28px;
}

.content-image-section .limtied-offer .sub-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #24b2ff;      /* red accent for "LIMITED TIME OFFER" */ */
  margin-bottom: 6px;
}

.content-image-section .limtied-offer .title h3 {
  margin: 0 0 4px;
  font-weight: 700;
}

.content-image-section .limtied-offer .desc {
  line-height: 1.5;
}
.content-image-section .limtied-offer .desc p{
  margin-bottom: 0 ;
}
/* ---- CTA buttons ---- */
.content-image-section .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  align-items: center;
}

.content-image-section .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
  cursor: pointer;
  font-size: 15px;
}

.content-image-section .hero-btn:hover {
  opacity: 0.88;
  text-decoration: none;
}

/* Primary — red (call button) */
.content-image-section .hero-btn.btn-primary,
.content-image-section .hero-btn.adt-button--primary {
  color: #fff;
  border: none;
}
.content-image-section .hero-btn svg {
  width: 12px;
  height: 12px;
}
.content-image-section .hero-btn.btn-tertiary svg {
  display: none;
  width: 0;
  height: 0;
}
.content-image-section .hero-btn.btn-tertiary .btn-icon-wrap{
  display: none;
}
.content-image-section .hero-btn.btn-primary svg path {
  fill: #fff;
}
.content-image-section .hero-btn.btn-tertiary svg path {
  fill: #00599c;
}
.content-image-section .hero-btn.btn-tertiary:hover svg path {
  fill: #fff;
}
/* Secondary — outline with brand blue */
.content-image-section .hero-btn.btn-secondary,
.content-image-section .hero-btn.adt-button--secondary {
  background: transparent;
  color: #25bbff;
  border: 2px solid #25bbff;
}

.content-image-section .btn-icon-wrap {
  display: inline-flex;
  align-items: center;
}

/* ---- USP row ---- */
.content-image-section .usp-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.content-image-section .usp-flex {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* Circle check icon — pure CSS, no font/image dependency */
.content-image-section .usp-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid #25bbff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-size: 0; /* hide any text/emoji fallback */
  line-height: 1;
}

/* CSS-drawn checkmark via ::after — always renders */
.content-image-section .usp-icon::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid #25bbff;
  border-bottom: 2px solid #25bbff;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* Hide any img inside if it fails to load */
.content-image-section .usp-icon img {
  display: none;
}

.content-image-section .usp-text {
  line-height: 1.3;
}

/* ---- Trust card floating on image ---- */
.content-image-section .trust-card {
  position: absolute;
  bottom: 0;
  left: -10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.content-image-section .trust-card .trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 187, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0a8fbf;
  font-size: 20px;
}

.content-image-section .trust-card .trust-icon img {
  width: 22px;
  height: 22px;
}

.content-image-section .trust-card .trust-big {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.content-image-section .trust-card .trust-small {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

/* ---- Suppress before pseudo from parent theme ---- */
.content-image-section:before {
  display: none;
}
 
/* ---- Section base ---- */
.section-bg-image.plans-hero {
  position: relative;
  overflow: hidden;
}
 
/* ---- Overlay via .row-fluid pseudo — sits above bg-image ---- */
.section-bg-image.plans-hero .row-fluid {
  position: relative;
}
 
/* ---- Everything inside row-fluid stacks above overlay ---- */
.section-bg-image.plans-hero .row-fluid > * {
  position: relative;
  z-index: 1;
}
.section-bg-image.plans-hero .overlayerr-content-imge {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, 
color-mix(in oklab, oklch(46% .16 257) 92%, transparent) 0%, 
color-mix(in oklab, oklch(46% .16 257) 82%, transparent) 55%, 
color-mix(in oklab, oklch(46% .16 257) 55%, transparent) 100%);
}
/* ---- Badge: solid brand blue, white text ---- */
.section-bg-image .plans-hero__badge {
  background: rgba(36, 188, 255, 1);
  border: 1.5px solid rgba(36, 188, 255, 1);
  color: #ffffff;
}
 
.section-bg-image .plans-hero__badge .badge-text {
  color: #ffffff;
}
 
/* ---- Hero title ---- */
.section-bg-image .plans-hero__title {
  color: #ffffff;
}
 
/* ---- Description ---- */
.section-bg-image .plans-hero__desc {
  color: #ffffff;
}
 
.section-bg-image .plans-hero__desc p,
.section-bg-image .plans-hero__desc span,
.section-bg-image .plans-hero__desc h1,
.section-bg-image .plans-hero__desc h2,
.section-bg-image .plans-hero__desc h3,
.section-bg-image .plans-hero__desc strong,
.section-bg-image .plans-hero__desc b {
  color: #ffffff;
}
 
.section-bg-image .plans-hero__desc h1 span {
  color: rgba(36, 188, 255, 1);
}
 
/* ---- Limited offer box ---- */
.section-bg-image .limtied-offer {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}
 
.section-bg-image .limtied-offer .sub-title {
  color: rgba(36, 188, 255, 1);
}
.section-bg-image .plans-hero__desc strong {
    background: #25bbff;
    padding:6px;
    line-height: 2.5rem;
    margin-left:2%; 
    border-radius: 8px;
}
.section-bg-image .plans-hero__desc a {
    color: #ffffff;
/*     background: #25bbff; */
/*     padding:6px; */
/*     margin-right:2%; */
/*     line-height: 2.5rem; */
    
}
.section-bg-image .limtied-offer .title h3 {
  color: #ffffff;
}
 
.section-bg-image .limtied-offer .desc,
.section-bg-image .limtied-offer .desc p {
  color: rgba(255, 255, 255, 0.85);
}
 
/* ---- Secondary button: white border/text over dark overlay ---- */
.section-bg-image .hero-btn.btn-secondary,
.section-bg-image .hero-btn.adt-button--secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
 
.section-bg-image .hero-btn.btn-secondary:hover,
.section-bg-image .hero-btn.adt-button--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
 
/* ---- USP ---- */
.section-bg-image .usp-text {
  color: #ffffff;
}
 
.section-bg-image .usp-icon {
  border-color: rgba(36, 188, 255, 1);
}
 
.section-bg-image .usp-icon::after {
  border-right-color: rgba(36, 188, 255, 1);
  border-bottom-color: rgba(36, 188, 255, 1);
}
.section-bg-image .hero-btn.adt-button--secondary svg path {
fill: #fff; 
}
.section-bg-image a.hero-btn.custom_content_image_btn.btn-primary.adt-button--primary svg {
    display: none;
}
/* ============================================
RESPONSIVE
============================================ */

/* Tablet */
@media (max-width: 900px) {
  .section-bg-image .image-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* On mobile/tablet: image always on top */
  .section-bg-image .image-content-wrapper .image,
  .content-image-section .image-content-wrapper.image-right .image {
    order: 0;
  }

  .section-bg-image .image-content-wrapper .content,
  .section-bg-image .image-content-wrapper.image-right .content {
    order: 1;
  }

  .section-bg-image .image-content-wrapper .image img:not(.badge-icon) {
    max-height: 340px;
  }

  .section-bg-image .trust-card {
    left: 10px;
    bottom: 10px;
  }

  .section-bg-image .plans-hero__desc {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section-bg-image .limtied-offer {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .section-bg-image.plans-hero {
    padding: 32px 16px;
  }
  .custom_content_image_btn{
    align-items: center;
    flex: 1 1 50px !important;
    height: 50px !important;
    min-width: 140px;
    font-size: 16px !important;

  }
  .custom_content_image_btn svg{
    width: 16px !important;
    height: 16px !important;

  }
  .content-image-section .image-content-wrapper {
    grid-template-columns: 1fr ;
    gap: 24px;
  }

.content-image-section .limtied-offer {
    width: 100%;
}
  .content-image-section .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .content-image-section .hero-btn {
    justify-content: center;
  }

  .content-image-section .usp-wrapper {
    gap: 12px;
  }
}