/* ==========================================================================
   ROOT VARIABLES — All tokens preserved
   ========================================================================== */
:root {
  --bg-light: #ffffff;
  --bg-subtle: #f8fafc;
  --primary-pink: #e61e62;
  --primary-pink-hover: #c4134f;
  --text-dark: #212529;
  --text-muted: #6c757d;

  /* Glass / Dark Header Values */
  --original-dark-glass: rgba(255, 255, 255, 0.1);
  --original-dark-border: rgba(255, 255, 255, 0.15);
  --original-dark-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  --original-scrolled-bg: rgba(15, 23, 42, 0.9);

  --gradient-start: #9d25b1;
  --gradient-end: #d82bae;
  --section-bg: #f32a63;

  --text-primary-dark: #1f2226;
  --brand-pink: #e62391;
  --brand-purple: #92278f;
  --gradient-brand: linear-gradient(135deg, #92278f 0%, #e62391 100%);
  --bg-blue-canvas: #2864ad;
}

/* ==========================================================================
   BASE
   ========================================================================== */
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
#mainNav {
  background: var(--original-dark-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--original-dark-border);
  box-shadow: var(--original-dark-shadow);
  border-radius: 8px;
  padding: 2px 30px;
  margin-top: 24px;
  width: calc(100% - 48px);
  left: 24px;
  transition: all 0.3s ease;
  z-index: 1050;
}

#mainNav.scrolled {
  background: var(--original-scrolled-bg);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
  width: 100px;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 600;
  margin: 0 10px;
  opacity: 0.85;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-pink) !important;
  opacity: 1;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 15%;
  width: 70%;
  height: 2px;
  background-color: var(--primary-pink);
  border-radius: 2px;
}

/* Toggler — always white and visible against dark nav */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Mobile collapse menu */
@media (max-width: 991.98px) {
  #mainNav {
    border-radius: 20px;
    width: calc(100% - 20px);
    left: 10px;
    margin-top: 10px;
    padding: 10px 20px;
  }

  .navbar-brand img {
    width: 100px;
  }

  /* Collapsed nav links on dark glass bg */
  .navbar-collapse {
    background: rgba(15, 23, 42, 0.97);
    border-radius: 12px;
    margin-top: 10px;
    padding: 12px 8px;
  }

  .nav-link {
    margin: 4px 0;
    padding: 10px 14px !important;
    border-radius: 8px;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(230, 30, 98, 0.12);
  }

  .nav-link.active::after {
    display: none;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section-wrapper {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.15)),
    url("../bg.jpeg") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#heroCarousel {
  margin-top: -76px;
  height: 100vh;
  position: relative;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item .hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
}

.hero-badge {
  color: var(--primary-pink);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-title span.grad-text {
  color: var(--primary-pink);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Hero Buttons */
.btn-explore {
  background-color: var(--primary-pink);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background-color: var(--primary-pink-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-coverage {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-coverage:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 20px;
  height: 20px;
}

.carousel-control-prev {
  left: -60px;
}
.carousel-control-next {
  right: -60px;
}

.carousel-indicators [button] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}

.carousel-indicators .active {
  background-color: var(--primary-pink);
}

/* Hero Bottom Feature Cards */
.features-grid-wrapper {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.feature-glass-card {
  background: var(--original-dark-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--original-dark-border);
  box-shadow: var(--original-dark-shadow);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 30, 98, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-speed {
  background: rgba(230, 30, 98, 0.15);
  color: #e61e62;
  border: 1px solid rgba(230, 30, 98, 0.3);
}
.icon-secure {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.icon-support {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.icon-reliable {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.feature-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Light-section overrides for feature cards */
.light-block .feature-glass-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.light-block .feature-glass-card .feature-title {
  color: var(--text-dark);
}
.light-block .feature-glass-card .feature-text {
  color: var(--text-muted);
}

/* Hero responsive */
@media (max-width: 1199.98px) {
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  #heroCarousel {
    margin-top: 0;
    height: auto;
  }

  .carousel-item {
    height: auto;
    min-height: auto;
  }

  .carousel-item .hero-content {
    padding: 120px 0 60px;
  }

  .features-grid-wrapper {
    position: relative;
    bottom: 0;
    padding-bottom: 60px;
  }

  .carousel-control-prev {
    left: calc(50% - 55px);
    top: auto;
    bottom: 15px;
    transform: none;
  }

  .carousel-control-next {
    right: calc(50% - 55px);
    top: auto;
    bottom: 15px;
    transform: none;
  }
}

/* ==========================================================================
   SECTION SHARED UTILITIES
   ========================================================================== */
.section-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 2.5rem;
}

.section-subtitle {
  font-size: 0.9rem;
  line-height: 1.6;
}

.text-pink {
  color: var(--brand-pink) !important;
}
.bg-subtle {
  background-color: var(--bg-subtle) !important;
}
.border-pink {
  border-color: var(--brand-pink) !important;
}
.border-purple {
  border-color: var(--brand-purple) !important;
}

.light-block {
  background-color: var(--bg-subtle);
  padding: 80px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.split-section {
  background-color: var(--bg-light);
}

.split-image {
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.split-content {
  padding: 80px 40px;
}

.grad-text-icon {
  color: var(--primary-pink);
}

.heading-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
  margin-top: 12px;
}

.bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

.bottom-curve svg {
  width: 100%;
  height: 45px;
}
.bottom-curve .shape-fill {
  fill: var(--bg-subtle);
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer-section .offer-mini-tag {
  letter-spacing: 2.5px;
  font-size: 0.8rem;
}

.offer-section .offer-card {
  border-radius: 12px !important;
  background-color: #ffffff;
  transition:
    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-section .offer-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--bg-subtle);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.offer-section .offer-icon-wrapper i {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.offer-section .offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
}

.offer-section .offer-card:hover .offer-icon-wrapper {
  background: var(--gradient-brand);
}

.offer-section .offer-card:hover .offer-icon-wrapper i {
  -webkit-text-fill-color: #ffffff;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: #fcfcfc;
}

.service-card {
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.35s ease;
}

.card-info-content {
  background-color: #fafafa;
  color: var(--text-dark);
  transition: all 0.35s ease;
}

.card-heading {
  font-size: 1.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-divider {
  border-top: 1px solid #e0e0e0;
  opacity: 1;
}

.card-features {
  font-size: 0.9rem;
  font-weight: 500;
}

.card-features i {
  font-size: 1.25rem;
}

.service-card:hover .card-info-content {
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-end) 100%
  );
  color: #ffffff;
}

.service-card:hover .card-text {
  color: rgba(255, 255, 255, 0.85);
}

.service-card:hover .card-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   PRICING SECTION (HOME)
   ========================================================================== */
.pricing-plans-sec .pricing-mini-tag {
  letter-spacing: 2.5px;
  font-size: 0.8rem;
}

.pricing-plans-sec .section-heading {
  color: var(--text-primary-dark);
  font-size: 2.2rem;
}

.pricing-card {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-plans-sec .pricing-card {
  background-color: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  border-radius: 16px !important;
}

.pricing-plans-sec .speed-badge i {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pricing-plans-sec .tier-features {
  padding-left: 0;
  font-size: 0.95rem;
}

.pricing-plans-sec .tier-features li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.pricing-plans-sec .tier-features li i {
  color: var(--brand-pink);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.pricing-plans-sec .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(230, 35, 145, 0.15) !important;
  background: var(--gradient-brand) !important;
}

.pricing-plans-sec .pricing-card:hover .tier-title,
.pricing-plans-sec .pricing-card:hover .tier-price,
.pricing-plans-sec .pricing-card:hover .tier-features,
.pricing-plans-sec .pricing-card:hover .tier-features li {
  color: #ffffff !important;
}

.pricing-plans-sec .pricing-card:hover .tier-price {
  opacity: 0.85;
}

.pricing-plans-sec .pricing-card:hover .speed-badge i,
.pricing-plans-sec .pricing-card:hover .tier-features li i {
  -webkit-text-fill-color: #ffffff;
  color: #ffffff !important;
}

/* Dot list (pricing.php) */
.pricing-plans-sec .dot-list {
  padding-left: 0;
  font-size: 0.88rem;
  max-width: 220px;
}

.pricing-plans-sec .dot-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.pricing-plans-sec .dot-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: inherit;
}

/* Tier icons */
.tier-icon {
  height: 60px;
}
.tier-icon-sm {
  height: 45px;
}

/* Plan buttons */
.btn-plan {
  display: block;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-dark);
}

.btn-plan:hover {
  background: var(--bg-subtle);
  color: var(--primary-pink);
  border-color: var(--primary-pink);
}

.btn-plan-filled {
  display: block;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-pink);
  color: #fff;
}

.btn-plan-filled:hover {
  background: var(--primary-pink-hover);
  color: #fff;
}

.btn-outline-pink {
  color: var(--brand-pink);
  border-color: var(--brand-pink);
  background: transparent;
}

.btn-outline-pink:hover {
  background: var(--gradient-brand);
  color: #ffffff !important;
  border-color: transparent;
}

/* Shared active/hovered pink card modifier */
.dynamic-pink-card,
.dynamic-brand-card {
  background: var(--gradient-brand) !important;
}

/* Generic hover-gradient card (pricing.php & home) */
.hover-gradient-card:hover {
  background: var(--gradient-brand) !important;
  color: #ffffff !important;
  transform: translateY(-5px);
}

.hover-gradient-card:hover .title-txt,
.hover-gradient-card:hover .subtitle-txt,
.hover-gradient-card:hover .list-txt,
.hover-gradient-card:hover .icon-txt,
.hover-gradient-card:hover .card-title-text,
.hover-gradient-card:hover .card-subtitle-text,
.hover-gradient-card:hover .card-list-text {
  color: #ffffff !important;
}

.hover-gradient-card:hover .group-icon-gradient {
  filter: brightness(0) invert(1);
}

.hover-gradient-card:hover .btn-subscribe {
  background-color: #ffffff !important;
  color: var(--brand-pink) !important;
  border-color: transparent !important;
}

/* Subscribe button */
.pricing-card .btn-subscribe {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.pricing-card .btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Lower security strip */
.pricing-guarantee-strip {
  background-color: var(--text-primary-dark);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   INTERNET YOU DESERVE SECTION
   ========================================================================== */
.internet-deserve-sec .small-tag {
  letter-spacing: 2px;
}
.internet-deserve-sec .main-title {
  color: var(--text-primary-dark);
}

.pillar-item .pillar-icon {
  height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pillar-item:hover .pillar-icon {
  transform: translateY(-5px);
}

/* ==========================================================================
   HOME BUNDLES / ENTERTAINMENT
   ========================================================================== */
.home-bundle-sec {
  background-color: var(--bg-blue-canvas);
  overflow: hidden;
}

.home-bundle-sec .header-combo {
  line-height: 1.3;
}

.perks-list li span {
  font-size: 1.1rem;
}

.format-icons-row .format-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.format-icons-row .format-badge img {
  height: 35px;
  object-fit: contain;
}

/* ==========================================================================
   PERFORMANCE GUARANTEES
   ========================================================================== */
.performance-guarantees-sec .icon-box-gradient {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(146, 39, 143, 0.08) 0%,
    rgba(230, 35, 145, 0.08) 100%
  );
  color: var(--brand-purple);
}

.guarantee-item {
  transition: transform 0.3s ease;
}
.guarantee-item:hover {
  transform: translateX(5px);
}

/* ==========================================================================
   SUPPORT CTA
   ========================================================================== */
.support-cta-gradient-sec {
  background: linear-gradient(90deg, #e61f62 0%, #ee4337 100%);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05);
}

.support-cta-gradient-sec .support-label {
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.support-cta-gradient-sec .phone-number-display {
  font-size: 4.5rem;
  letter-spacing: -1px;
  font-family: sans-serif;
  transition: transform 0.2s ease;
}

.support-cta-gradient-sec .phone-number-display:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .support-cta-gradient-sec .support-label {
    font-size: 1.4rem;
  }
  .support-cta-gradient-sec .phone-number-display {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   OFFICE DIRECTORY
   ========================================================================== */
.office-directory-sec {
  background-color: #ffffff;
}

.directory-block .directory-icon-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.directory-block .directory-img-icon {
  height: 48px;
  object-fit: contain;
}

.directory-block h4 {
  letter-spacing: -0.3px;
}

.directory-block .directory-text {
  font-size: 0.92rem;
  color: #6c757d !important;
}

.directory-block .directory-text a:hover {
  color: #e61f62 !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-bar {
  background-color: var(--bg-light);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 10;
}

.footer-bar span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer-bar:hover span {
  color: var(--text-dark);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
  background: var(--section-bg);
  overflow: hidden;
}

.about-hero .small-tag {
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-hero .text-light-muted {
  color: rgba(255, 255, 255, 0.85);
}

.about-img-frame::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  background: var(--gradient-brand);
  z-index: 0;
  border-radius: 8px;
  opacity: 0.15;
}

.about-img-frame img {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition:
    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(146, 39, 143, 0.08) !important;
}

.value-card .value-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.5rem;
  color: var(--brand-purple);
  background: linear-gradient(
    135deg,
    rgba(146, 39, 143, 0.06) 0%,
    rgba(230, 35, 145, 0.06) 100%
  );
}

.mission-cta {
  background: var(--gradient-brand);
}

.btn-light-pink {
  background-color: #ffffff;
  color: var(--primary-pink);
  border: 1px solid transparent;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.btn-light-pink:hover {
  background-color: var(--primary-pink);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .about-img-frame {
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.services-hero-banner {
  background: var(--section-bg);
}

.services-hero-banner .services-mini-tag {
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.services-hero-banner .services-hero-lead {
  color: rgba(255, 255, 255, 0.85);
}

.service-feature-card {
  border-radius: 12px;
  transition:
    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(146, 39, 143, 0.08) !important;
}

.service-icon-box i {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.service-bullet-points {
  padding-left: 0;
  font-size: 0.88rem;
}

.service-bullet-points li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-bullet-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-pink);
  font-weight: bold;
}

.services-perks-strip {
  background-color: var(--bg-blue-canvas);
}

.services-perks-strip .btn-outline-light {
  font-size: 0.82rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.services-perks-strip .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--bg-blue-canvas);
  transform: translateY(-1px);
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */
.pricing-hero-banner {
  background: var(--section-bg);
}

.pricing-hero-banner .pricing-mini-tag {
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-hero-banner .pricing-hero-lead {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   COVERAGE PAGE
   ========================================================================== */
.coverage-hero-banner {
  background: var(--section-bg);
}

.coverage-hero-banner .coverage-mini-tag {
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.coverage-hero-banner .coverage-hero-lead {
  color: rgba(255, 255, 255, 0.85);
}

.coverage-map-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.map-placeholder {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-subtle) 100%);
  border-radius: 6px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite ease-in-out;
}

.location-status-badge {
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.01);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.location-status-badge:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bg-warning-subtle {
  background-color: #fef3c7 !important;
}
.text-warning-dark {
  color: #b45309 !important;
}
.border-warning-subtle {
  border-color: #fde68a !important;
}

.coverage-request-strip {
  background-color: var(--bg-blue-canvas);
}

.coverage-request-strip .btn-outline-light {
  font-size: 0.82rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.coverage-request-strip .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--bg-blue-canvas);
  transform: translateY(-1px);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero-banner {
  background: var(--section-bg);
}

.contact-hero-banner .contact-mini-tag {
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-hero-banner .contact-hero-lead {
  color: rgba(255, 255, 255, 0.85);
}

.contact-form-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  background-color: var(--bg-subtle);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background-color: #ffffff;
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(230, 35, 145, 0.1);
  outline: 0;
}

.btn-brand-gradient {
  background: var(--gradient-brand);
  border: none;
  font-size: 0.85rem;
  border-radius: 6px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-brand-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 35, 145, 0.25);
  color: #ffffff;
}

.info-sidebar-card {
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.info-sidebar-card:hover {
  transform: translateX(3px);
}

.sidebar-icon i {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
