/* ============================================================
   FibreBroadband.in — Inner Pages Additional CSS
   All inner pages include both style.css + inner-pages.css
   ============================================================ */

/* =================== PAGE HERO (inner pages) =================== */
.page-hero {
  background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue-mid) 60%, #1e40af 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin-bottom: 0;
}

.breadcrumb-nav {
  margin-bottom: 20px;
}

.breadcrumb-nav a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 14px;
}

.breadcrumb-nav span {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 0 8px;
}

.breadcrumb-nav .current {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* =================== ENTERPRISE CARDS =================== */
.enterprise-section {
  padding: 80px 0;
  background: var(--white);
}

.enterprise-section.bg-alt {
  background: var(--light-bg);
}

.solution-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue);
}

.solution-card-header {
  background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue-mid));
  padding: 32px 28px;
  color: white;
  position: relative;
  overflow: hidden;
}

.solution-card-header::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: rgba(6,182,212,0.2);
  border: 2px solid rgba(6,182,212,0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.solution-card-header h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: white;
}

.solution-card-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.solution-card-body {
  padding: 24px 28px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text-dark);
}

.solution-features li:last-child { border: none; }
.solution-features .bi-check-circle-fill { color: var(--success-green); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

.solution-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-solution-primary {
  flex: 1;
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-cyan));
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.btn-solution-primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,46,110,0.3);
}

.btn-solution-wa {
  flex: 1;
  background: var(--whatsapp);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.btn-solution-wa:hover { background: #1fb854; color: white; transform: translateY(-2px); }

/* =================== TOWER PAGE =================== */
.tower-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.tower-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-orange);
}

.tower-card-img {
  background: linear-gradient(135deg, var(--royal-blue-dark), #1e3a8a);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.tower-card-img .tower-icon-main {
  position: absolute;
  font-size: 72px;
  color: var(--accent-cyan);
  opacity: 0.9;
}

.tower-card-body { padding: 24px; }

.tower-card-body h4 {
  font-size: 20px;
  color: var(--royal-blue-dark);
  margin-bottom: 10px;
}

.tower-spec-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.tower-spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f1f5f9;
}

.tower-spec-list li:last-child { border: none; }
.tower-spec-list .spec-label { color: var(--text-muted); }
.tower-spec-list .spec-val { font-weight: 600; color: var(--royal-blue); }

/* =================== COVERAGE / COMPARE TABLE =================== */
.compare-table {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table table { margin: 0; }

.compare-table thead th {
  background: var(--royal-blue-dark);
  color: white;
  font-weight: 700;
  padding: 16px 20px;
  font-family: 'Montserrat', sans-serif;
}

.compare-table tbody td {
  padding: 14px 20px;
  vertical-align: middle;
  font-size: 14px;
  border-color: #f1f5f9;
}

.compare-table tbody tr:hover { background: var(--light-bg); }

/* =================== ABOUT PAGE =================== */
.about-section { padding: 80px 0; }

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.team-card:hover {
  border-color: var(--royal-blue);
  transform: translateY(-6px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 16px;
}

.value-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--accent-cyan);
  transition: var(--transition);
}

.value-card:hover { transform: translateX(6px); }

/* =================== CONTACT PAGE =================== */
.contact-info-card {
  background: var(--royal-blue-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  height: 100%;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-method:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: rgba(6,182,212,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.contact-method h6 { color: white; font-size: 14px; margin-bottom: 4px; }
.contact-method a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 16px; font-weight: 600; }
.contact-method a:hover { color: var(--accent-gold); }
.contact-method p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }

/* =================== BLOG PAGE =================== */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--royal-blue);
}

.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.3);
  position: relative;
}

.blog-card-img .blog-icon {
  position: absolute;
  font-size: 40px;
  color: rgba(255,255,255,0.8);
}

.blog-tag {
  background: var(--light-bg);
  color: var(--royal-blue);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body { padding: 20px; }
.blog-card-body h5 { font-size: 16px; color: var(--royal-blue-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 13px; color: var(--text-muted); }

.blog-read-more {
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blog-read-more:hover { color: var(--accent-cyan); gap: 8px; }

/* =================== NEW CONNECTION PAGE =================== */
.steps-section { padding: 80px 0; background: var(--light-bg); }

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--royal-blue), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: white;
  margin: 0 auto 16px;
  font-family: 'Montserrat', sans-serif;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -20px;
  color: var(--accent-cyan);
  font-size: 20px;
  z-index: 2;
}

/* =================== PRIVACY / TERMS =================== */
.legal-section { padding: 60px 0; }

.legal-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: 24px;
  color: var(--royal-blue-dark);
  margin: 32px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.legal-card h2:first-child { margin-top: 0; padding-top: 0; border: none; }

.legal-card p, .legal-card li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
}

.legal-card ul { padding-left: 20px; }
.legal-card li { margin-bottom: 8px; }

/* =================== ENTERPRISE COVERAGE MAP =================== */
.coverage-section { padding: 80px 0; background: var(--royal-blue-dark); }

.state-coverage-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  transition: var(--transition);
  height: 100%;
}

.state-coverage-card:hover {
  background: rgba(6,182,212,0.1);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}

.state-coverage-card h5 { color: var(--accent-gold); margin-bottom: 16px; font-size: 16px; }

.city-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 3px;
  transition: var(--transition);
}

.state-coverage-card:hover .city-tag {
  background: rgba(6,182,212,0.15);
  color: rgba(255,255,255,0.9);
}

/* =================== FAQ SECTION =================== */
.faq-section { padding: 80px 0; background: var(--light-bg); }

.accordion-button {
  font-weight: 600;
  color: var(--royal-blue-dark);
  font-size: 15px;
  background: white;
}

.accordion-button:not(.collapsed) {
  color: var(--royal-blue);
  background: var(--light-bg);
  box-shadow: none;
}

.accordion-button::after {
  filter: hue-rotate(200deg);
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  background: white;
}

/* =================== TESTIMONIALS =================== */
.testimonials-section { padding: 80px 0; background: white; }

.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--accent-cyan);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.testimonial-stars { color: var(--accent-gold); font-size: 14px; margin-bottom: 12px; }

.testimonial-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author { font-weight: 700; color: var(--royal-blue); font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--text-muted); }

/* =================== MINI CTA BANNER =================== */
.cta-banner {
  background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue-mid));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
}

.cta-banner h2 { color: white; font-size: clamp(22px, 3vw, 36px); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 0; }

/* =================== RESPONSIVE INNER PAGES =================== */
@media (max-width: 768px) {
  .legal-card { padding: 24px 16px; }
  .contact-info-card { padding: 24px; }
  .page-hero { padding: 40px 0 30px; }
  .enterprise-section,
  .about-section,
  .steps-section,
  .testimonials-section,
  .faq-section { padding: 50px 0; }
  .solution-cta { flex-direction: column; }
}
