/* ===================================================
   Wirelesswire / AirMax Fibernet - Custom Styles
   Special Internet + OTT Offer & Tariff Plan Styling
   =================================================== */

:root {
  --brand-primary: #ea2129;
  --brand-primary-light: #ff4d54;
  --brand-secondary: #0d1b2a;
  --brand-accent: #ffb703;
  --brand-dark: #090d16;
  --brand-dark-card: #111827;
  --brand-gradient: linear-gradient(135deg, #ea2129 0%, #b8141b 100%);
  --brand-gradient-glow: linear-gradient(135deg, #ff3838 0%, #ea2129 50%, #ff8b3d 100%);
  --ott-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #31103f 100%);
  --card-radius: 18px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-hover-shadow: 0 20px 40px rgba(234, 33, 41, 0.18);
}

/* ---------------------------------------------------
   Hero Section Styling (Clean, Professional & Impactful)
   --------------------------------------------------- */
.hosting__top-area {
  position: relative;
  overflow: hidden;
}

.hosting__top-content .sub-title {
  display: inline-block;
  background: rgba(234, 33, 41, 0.15);
  border: 1px solid rgba(234, 33, 41, 0.35);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hosting__top-content .sub-title span {
  color: var(--brand-accent);
  font-weight: 800;
}

.hosting__top-content .title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.16;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hosting__top-content .title span {
  color: var(--brand-primary);
  display: inline-block;
}

.hosting__top-content p {
  font-size: 17.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 540px;
}

.hosting__top-content .list-wrap {
  margin-bottom: 30px;
}

.hosting__top-content .list-wrap li {
  font-size: 16px;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hosting__top-content .list-wrap li svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.hosting__top-content .tg-btn {
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
}

/* Custom WhatsApp Button to match tg-btn */
.tg-whatsapp-btn {
  background: #25d366;
  color: #ffffff !important;
  border-color: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.tg-whatsapp-btn:hover {
  background: #1eb956;
  border-color: #1eb956;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.hosting__top-images-five img {
  max-width: 100%;
  height: auto;
  animation: heroFloatSoft 5s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

@keyframes heroFloatSoft {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}


/* ---------------------------------------------------
   Global Section Spacing Overrides (Eliminates excessive gaps)
   --------------------------------------------------- */
.section-py-120 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.section-pt-120 {
  padding-top: 60px !important;
}

.section-pb-120 {
  padding-bottom: 60px !important;
}

.section-pb-90 {
  padding-bottom: 50px !important;
}

.section-pb-100 {
  padding-bottom: 50px !important;
}

.section-pt-100 {
  padding-top: 50px !important;
}

.section-py-100 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.section__title.mb-60,
.section__title.mb-50 {
  margin-bottom: 30px !important;
}

/* ---------------------------------------------------
   Tariff Plans Section
   --------------------------------------------------- */
.pricing-section-wrapper {
  position: relative;
  background: #f8fafc;
  padding: 60px 0 50px;
}

.pricing-header-pill {
  display: inline-block;
  background: rgba(234, 33, 41, 0.1);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.plan-toggle-container {
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  display: inline-flex;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 35px;
}

.plan-toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #475569;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-toggle-btn.active {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(234, 33, 41, 0.35);
}

.plan-toggle-btn .badge-pill-save {
  font-size: 0.7rem;
  font-weight: 800;
  background: #ffb703;
  color: #000;
  padding: 2px 7px;
  border-radius: 12px;
  text-transform: uppercase;
}

/* Plan Cards */
.tariff-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  border: 2px solid #edf2f7;
  box-shadow: var(--card-shadow);
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tariff-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: var(--card-hover-shadow);
}

.tariff-card.popular {
  border-color: var(--brand-primary);
  box-shadow: 0 15px 35px rgba(234, 33, 41, 0.15);
}

.tariff-card-badge {
  position: absolute;
  top: 18px;
  right: -32px;
  background: #ffb703;
  color: #111;
  padding: 4px 38px;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.tariff-card-header {
  padding: 24px 20px 18px;
  text-align: center;
  border-bottom: 1px dashed #e2e8f0;
}

.tariff-speed-title {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  line-height: 1.1;
}

.tariff-speed-unit {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-left: 2px;
}

.tariff-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.tariff-price-wrap {
  margin-bottom: 15px;
}

.tariff-currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  vertical-align: top;
  margin-right: 2px;
}

.tariff-price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.tariff-price-period {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.tariff-features-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 22px;
  text-align: left;
  flex-grow: 1;
}

.tariff-features-list li {
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tariff-features-list li i {
  color: #10b981;
  font-size: 0.95rem;
}

.tariff-features-list li.highlight {
  font-weight: 700;
  color: #0f172a;
}

.tariff-action-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}

.tariff-action-btn:hover,
.tariff-card.popular .tariff-action-btn {
  background: var(--brand-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(234, 33, 41, 0.3);
}

.tariff-card.popular .tariff-action-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Trust Bar */
.trust-points-bar {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 24px;
  margin-top: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.trust-point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
}

.trust-point-item i {
  font-size: 1.3rem;
  color: var(--brand-primary);
}

/* ---------------------------------------------------
   ALL IN ONE OTT PLAN SECTION
   --------------------------------------------------- */
.ott-section-wrapper {
  background: radial-gradient(circle at top right, #1e1b4b, #0f172a 70%);
  color: #ffffff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.ott-section-wrapper::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(234, 33, 41, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ott-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffb703;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ott-main-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
}

.ott-main-title span.highlight-red {
  color: #ff3344;
  text-shadow: 0 0 25px rgba(255, 51, 68, 0.5);
}

.ott-price-hero-badge {
  background: linear-gradient(135deg, #ea2129 0%, #ff5252 100%);
  display: inline-block;
  padding: 12px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(234, 33, 41, 0.45);
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.3);
}

.ott-price-hero-badge .tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffe4e6;
  display: block;
}

.ott-price-hero-badge .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.ott-price-hero-badge .period {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
}

/* OTT App Grid */
.ott-apps-showcase {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ott-apps-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.ott-apps-header span {
  background: #ea2129;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 50px;
  display: inline-block;
}

.ott-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 991px) {
  .ott-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .ott-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.ott-app-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 65px;
}

.ott-app-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: #ff3344;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

.ott-app-card.prime {
  background: linear-gradient(135deg, rgba(0, 168, 225, 0.25), rgba(15, 23, 42, 0.6));
  border-color: rgba(0, 168, 225, 0.5);
}

.ott-app-card.hotstar {
  background: linear-gradient(135deg, rgba(15, 117, 239, 0.25), rgba(15, 23, 42, 0.6));
  border-color: rgba(15, 117, 239, 0.5);
}

.ott-app-card.sonyliv {
  background: linear-gradient(135deg, rgba(234, 33, 41, 0.25), rgba(15, 23, 42, 0.6));
  border-color: rgba(234, 33, 41, 0.5);
}

.ott-app-card.zee5 {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(15, 23, 42, 0.6));
  border-color: rgba(168, 85, 247, 0.5);
}

.ott-app-card .ott-app-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
  background: #0f172a;
}

.ott-app-card:hover .ott-app-logo {
  transform: scale(1.12);
}

.ott-app-card .app-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.ott-app-card .app-genre {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Feature pills below OTT */
.ott-features-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.ott-feature-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
}

.ott-feature-pill i {
  color: #ffb703;
}

/* Call & WhatsApp Quick Buttons */
.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.btn-cta-call {
  background: #ffffff;
  color: #0f172a !important;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta-call:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.btn-cta-whatsapp {
  background: #25d366;
  color: #ffffff !important;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-cta-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* ---------------------------------------------------
   Special Offer Banner (Apartment / Dwarka)
   --------------------------------------------------- */
.apartment-special-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.apartment-special-banner .highlight-tag {
  background: var(--brand-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

/* ---------------------------------------------------
   Professional Testimonials Section Styling
   --------------------------------------------------- */
.testimonial__area-three {
  background: #f8fafc;
  position: relative;
}

.testimonial__item-three {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.testimonial__item-three:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 30px rgba(234, 33, 41, 0.12);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 13px;
  display: flex;
  gap: 3px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.testimonial__item-three .testimonial__content p {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 16px;
}

.testimonial__author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  margin-top: auto;
}

.author-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), #b8141b);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(234, 33, 41, 0.25);
}

.author-avatar-circle.avatar-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
}
.author-avatar-circle.avatar-purple {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.25);
}
.author-avatar-circle.avatar-emerald {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 3px 10px rgba(5, 150, 105, 0.25);
}
.author-avatar-circle.avatar-amber {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 3px 10px rgba(217, 119, 6, 0.25);
}

.author-meta .author-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.author-meta .author-location {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  margin-top: 1px;
}

/* ---------------------------------------------------
   Responsive Section Headings & Subtitles Classes
   --------------------------------------------------- */
.section-title-responsive {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle-responsive {
  color: #475569;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ---------------------------------------------------
   Announcement Top Bar Visibility (Hidden on Mobile)
   --------------------------------------------------- */
@media (max-width: 991px) {
  .tg-header__top {
    display: none !important;
  }
}

/* ---------------------------------------------------
   Mobile & Responsive Adjustments (Compact Balanced Typography)
   --------------------------------------------------- */
@media (max-width: 767px) {
  /* Section Headings & Text Scaling */
  .section-title-responsive,
  .section__title .title,
  h2.title,
  .ott-main-title {
    font-size: 19px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .section-subtitle-responsive,
  .section__title p,
  .white-content {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    max-width: 95% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 16px !important;
  }

  .pricing-header-pill {
    font-size: 0.65rem !important;
    letter-spacing: 0.4px !important;
    padding: 3px 10px !important;
    line-height: 1.3 !important;
    max-width: 95% !important;
    margin: 0 auto 8px !important;
    display: inline-block !important;
  }

  /* Compact Duration Switcher Toggle */
  .plan-toggle-container {
    width: 100% !important;
    max-width: 295px !important;
    margin: 0 auto 20px !important;
    padding: 3px !important;
    display: flex !important;
    border-radius: 50px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }

  .plan-toggle-btn {
    flex: 1 !important;
    padding: 6px 2px !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    justify-content: center !important;
    gap: 2px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .plan-toggle-btn .badge-pill-save {
    font-size: 7.5px !important;
    padding: 1px 3px !important;
    font-weight: 800 !important;
    border-radius: 5px !important;
  }

  /* Plan Cards Scaling */
  .pricing-section-wrapper {
    padding: 35px 0 25px !important;
  }

  .tariff-card {
    border-radius: 14px;
  }

  .tariff-card-header {
    padding: 14px 12px 10px;
  }

  .tariff-speed-title {
    font-size: 22px !important;
  }

  .tariff-speed-title span {
    font-size: 0.85rem !important;
  }

  .tariff-price-val {
    font-size: 28px !important;
  }

  .tariff-price-period {
    font-size: 0.75rem !important;
  }

  .tariff-features-list {
    margin-bottom: 14px;
  }

  .tariff-features-list li {
    font-size: 12px !important;
    padding: 4px 0 !important;
    gap: 6px !important;
  }

  .tariff-action-btn {
    padding: 9px 14px !important;
    font-size: 12.5px !important;
    border-radius: 8px !important;
  }

  /* Trust Points Bar */
  .trust-points-bar {
    margin-top: 25px;
    padding: 14px 10px;
  }

  .trust-point-item {
    font-size: 11.5px;
    gap: 5px;
  }

  .trust-point-item i {
    font-size: 0.9rem;
  }

  .trust-points-bar .row > div {
    margin-bottom: 8px;
  }

  .trust-points-bar .row > div:last-child {
    margin-bottom: 0;
  }

  /* OTT Section Mobile */
  .ott-section-wrapper {
    padding: 35px 0 30px !important;
  }

  .ott-tagline-badge {
    font-size: 0.68rem;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .ott-price-hero-badge {
    padding: 12px 16px;
    margin-bottom: 18px;
  }

  .ott-price-hero-badge .price {
    font-size: 28px;
  }

  .ott-apps-showcase {
    padding: 15px 12px;
  }

  .ott-apps-header {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .ott-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .ott-app-card {
    padding: 6px 8px;
  }

  .ott-app-card .app-name {
    font-size: 11px;
  }

  .ott-app-card .app-genre {
    font-size: 9px;
  }

  .ott-feature-pill {
    font-size: 11px;
    padding: 4px 10px;
  }

  .contact-cta-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .contact-cta-buttons a {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Hero Mobile Refinements - Prominent & Perfectly Scaled */
  .hosting__top-content {
    padding-bottom: 20px;
    width: 100%;
    text-align: left;
  }

  .hosting__top-content .title {
    font-size: 28px !important;
    line-height: 1.22 !important;
    margin-bottom: 12px;
    font-weight: 800 !important;
  }

  .hosting__top-content .sub-title {
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .hosting__top-content p {
    font-size: 14.5px !important;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .hosting__top-content .list-wrap {
    margin-bottom: 18px;
  }

  .hosting__top-content .list-wrap li {
    font-size: 13.5px;
    gap: 8px;
    margin-bottom: 8px;
  }

  .hosting__top-images {
    margin-top: 15px;
  }

  .hosting__top-content .tg-btn {
    padding: 11px 20px;
    font-size: 13.5px;
  }

  /* Feature Area Three (Cards) */
  .hosting__item-three {
    padding: 15px 12px;
  }

  .hosting__content-three .title {
    font-size: 15px !important;
    margin-bottom: 4px;
  }

  .hosting__content-three p {
    font-size: 12px !important;
    line-height: 1.45;
  }

  /* Features Area Ten (1-2-3 Steps) */
  .features__content-eight .title {
    font-size: 15px !important;
    margin-bottom: 4px;
  }

  .features__content-eight p {
    font-size: 12px !important;
    line-height: 1.45;
  }

  /* Testimonials */
  .testimonial__item-three {
    padding: 15px 14px;
    min-height: auto;
  }

  .testimonial__item-three .testimonial__content p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .author-avatar-circle {
    width: 34px;
    height: 34px;
    font-size: 11.5px;
  }

  .author-meta .author-name {
    font-size: 13px;
  }

  .author-meta .author-location {
    font-size: 10.5px;
  }

  /* FAQ Accordion */
  .accordion-button {
    font-size: 13px !important;
    padding: 12px 12px !important;
  }

  .accordion-body {
    padding: 8px 12px 14px !important;
  }

  .accordion-body p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  /* Bottom Feature Banners */
  .features__item-five {
    padding: 20px 15px;
  }

  .features__content-five .title {
    font-size: 16px !important;
    margin-bottom: 8px;
  }

  .features__content-five p {
    font-size: 12px !important;
    line-height: 1.45;
    margin-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .section-title-responsive,
  .section__title .title,
  h2.title,
  .ott-main-title {
    font-size: 18px !important;
  }

  .hosting__top-content .title {
    font-size: 26px !important;
    line-height: 1.22 !important;
  }

  .hosting__top-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .hosting__top-content .sub-title {
    font-size: 11.5px;
  }

  .hosting__top-content .list-wrap li {
    font-size: 13px;
  }

  .hosting__top-content .d-flex {
    flex-direction: column;
    align-items: stretch !important;
    gap: 8px !important;
  }

  .hosting__top-content .d-flex .tg-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 11px 18px;
    font-size: 13.5px;
  }
}

/* ===================================================
   Header Phone Direct Display & Redesigned Help Dropdown
   =================================================== */

/* Header Direct Phone Number */
.header-phone-item {
  display: flex;
  align-items: center;
}

.header-phone-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 33, 41, 0.08);
  border: 1px solid rgba(234, 33, 41, 0.2);
  color: var(--brand-secondary, #0d1b2a);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1;
}

.header-phone-direct .phone-icon-box {
  width: 26px;
  height: 26px;
  background: var(--brand-primary, #ea2129);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(234, 33, 41, 0.35);
  transition: transform 0.25s ease;
}

.header-phone-direct:hover {
  background: var(--brand-primary, #ea2129);
  border-color: var(--brand-primary, #ea2129);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 33, 41, 0.25);
}

.header-phone-direct:hover .phone-icon-box {
  background: #ffffff;
  color: var(--brand-primary, #ea2129);
  transform: rotate(15deg) scale(1.05);
}

/* Redesigned Help Dropdown Container */
.header-dropdown-wrap .dropdown-menu.custom-help-dropdown {
  width: 350px !important;
  max-width: 95vw !important;
  left: -200px !important;
  padding: 22px 20px !important;
  border-radius: 18px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  background: #ffffff !important;
  margin-top: 18px !important;
}

.custom-help-dropdown .help-dropdown-header {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.custom-help-dropdown .help-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0;
  letter-spacing: -0.3px;
}

.custom-help-dropdown .support-status-badge {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.custom-help-dropdown .support-status-badge .status-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.custom-help-dropdown .help-desc {
  font-size: 12px;
  color: #64748b;
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Contact Cards inside Dropdown */
.custom-help-dropdown .help-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.custom-help-dropdown .help-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.custom-help-dropdown .help-contact-item:hover {
  background: #ffffff;
  border-color: #ea2129;
  box-shadow: 0 4px 14px rgba(234, 33, 41, 0.1);
  transform: translateY(-2px);
}

.custom-help-dropdown .help-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.custom-help-dropdown .help-contact-icon.phone-icon {
  background: rgba(234, 33, 41, 0.1);
  color: #ea2129;
}

.custom-help-dropdown .help-contact-icon.email-icon {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.custom-help-dropdown .help-contact-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.custom-help-dropdown .help-contact-info .label {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 1px;
}

.custom-help-dropdown .help-contact-info .value {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

/* WhatsApp Chat Button inside Dropdown */
.custom-help-dropdown .help-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, #25d366 0%, #1eb956 100%);
  color: #ffffff !important;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.custom-help-dropdown .help-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.custom-help-dropdown .help-whatsapp-btn i {
  font-size: 16px;
}

/* Footer of Dropdown */
.custom-help-dropdown .help-dropdown-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.custom-help-dropdown .contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
}

.custom-help-dropdown .contact-link {
  font-size: 12px;
  font-weight: 700;
  color: #ea2129;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.custom-help-dropdown .contact-link:hover {
  gap: 7px;
  color: #b8141b;
}

.custom-help-dropdown .help-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-help-dropdown .social-label {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
}

.custom-help-dropdown .social-icons {
  display: flex;
  gap: 6px;
}

.custom-help-dropdown .social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.custom-help-dropdown .social-icons a:hover {
  background: #ea2129;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Menu Contact Card */
.tgmobile__menu-contact {
  padding: 14px 16px;
  margin: 15px 15px 0;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.tgmobile__menu-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  margin-bottom: 8px;
}

.tgmobile__menu-contact a:last-child {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.tgmobile__menu-contact a i {
  color: #ea2129;
}

/* Hide Search Input and Social Icons in Mobile Side Menu */
.tgmobile__search,
.tgmobile__menu .social-links,
.tgmobile__menu-box .social-links {
  display: none !important;
}

/* ===================================================
   Floating WhatsApp Button (Balanced & Responsive)
   =================================================== */
.btn-whatsapp-pulse {
  background: #25d366 !important;
  color: #ffffff !important;
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  font-size: 28px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 9999 !important;
  text-decoration: none !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4) !important;
  animation: wa-pulse 2s infinite !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.btn-whatsapp-pulse:hover {
  transform: scale(1.1) !important;
  background: #1eb956 !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6) !important;
  color: #ffffff !important;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------------------------------------------------
   Award-Winning Customer Support Section Revamp
   --------------------------------------------------- */
.support__inner-wrap-two {
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 45%, #f5f3ff 100%) !important;
  border-radius: 28px !important;
  padding: 60px 70px !important;
  position: relative !important;
  overflow: visible !important;
  box-shadow: 0 20px 50px -15px rgba(79, 70, 229, 0.12) !important;
  border: 1px solid rgba(99, 102, 241, 0.18) !important;
}

.support__inner-wrap-two .shape {
  display: none !important;
}

.support-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.support-badge-pill i {
  color: #4f46e5;
  font-size: 0.9rem;
}

.support__content-two .section__title .title {
  font-size: 2.35rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.25 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 12px !important;
}

.support-subtext {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.support-features-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.support-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-feature-card:hover {
  transform: translateX(6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.12);
}

.support-feature-card .feat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
}

.support-feature-card .feat-icon.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.support-feature-card .feat-icon.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.support-feature-card .feat-icon.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.support-feature-card .feat-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.support-feature-card .feat-info p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.45;
}

.support-actions-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-support-cta {
  background: linear-gradient(135deg, #ea2129 0%, #ff416c 100%) !important;
  color: #ffffff !important;
  padding: 13px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 8px 22px rgba(234, 33, 41, 0.32) !important;
  transition: all 0.3s ease !important;
}

.btn-support-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(234, 33, 41, 0.45) !important;
  color: #ffffff !important;
}

.btn-support-call {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 10px 20px !important;
  background: #ffffff !important;
  border-radius: 50px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04) !important;
  transition: all 0.3s ease !important;
}

.btn-support-call:hover {
  border-color: #22c55e !important;
  color: #16a34a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.15) !important;
}

.btn-support-call .call-pulse-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Support Visual & Floating Cards */
.support-visual-container {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding: 15px;
}

.support-main-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  aspect-ratio: 1 / 1;
}

.support-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.support-main-photo-wrap:hover .support-main-photo {
  transform: scale(1.04);
}

.support-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  z-index: 5;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.support-floating-badge.badge-live {
  top: -2px;
  left: -8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

.support-floating-badge.badge-live .pulse-green-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseDot 2s infinite;
}

.support-floating-badge.badge-live .badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.support-floating-badge.badge-live .badge-sub {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

.support-floating-badge.badge-rating {
  bottom: -6px;
  right: -6px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgeFloat 4s ease-in-out infinite alternate-reverse;
}

.support-floating-badge.badge-rating .rating-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.support-floating-badge.badge-rating .rating-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.support-floating-badge.badge-rating .rating-desc {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

@keyframes badgeFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (max-width: 991px) {
  .support__inner-wrap-two {
    padding: 45px 30px !important;
  }
  .support-visual-container {
    margin-bottom: 40px;
    max-width: 360px;
  }
}

@media (max-width: 575px) {
  .support__inner-wrap-two {
    padding: 35px 20px !important;
    border-radius: 20px !important;
  }
  .support__content-two .section__title .title {
    font-size: 1.8rem !important;
  }
  .support-floating-badge.badge-live {
    left: 4px;
    top: 4px;
    padding: 8px 12px;
  }
  .support-floating-badge.badge-rating {
    right: 4px;
    bottom: 4px;
    padding: 8px 14px;
  }
  .support-feature-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .support-feature-card .feat-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1rem;
  }
  .btn-support-cta, .btn-support-call {
    width: 100%;
    justify-content: center;
  }
}
