/* Internet Plans Help - Single Unified Master Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-cyan: #06b6d4;
  --primary-blue: #0284c7;
  --primary-dark-blue: #1d4ed8;
  --teal-accent: #0d9488;
  --teal-hover: #0f766e;
  --teal-light-bg: #ccfbf1;
  --navy-dark: #0f172a;
  --navy-card: #1e293b;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --hero-gradient: linear-gradient(135deg, #06b6d4 0%, #0284c7 45%, #1d4ed8 100%);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Header & Navbar Styling */
.header-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.25);
  flex-shrink: 0;
}

.brand-logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-logo-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-accent);
  display: block;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155 !important;
  padding: 6px 14px !important;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--teal-accent) !important;
}

.header-email-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-email-link:hover {
  color: var(--teal-accent);
}

.header-call-btn {
  background-color: #008080;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
}

.header-call-btn:hover {
  background-color: #006666;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* Mobile & Tablet Centered Menu */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    text-align: center !important;
    padding: 20px 0 10px;
  }

  .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  .nav-item {
    width: 100%;
    margin-bottom: 8px;
  }

  .header-actions-mobile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .header-call-btn {
    margin: 0 auto;
  }
}

/* Hero Section */
.hero-banner {
  background: var(--hero-gradient);
  color: #ffffff;
  padding: 85px 0 95px;
  text-align: center;
}

.hero-heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.18rem;
  opacity: 0.95;
  max-width: 760px;
  margin: 0 auto 35px;
  font-weight: 400;
}

.hero-cta-btn {
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #ffffff;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  background: #ffffff;
  color: var(--primary-blue);
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-badges-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-icon {
  width: 22px;
  height: 22px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Partners Section */
.partners-bar {
  background-color: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #f1f5f9;
}

.partners-heading {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #64748b;
  text-align: center;
  margin-bottom: 28px;
}

/* Section Headings */
.section-main-heading {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub-heading {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 50px;
}

/* Feature Cards */
.feature-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
  border-color: #cbd5e1;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--teal-light-bg);
  color: var(--teal-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Step Cards */
.step-number-badge {
  width: 50px;
  height: 50px;
  background-color: var(--teal-accent);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Service Card Left Accent */
.service-card-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--teal-accent);
  padding: 30px;
  display: flex;
  gap: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* CTA Banner */
.cta-banner {
  background: var(--hero-gradient);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

/* Accordion FAQ */
.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-dark);
  padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
  color: var(--teal-accent);
  background-color: #f0fdf4;
}

/* Dark Navy Footer */
.footer-dark {
  background-color: var(--navy-dark);
  color: #94a3b8;
  padding: 70px 0 35px;
  font-size: 0.92rem;
}

.footer-brand {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #38bdf8;
}

.footer-disclaimer-box {
  background-color: var(--navy-card);
  border-radius: 12px;
  padding: 24px;
  margin: 35px 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-disclaimer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* Sub-page Header */
.subpage-header-banner {
  background: var(--hero-gradient);
  color: #ffffff;
  padding: 60px 0 80px;
  text-align: center;
}

.subpage-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 45px;
  margin-top: -45px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
