/* ============================================================
   PakistanBills.com — Main Stylesheet
   Clean Light Theme — Blue + Orange Premium
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:        #1e3a5f;
  --accent:         #1e7ff0;
  --accent-dark:    #155ec0;
  --accent-glow:    rgba(30, 127, 240, 0.18);
  --orange:         #f05a1e;
  --orange-light:   #f57840;
  --orange-glow:    rgba(240, 90, 30, 0.18);
  --purple:         #7c3aed;
  --purple-light:   #9b5cf6;
  --purple-glow:    rgba(124, 58, 237, 0.15);
  --teal:           #0891b2;
  --teal-light:     #06b6d4;
  --teal-glow:      rgba(8, 145, 178, 0.15);
  --water:          #0ea5e9;
  --water-light:    #38bdf8;
  --water-glow:     rgba(14, 165, 233, 0.15);
  --green:          #059669;
  --green-light:    #10b981;

  /* Light surfaces */
  --bg:             #f0f4fa;
  --surface:        #ffffff;
  --surface-2:      #f7f9fd;
  --card-bg:        #ffffff;
  --border:         #e2e8f0;
  --border-light:   #eef2f8;

  /* Text */
  --text-primary:   #0d1e3a;
  --text-secondary: #4a5f7a;
  --text-muted:     #7a92aa;

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 24px rgba(30,127,240,0.22);
  --shadow-orange: 0 8px 24px rgba(240,90,30,0.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: var(--text-secondary); margin-bottom: 1rem; }
a  { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }

/* ── Navbar ── */
.navbar-custom {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary);
}
.navbar-brand .brand-accent { color: var(--accent); }
.navbar-brand .brand-dot   { color: var(--orange); }

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
  background: var(--accent-glow);
}
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  background: var(--accent-glow);
  font-weight: 600;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2814,30,58,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Breadcrumb ── */
.breadcrumb-wrap {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}
.breadcrumb {
  margin: 0;
  font-size: 0.82rem;
  background: none;
  padding: 0;
}
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── Hero Section ── */
.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(145deg, #eef3fc 0%, #f4f8fe 40%, #e8f0fd 100%);
  border-bottom: 1px solid var(--border);
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,127,240,0.10) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,30,0.08) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30,127,240,0.12), rgba(240,90,30,0.08));
  border: 1px solid rgba(30,127,240,0.25);
  color: var(--accent);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  color: var(--primary);
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.hero-title .accent-word { color: var(--accent); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-search-wrap {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.hero-search-wrap .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  z-index: 5;
}
.hero-search-wrap .form-control-lg {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.hero-search-wrap .form-control-lg::placeholder { color: var(--text-muted); }
.hero-search-wrap .form-control-lg:focus {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: var(--shadow-blue);
  color: var(--text-primary);
  outline: none;
}

/* Stats Bar */
.stats-bar { position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Split Section ── */
.split-section {
  padding: 3.5rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.split-card {
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  border: 1.5px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
}
.split-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

/* Electricity card */
.split-card-electricity { border-top: 4px solid var(--accent); }
.split-card-electricity:hover { border-color: var(--accent); box-shadow: var(--shadow-blue); }

/* Gas card */
.split-card-gas { border-top: 4px solid var(--orange); }
.split-card-gas:hover { border-color: var(--orange); box-shadow: var(--shadow-orange); }

/* Phone card */
.split-card-phone { border-top: 4px solid var(--purple); }
.split-card-phone:hover { border-color: var(--purple); box-shadow: 0 8px 24px rgba(124,58,237,0.22); }

/* Internet card */
.split-card-internet { border-top: 4px solid var(--teal); }
.split-card-internet:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(8,145,178,0.22); }

/* Water card */
.split-card-water { border-top: 4px solid var(--water); }
.split-card-water:hover { border-color: var(--water); box-shadow: 0 8px 24px rgba(14,165,233,0.22); }

.split-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.split-icon-electricity { background: rgba(30,127,240,0.1); color: var(--accent); }
.split-icon-gas         { background: rgba(240,90,30,0.1); color: var(--orange); }
.split-icon-phone       { background: rgba(124,58,237,0.1); color: var(--purple); }
.split-icon-internet    { background: rgba(8,145,178,0.1); color: var(--teal); }
.split-icon-water       { background: rgba(14,165,233,0.1); color: var(--water); }

.split-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
.split-electricity-title { color: var(--accent); }
.split-gas-title         { color: var(--orange); }
.split-phone-title       { color: var(--purple); }
.split-internet-title    { color: var(--teal); }
.split-water-title       { color: var(--water); }

.split-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.split-count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}
.split-count-electricity { background: rgba(30,127,240,0.1); color: var(--accent); border: 1px solid rgba(30,127,240,0.2); }
.split-count-gas         { background: rgba(240,90,30,0.1); color: var(--orange); border: 1px solid rgba(240,90,30,0.2); }
.split-count-phone       { background: rgba(124,58,237,0.1); color: var(--purple); border: 1px solid rgba(124,58,237,0.2); }
.split-count-internet    { background: rgba(8,145,178,0.1); color: var(--teal); border: 1px solid rgba(8,145,178,0.2); }
.split-count-water       { background: rgba(14,165,233,0.1); color: var(--water); border: 1px solid rgba(14,165,233,0.2); }

/* ── Section Headings ── */
.section-heading { margin-bottom: 2.2rem; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.section-title { margin-bottom: 0.4rem; color: var(--text-primary); }
.section-divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--orange));
  border-radius: 2px;
  margin: 0.7rem auto 0;
}

/* ── Company Cards (directory grid) ── */
.company-grid { padding: 3rem 0; background: var(--bg); }

.company-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.company-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  text-decoration: none;
}
.company-card.gas-card:hover    { border-color: var(--orange); }
.company-card.phone-card:hover  { border-color: var(--purple); }
.company-card.internet-card:hover { border-color: var(--teal); }
.company-card.water-card:hover  { border-color: var(--water); }

.company-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  opacity: 0;
}
.company-card:hover .company-arrow { opacity: 1; color: var(--accent); }

.company-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}
.elec-icon     { background: rgba(30,127,240,0.1); color: var(--accent); }
.gas-icon      { background: rgba(240,90,30,0.1);  color: var(--orange); }
.phone-icon    { background: rgba(124,58,237,0.1); color: var(--purple); }
.internet-icon { background: rgba(8,145,178,0.1);  color: var(--teal); }
.water-icon    { background: rgba(14,165,233,0.1); color: var(--water); }

.company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.company-region {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  flex: 1;
}
.company-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-top: auto;
}
.elec-tag     { background: rgba(30,127,240,0.1); color: var(--accent); }
.gas-tag      { background: rgba(240,90,30,0.1);  color: var(--orange); }
.phone-tag    { background: rgba(124,58,237,0.1); color: var(--purple); }
.internet-tag { background: rgba(8,145,178,0.1);  color: var(--teal); }
.water-tag    { background: rgba(14,165,233,0.1); color: var(--water); }

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  border-radius: 50px;
  padding: 0.38rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,127,240,0.3);
}

/* No results */
.no-results {
  display: none;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.no-results i { font-size: 2.5rem; margin-bottom: 0.8rem; opacity: 0.4; }
.col-card.hidden { display: none; }

/* ── Company Hero (individual pages) ── */
.company-hero {
  background: linear-gradient(145deg, #eef3fc 0%, #f4f8fe 60%, #e8f0fd 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.company-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,127,240,0.08), transparent 70%);
  right: -80px; top: -100px;
  pointer-events: none;
}

.company-hero-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(30,127,240,0.1);
  color: var(--accent);
  border: 2px solid rgba(30,127,240,0.2);
  margin-bottom: 1rem;
}
.company-hero-icon.gas     { background: rgba(240,90,30,0.1); color: var(--orange); border-color: rgba(240,90,30,0.25); }
.company-hero-icon.phone   { background: rgba(124,58,237,0.1); color: var(--purple); border-color: rgba(124,58,237,0.25); }
.company-hero-icon.internet{ background: rgba(8,145,178,0.1); color: var(--teal); border-color: rgba(8,145,178,0.25); }
.company-hero-icon.water   { background: rgba(14,165,233,0.1); color: var(--water); border-color: rgba(14,165,233,0.25); }

.company-hero h1 { color: var(--text-primary); }

.meta-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0 1.5rem; }
.meta-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
}
.meta-tag-blue   { background: rgba(30,127,240,0.08); border-color: rgba(30,127,240,0.2); color: var(--accent); }
.meta-tag-orange { background: rgba(240,90,30,0.08);  border-color: rgba(240,90,30,0.2);  color: var(--orange); }
.meta-tag-green  { background: rgba(5,150,105,0.08);  border-color: rgba(5,150,105,0.2);  color: var(--green); }
.meta-tag-purple { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: var(--purple); }
.meta-tag-teal   { background: rgba(8,145,178,0.08);  border-color: rgba(8,145,178,0.2);  color: var(--teal); }
.meta-tag-water  { background: rgba(14,165,233,0.08); border-color: rgba(14,165,233,0.2); color: var(--water); }

/* ── CTA Buttons ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(30,127,240,0.3);
}
.btn-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(30,127,240,0.4);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none;
}

.btn-cta-orange {
  background: var(--orange);
  box-shadow: 0 4px 16px rgba(240,90,30,0.3);
}
.btn-cta-orange:hover {
  background: #d44a10;
  box-shadow: 0 6px 24px rgba(240,90,30,0.4);
}

.btn-cta-purple {
  background: var(--purple);
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.btn-cta-purple:hover {
  background: #6d28d9;
  box-shadow: 0 6px 24px rgba(124,58,237,0.45);
}

.btn-cta-teal {
  background: var(--teal);
  box-shadow: 0 4px 16px rgba(8,145,178,0.3);
}
.btn-cta-teal:hover {
  background: #0672a0;
  box-shadow: 0 6px 24px rgba(8,145,178,0.45);
}

.btn-cta-water {
  background: var(--water);
  box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}
.btn-cta-water:hover {
  background: #0284c7;
  box-shadow: 0 6px 24px rgba(14,165,233,0.45);
}

/* ── Content Section ── */
.content-section { padding: 3rem 0; background: var(--bg); }

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-xs);
}
.content-card h2 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.content-card h3 { color: var(--text-primary); }
.content-card p  { color: var(--text-secondary); }

.icon-h { color: var(--accent); font-size: 1.1rem; }

/* Gas/Phone/Internet themed cards */
.gas-theme     { border-left: 3px solid rgba(240,90,30,0.4); }
.gas-theme h2  { color: var(--orange); }
.phone-theme   { border-left: 3px solid rgba(124,58,237,0.4); }
.phone-theme h2 { color: var(--purple); }
.internet-theme { border-left: 3px solid rgba(8,145,178,0.4); }
.internet-theme h2 { color: var(--teal); }
.water-theme   { border-left: 3px solid rgba(14,165,233,0.4); }
.water-theme h2 { color: var(--water); }

/* Info Alert */
.info-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(30,127,240,0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.info-alert .alert-icon { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-alert.orange { background: rgba(240,90,30,0.06); border-left-color: var(--orange); }
.info-alert.orange .alert-icon { color: var(--orange); }
.info-alert.green  { background: rgba(5,150,105,0.06); border-left-color: var(--green); }
.info-alert.green .alert-icon  { color: var(--green); }
.info-alert.purple { background: rgba(124,58,237,0.06); border-left-color: var(--purple); }
.info-alert.purple .alert-icon { color: var(--purple); }
.info-alert.teal   { background: rgba(8,145,178,0.06); border-left-color: var(--teal); }
.info-alert.teal .alert-icon   { color: var(--teal); }

/* Tables */
.table { color: var(--text-secondary); }
.table thead th {
  background: var(--surface-2);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--border);
  padding: 0.75rem 1rem;
}
.table tbody td {
  border-color: var(--border-light);
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  vertical-align: middle;
}
.table-striped tbody tr:nth-of-type(odd) { background: var(--surface-2); }
.table-hover tbody tr:hover { background: rgba(30,127,240,0.04); }
.table-gas thead th { background: rgba(240,90,30,0.07); color: var(--orange); }
.table-purple thead th { background: rgba(124,58,237,0.07); color: var(--purple); }
.table-teal thead th { background: rgba(8,145,178,0.07); color: var(--teal); }
.table-water thead th { background: rgba(14,165,233,0.07); color: var(--water); }

/* List Groups */
.list-group-item {
  border-color: var(--border-light);
  color: var(--text-secondary);
  background: transparent;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  gap: 0.9rem;
}
.list-group-item:first-child { border-top: none; }
.step-num {
  min-width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30,127,240,0.3);
}
.step-num.orange { background: var(--orange); box-shadow: 0 2px 8px rgba(240,90,30,0.3); }
.step-num.purple { background: var(--purple); box-shadow: 0 2px 8px rgba(124,58,237,0.3); }
.step-num.teal   { background: var(--teal);   box-shadow: 0 2px 8px rgba(8,145,178,0.3); }
.step-num.water  { background: var(--water);  box-shadow: 0 2px 8px rgba(14,165,233,0.3); }

/* FAQ Accordion */
.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--surface);
  padding: 1rem 1.2rem;
}
.accordion-button:not(.collapsed) {
  color: var(--accent);
  background: rgba(30,127,240,0.05);
  box-shadow: none;
}
.accordion-button::after { filter: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0 1.2rem 1.2rem;
  background: var(--surface);
}

.faq-gas .accordion-button:not(.collapsed)       { color: var(--orange); background: rgba(240,90,30,0.05); }
.faq-phone .accordion-button:not(.collapsed)     { color: var(--purple); background: rgba(124,58,237,0.05); }
.faq-internet .accordion-button:not(.collapsed)  { color: var(--teal);  background: rgba(8,145,178,0.05); }
.faq-water .accordion-button:not(.collapsed)     { color: var(--water); background: rgba(14,165,233,0.05); }

/* ── Hub Page Styles ── */
.hub-hero {
  background: linear-gradient(145deg, #eef3fc 0%, #f4f8fe 60%, #e8f0fd 100%);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

/* "See Also" Sidebar */
.see-also-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
}
.see-also-card h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.see-also-list { list-style: none; padding: 0; margin: 0; }
.see-also-list li { border-bottom: 1px solid var(--border-light); }
.see-also-list li:last-child { border-bottom: none; }
.see-also-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.see-also-list a:hover { color: var(--accent); padding-left: 0.3rem; }
.see-also-list a i { font-size: 0.85rem; color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-heading {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.9rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  display: block;
  padding: 0.28rem 0;
  transition: var(--transition);
}
.footer-links li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── card count badge ── */
.card-count-badge {
  background: rgba(30,127,240,0.1);
  border: 1px solid rgba(30,127,240,0.2);
  border-radius: 50px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ── Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(30,127,240,0.4);
  cursor: pointer;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(30,127,240,0.5); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* Anim cards */
.anim-card { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
.anim-card.visible { opacity: 1; transform: translateY(0); }

/* ── Utilities ── */
.text-accent   { color: var(--accent) !important; }
.text-orange   { color: var(--orange) !important; }
.text-purple   { color: var(--purple) !important; }
.text-teal     { color: var(--teal) !important; }
.text-water    { color: var(--water) !important; }
.text-green    { color: var(--green) !important; }
.bg-surface    { background: var(--surface); }

/* COMPANIES */
.company {
    width: 100px;
    height: 100px;
    display: inline-block;
	border-radius:100px;
	padding-top:34px;
	font-size:20px;
	font-weight:bold;
	color:transparent;
    background-image: url("/images/companies.png");
    background-color: transparent;
    transition: background-color 0.3s, opacity 0.3s, color 0.3s;
}

.company:hover {
    /* This blends the white background into the image, making it appear lighter/faded */
    background-color: rgba(255, 255, 255, 0.9);
    background-blend-mode: lighten;
	color:var(--accent);
}

.company.iesco {
	background-position:0px 0px;
}
.company.lesco {
	background-position:0px -100px;
}
.company.mepco {
	background-position:0px -200px;
}
.company.ajk {
	background-position:0px -300px;
}
.company.fesco {
	background-position:0px -400px;
}
.company.gepco {
	background-position:0px -500px;
}
.company.hazeco {
	background-position:0px -600px;
}
.company.hesco {
	background-position:0px -700px;
}
.company.pesco {
	background-position:0px -800px;
}
.company.ptcl {
	background-position:0px -900px;
}
.company.qesco {
	background-position:0px -1000px;
}
.company.sepco {
	background-position:0px -1100px;
}
.company.sngpl {
	background-position:0px -1200px;
}
.company.ssgc {
	background-position:0px -1300px;
}
.company.tesco {
	background-position:0px -1400px;
}
.company.wasa {
	background-position:0px -1500px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .navbar-nav { padding: 0.5rem 0; }
  .navbar-nav .nav-link { padding: 0.5rem 0.5rem !important; }
}
@media (max-width: 768px) {
  .hero-section  { padding: 3.5rem 0 2.5rem; }
  .split-card    { padding: 1.6rem 1.4rem; }
  .content-card  { padding: 1.4rem 1.2rem; }
  .company-hero  { padding: 2.5rem 0 2rem; }
  .stat-value    { font-size: 1.5rem; }
}
@media (max-width: 576px) {
  .split-icon   { width: 52px; height: 52px; font-size: 1.5rem; }
  .btn-cta      { width: 100%; justify-content: center; }
  .filter-tabs  { gap: 0.35rem; }
  .filter-btn   { font-size: 0.75rem; padding: 0.32rem 0.8rem; }
}
