/* V2 Reach Elite Block Styles */
.v2-reach-elite-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* Background Color Options */
.v2-reach-elite-section.bg-dark {
  background-color: var(--primary-color, #1e3a5f);
}

.v2-reach-elite-section.bg-light {
  background-color: #ffffff;
}

.v2-reach-elite-section.bg-light-blue {
  background-color: #f7f9fc;
}

/* Text Color Adjustments for Light Background */
.v2-reach-elite-section.bg-light .v2-reach-elite-main-heading,
.v2-reach-elite-section.bg-light .v2-reach-elite-formula,
.v2-reach-elite-section.bg-light .v2-reach-elite-main-desc p,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-main-heading,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-formula,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-main-desc p {
  color: var(--primary-color, #1e3a5f);
}

.v2-reach-elite-section.bg-light .v2-reach-elite-feature-card,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-feature-card {
  background: #ffffff;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-card-heading,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-card-heading {
    color: var(--primary-color, #1e3a5f);
    font-weight: 600;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-list-item,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item {
    font-size: 18px;
    margin-bottom: 25px;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-card-list,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-card-list {
    border-bottom: 1px solid #f2f2f2;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-card-text,
.v2-reach-elite-section.bg-light .v2-reach-elite-list-item,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-card-text,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item {
  color: #4a4a4a;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-list-item i,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 5px;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-card-icon-wrap i,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-card-icon-wrap i {
  color: var(--secondary-clr);
}

.v2-reach-elite-wrapper {
  text-align: center;
}

/* Main Heading */
.v2-reach-elite-main-heading {
    font-size: 36px;
    font-weight: 700 !important;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-family: var(--heading-font);
}

/* Decorative Line Below Heading */
.v2-reach-elite-main-heading.has-decorative-line {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.v2-reach-elite-main-heading.has-decorative-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 6px;
    background: var(--secondary-clr, #f59e0b);
    border-radius: 6px;
}

/* Formula Text */
.v2-reach-elite-formula {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.6;
    font-family: 'Inter 18pt';
}

/* Main Description */
.v2-reach-elite-main-desc p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
}

.v2-reach-elite-main-desc p:first-child {
    margin-bottom: 10px;
}

.v2-reach-elite-main-desc p:last-child {
    font-size: 18px;
}

/* Feature Cards Grid */
.v2-reach-elite-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.v2-reach-elite-feature-card {
    background: #264264;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;
}
/* Card Icon */
.v2-reach-elite-card-icon-wrap {
  margin-bottom: 24px;
}

.v2-reach-elite-card-icon-wrap i {
  font-size: 30px;
  color: var(--secondary-clr);
}

/* Card Heading */
.v2-reach-elite-card-heading {
    font-size: 23px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-family: var(--heading-font);
}

/* Card Description */
.v2-reach-elite-card-text {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 24px 0;
    font-weight: 400;
    font-style: italic;
}

/* Bullet List */
.v2-reach-elite-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.v2-reach-elite-list-item {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.v2-reach-elite-list-item:last-child {
  margin-bottom: 0;
}

.v2-reach-elite-list-item i {
  color: var(--secondary-clr);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Timeline Badge */
.v2-reach-elite-timeline-badge {
    background-color: rgb(34 197 94 / 10%);
    color: #15803d;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
    display: inline;
    width: fit-content;
    margin-top: 20px;
}

/* Stat Data */
.v2-reach-elite-stat-data {
    margin-top: 20px;
}

.v2-reach-elite-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-clr, #f59e0b);
    line-height: 1;
    font-family: var(--heading-font);
    display: block;
}

.v2-reach-elite-stat-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-stat-desc,
.v2-reach-elite-section.bg-light-blue .v2-reach-elite-stat-desc {
    color: #4a4a4a;
}

/* CTA Button */
.v2-reach-elite-btn-wrap {
    text-align: center;
    margin-top: 50px;
}

.v2-reach-elite-btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: var(--secondary-clr, #f59e0b);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.v2-reach-elite-btn:hover {
    opacity: 0.9;
    color: #ffffff;
}

.v2-reach-elite-section.bg-light .v2-reach-elite-btn {
    background-color: var(--primary-color, #1e3a5f);
    color: #ffffff;
}

/* Responsive Styles */

/* Large Desktop */
@media (max-width: 1400px) {
  .v2-reach-elite-cards-grid {
    gap: 24px;
  }
  
  .v2-reach-elite-feature-card {
    padding: 35px 25px;
  }
}

/* Desktop/Tablet (1024px - 1199px) */
@media (max-width: 1199px) {
  .v2-reach-elite-section {
    padding: 40px 0;
  }

  .v2-reach-elite-main-heading {
    font-size: 40px;
  }

  .v2-reach-elite-cards-grid {
    gap: 20px;
  }

  .v2-reach-elite-card-heading {
    font-size: 22px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .v2-reach-elite-main-heading {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .v2-reach-elite-formula {
    font-size: 16px;
  }

  .v2-reach-elite-main-desc p {
    font-size: 17px;
  }

  .v2-reach-elite-main-desc p:last-child {
    font-size: 16px;
  }

  .v2-reach-elite-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
  }

  .v2-reach-elite-feature-card {
    padding: 35px 28px;
  }

  .v2-reach-elite-card-heading {
    font-size: 21px;
  }

  .v2-reach-elite-card-text {
    font-size: 16px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item i,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item i {
    font-size: 16px;
  }
}

/* Mobile Landscape (640px - 767px) */
@media (max-width: 767px) {
  .v2-reach-elite-section {
    padding: 35px 0;
  }

  .v2-reach-elite-main-heading {
    font-size: 33px;
    margin-bottom: 20px;
  }

  .v2-reach-elite-formula {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .v2-reach-elite-main-desc p {
    font-size: 16px;
  }

  .v2-reach-elite-main-desc p:last-child {
    font-size: 15px;
  }

  .v2-reach-elite-cards-grid {
    gap: 20px;
    margin-top: 40px;
  }

  .v2-reach-elite-feature-card {
    padding: 30px 24px;
  }

  .v2-reach-elite-card-icon-wrap {
    margin-bottom: 20px;
  }

  .v2-reach-elite-card-icon-wrap i {
    font-size: 26px;
  }

  .v2-reach-elite-card-heading {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .v2-reach-elite-card-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .v2-reach-elite-list-item {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item i,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item i {
    font-size: 16px;
    margin-top: 4px;
  }
}

/* Mobile Portrait (480px - 639px) */
@media (max-width: 639px) {
  .v2-reach-elite-main-heading {
    font-size: 28px;
  }

  .v2-reach-elite-formula {
    font-size: 14px;
  }

  .v2-reach-elite-card-heading {
    font-size: 18px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item i,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item i {
    font-size: 15px;
  }
}

/* Small Mobile (up to 479px) */
@media (max-width: 479px) {
  .v2-reach-elite-section {
    padding: 30px 0;
  }

  .v2-reach-elite-main-heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .v2-reach-elite-formula {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .v2-reach-elite-main-desc p {
    font-size: 14px;
  }

  .v2-reach-elite-main-desc p:last-child {
    font-size: 13px;
  }

  .v2-reach-elite-cards-grid {
    gap: 16px;
    margin-top: 35px;
  }

  .v2-reach-elite-feature-card {
    padding: 25px 20px;
  }

  .v2-reach-elite-card-icon-wrap {
    margin-bottom: 18px;
  }

  .v2-reach-elite-card-icon-wrap i {
    font-size: 24px;
  }

  .v2-reach-elite-card-heading {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .v2-reach-elite-card-text {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .v2-reach-elite-list-item {
    font-size: 13px;
    margin-bottom: 8px;
    gap: 8px;
  }

  .v2-reach-elite-list-item i {
    font-size: 12px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .v2-reach-elite-section.bg-light .v2-reach-elite-list-item i,
  .v2-reach-elite-section.bg-light-blue .v2-reach-elite-list-item i {
    font-size: 14px;
    margin-top: 3px;
  }
}

/* Alignment Support */
.v2-reach-elite-section.alignwide {
  max-width: 100%;
}

.v2-reach-elite-section.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
