/****** GENERAL *******/
:root {
  --mega-orange: #f37e17;
  --mega-blue: #1c355e;
  --mega-yellow: #FFC107;
}

/****** HERO ROAMING *******/
.hero-roaming {
  margin-top: 128px;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/** PLANES SECTION **/
.planes-section {
  padding: 100px 0;
}

.section-title {
  color: #1c355e;
  font-size: clamp(1.25rem, 0.8509rem + 1.4851vw, 2.1875rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.planes-row {
  justify-content: center;
  gap: 48px;
}

.plan-card {
  background: #F7F7F7;
  border-radius: 38px;
  padding: 48px 38px 38px 38px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  border: none;
  min-width: 340px;
  max-width: 370px;
}

.plan-region {
  color: #222;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-divider {
  border: none;
  border-top: 2px solid #d1d5db;
  margin: 0 auto 18px auto;
  width: 90%;
}

.plan-data {
  color: #222;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.plan-unit {
  font-weight: 400;
}

.plan-duration {
  color: #222;
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 400;
}

.plan-type {
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 0px;
  font-weight: 400;
}
 
.plan-price {
  color: #222;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 50px;
}
.plan-price span{
  font-size: 2.4rem;
  margin-right: 5px;
  font-weight: 400;
}

.btn-plan {
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
  border-radius: 32px;
  padding: 14px 0;
  width: 220px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: #1976d2;
  color: #fff;
}

/** OWL CAROUSEL CUSTOM STYLES **/
.planes-slider {
  position: relative;
}

.planes-slider .owl-stage-outer {
  padding: 10px 0; /* extra breathing space for centered arrows */
}

.planes-slider .owl-nav {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* allow arrows only to be interactive */
}

.planes-slider .owl-nav .owl-prev,
.planes-slider .owl-nav .owl-next {
  background: #2E7BE6 !important;
  color: #fff !important;
  font-size: 20px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  pointer-events: auto; /* clickable */
}

.planes-slider .owl-nav .owl-prev:hover,
.planes-slider .owl-nav .owl-next:hover {
  background: var(--mega-blue) !important;
}

.nav-arrow {
  line-height: 1;
  font-weight: 700;
}

/* Remove dots completely */
.owl-theme .owl-dots {
  display: none !important;
}

/****** FAQ SECTION *******/

.faq-card {
  border: 1px solid #000;
  border-radius: 18px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-card .card-header {
  background: transparent;
  border: none;
  padding: 0;
}

.faq-button {
  color: var(--mega-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 25px 30px;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-button:hover,
.faq-button:focus {
  text-decoration: none;
  color: var(--mega-blue);
}

.faq-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--mega-blue);
  transition: transform 0.3s ease;
}

.faq-button.collapsed::after {
  transform: rotate(0deg);
}

.faq-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-card .card-body {
  padding: 20px 30px 30px;
  border-top: 1px solid #000;
}

.faq-answer {
  color: var(--mega-blue);
  line-height: 1.6;
  margin: 0;
}

 

/****** RESPONSIVE DESIGN *******/
@media (max-width: 767px) {
  .hero-roaming {
    margin-top: 52px;
  }

  .banner-image {
    border-radius: 0;
  }

  .planes-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .plan-card {
    padding: 30px 20px 25px;
    margin-bottom: 0;
  }

  .plan-region {
    font-size: 1.4rem;
  }

  .plan-data {
    font-size: 2rem;
  }

  .plan-price {
    font-size: 2.5rem;
  }

  .btn-plan {
    font-size: 0.95rem;
    padding: 10px 40px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-button {
    font-size: 1rem;
    padding: 20px 15px;
  }

  .faq-button::after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--mega-blue);
  }

  .faq-card .card-body {
    padding: 15px 20px 25px;
  }
  
  .planes-slider .owl-nav .owl-prev,
  .planes-slider .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .planes-section {
    padding: 50px 0;
  }

  .faq-section {
    padding: 50px 0;
  }

  .plan-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.4rem;
  }

  .plan-region {
    font-size: 1.2rem;
  }

  .plan-data {
    font-size: 1.8rem;
  }

  .plan-price {
    font-size: 2.2rem;
  }

  .btn-plan {
    font-size: 0.9rem;
    padding: 10px 35px;
  }

  .faq-button {
    font-size: 0.95rem;
    padding: 18px 12px;
  }
  
  .planes-slider .owl-nav .owl-prev,
  .planes-slider .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

}
