/* ============================================================
   BangBang Electrician — Main Stylesheet
   Colors: #FFB800 (yellow), #1A1A2E (dark navy), #FFFFFF
   Mobile-first responsive design
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FFB800;
  --yellow-dark: #E0A200;
  --yellow-light: #FFF3CC;
  --navy: #1A1A2E;
  --navy-mid: #16213E;
  --navy-light: #0F3460;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --red: #E53E3E;
  --green: #38A169;
  --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.20);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 96px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.text-yellow { color: var(--yellow); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-600); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,184,0,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Phone CTA button */
.btn-phone {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 24px;
}
.btn-phone:hover {
  background: var(--yellow-dark);
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(255,184,0,0.4);
}
.btn-phone .icon { font-size: 1.1em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.logo-text { color: var(--white); }
.logo-text .main { font-size: 1.1rem; font-weight: 800; line-height: 1.2; }
.logo-text .sub { font-size: 0.7rem; color: var(--yellow); letter-spacing: 0.05em; }

/* Nav */
.site-nav { display: none; }
.site-nav ul { display: flex; gap: 4px; align-items: center; }
.site-nav a {
  color: var(--gray-200);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--yellow);
  background: rgba(255,184,0,0.1);
}

/* Has dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-toggle::after { content: ' ▾'; font-size: 0.7em; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 14px 8px 8px;
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--gray-200);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
  background: rgba(255,184,0,0.12);
  color: var(--yellow);
}

/* Header right */
.header-actions { display: flex; align-items: center; gap: 8px; }

.lang-btn {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,0.2); }

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--gray-200);
  padding: 12px 20px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--yellow); background: rgba(255,184,0,0.08); }
.mobile-nav .mobile-section-title {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px 6px;
}

/* Tablet+ nav */
@media (min-width: 1024px) {
  .site-nav { display: block; }
  .hamburger { display: none; }
}

/* ---------- Top Bar (emergency) ---------- */
.top-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
}
.top-bar a { color: var(--yellow); }

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #0D1B4E 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,184,0,0.15);
  border: 1px solid rgba(255,184,0,0.4);
  color: var(--yellow);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--yellow); }

.hero-desc {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.trust-item .icon { font-size: 1.1rem; }

/* Hero card (right side) */
.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 400px;
  margin: 0 auto;
}
.hero-card h3 { color: var(--yellow); margin-bottom: 20px; text-align: center; }
.service-quick-list { display: flex; flex-direction: column; gap: 10px; }
.service-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.service-quick-item .svc-icon { font-size: 1.2rem; flex-shrink: 0; }
.hero-card .btn { margin-top: 20px; width: 100%; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1fr 420px; }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--yellow);
  padding: 24px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--navy-light); font-weight: 500; margin-top: 4px; }

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card .learn-more {
  color: var(--yellow-dark);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ---------- Features / Why Us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  border: 3px solid var(--yellow);
}
.feature-item h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.875rem; color: var(--gray-600); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--yellow);
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.875rem; }
.testimonial-location { font-size: 0.8rem; color: var(--gray-400); }

/* ---------- Service Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.area-tag:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
}

/* Map placeholder */
.map-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 32px;
}
.map-placeholder .icon { font-size: 3rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 12px; }
.cta-banner p { color: var(--navy-light); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Emergency CTA */
.emergency-banner {
  background: var(--red);
  padding: 48px 0;
  text-align: center;
  color: var(--white);
}
.emergency-banner h2 { color: var(--white); margin-bottom: 12px; }
.emergency-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.footer-contact-item .icon { font-size: 1rem; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 56px 0 48px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* ---------- Content / Prose ---------- */
.prose h2 { margin-top: 40px; margin-bottom: 16px; padding-top: 8px; border-top: 3px solid var(--yellow); }
.prose h3 { margin-top: 28px; margin-bottom: 12px; }
.prose p { margin-bottom: 16px; color: var(--gray-600); }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 24px; color: var(--gray-600); }
.prose li { margin-bottom: 8px; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--navy); }

/* ---------- Price Table ---------- */
.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
}
.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.price-table tr:nth-child(even) td { background: var(--gray-50); }
.price-table .price { font-weight: 700; color: var(--navy); }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { background: var(--yellow-light); color: var(--navy); }
.faq-toggle { font-size: 1.2rem; color: var(--yellow); transition: transform var(--transition); }
.faq-question.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.faq-answer.open { display: block; }

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--yellow); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 20px; }
.blog-category {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--navy);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--gray-600); }
.blog-card-meta { font-size: 0.8rem; color: var(--gray-400); margin-top: 12px; }

/* ---------- Sidebar Layout ---------- */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  .content-sidebar { grid-template-columns: 1fr 320px; }
}

.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sidebar-card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
}
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li a {
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-card ul li a::before { content: '→'; color: var(--yellow); }
.sidebar-card ul li a:hover { color: var(--yellow); }

.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 28px;
  border-radius: var(--radius-md);
}
.sidebar-cta h4 { color: var(--yellow); margin-bottom: 12px; }
.sidebar-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.sidebar-cta .phone-num { font-size: 1.3rem; font-weight: 800; color: var(--yellow); }

/* ---------- Contact Form ---------- */
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Notice / Alert Boxes ---------- */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin: 20px 0;
  display: flex;
  gap: 10px;
}
.notice-warning { background: #FFF8E6; border-left: 4px solid var(--yellow); color: #92600A; }
.notice-info { background: #EFF6FF; border-left: 4px solid #3B82F6; color: #1E40AF; }
.notice-success { background: #F0FDF4; border-left: 4px solid var(--green); color: #166534; }
.notice-danger { background: #FEF2F2; border-left: 4px solid var(--red); color: #991B1B; }

/* ---------- Checklist ---------- */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.checklist-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Process Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 14px;
}
.step-item h4 { font-size: 0.95rem; margin-bottom: 8px; }
.step-item p { font-size: 0.85rem; color: var(--gray-600); }

/* ---------- Tags ---------- */
.tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 3px;
}
.tag-yellow { background: var(--yellow-light); color: var(--navy); }
.tag-navy { background: var(--navy); color: var(--white); }

/* ---------- Floating Phone Button ---------- */
.float-phone {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,184,0,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.float-phone:hover {
  background: var(--yellow-dark);
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(255,184,0,0.6);
}
@media (min-width: 1024px) { .float-phone { display: none; } }

/* ---------- Utility ---------- */
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.bg-yellow { background: var(--yellow-light); }
.divider { height: 1px; background: var(--gray-200); margin: 32px 0; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font-sans);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 998;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--yellow); color: var(--navy); }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .section { padding: 48px 0; }
  .hero-btns .btn-lg { font-size: 1rem; padding: 14px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Print */
@media print {
  .site-header, .float-phone, .scroll-top, .mobile-nav { display: none !important; }
}

/* ============================================================
   PLAN C — Lead Funnel Components
   Added: Promo Bar, Float Dual Buttons, Platform Intro,
          Blog CTA Block, Service Bottom CTA
   ============================================================ */

/* ---------- Promo Bar ---------- */
.promo-bar {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 10px 48px 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}
.promo-bar a {
  background: var(--navy);
  color: var(--yellow);
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
}
.promo-bar a:hover {
  background: var(--navy-light);
  transform: scale(1.04);
}
.promo-bar-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1;
  opacity: 0.55;
  padding: 4px 6px;
  font-family: var(--font-sans);
}
.promo-bar-close:hover { opacity: 1; }

/* ---------- Float Buttons Cluster ---------- */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
@media (min-width: 1024px) { .float-btns { display: none; } }

.float-phone-btn {
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,184,0,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.float-phone-btn:hover {
  background: var(--yellow-dark);
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(255,184,0,0.6);
}
.float-cta-btn {
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(26,26,46,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.float-cta-btn:hover {
  background: var(--navy-light);
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(26,26,46,0.55);
}

/* ---------- Platform Intro Section ---------- */
.platform-intro {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}
.platform-intro h2 { color: var(--white); margin-bottom: 12px; }
.platform-intro .section-subtitle { color: rgba(255,255,255,0.72); margin-bottom: 52px; }
.platform-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.platform-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 20px 24px;
  transition: all var(--transition);
}
.platform-step:hover {
  background: rgba(255,184,0,0.10);
  border-color: rgba(255,184,0,0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.platform-step .ps-num {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 16px;
}
.platform-step .ps-icon { font-size: 2.2rem; margin-bottom: 12px; }
.platform-step h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.platform-step p { color: rgba(255,255,255,0.68); font-size: 0.85rem; line-height: 1.6; }
.platform-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
}
.platform-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.80);
  font-size: 0.875rem;
  font-weight: 500;
}
.platform-trust-item .icon { color: var(--yellow); font-size: 1.05rem; }

/* ---------- Blog CTA Block ---------- */
.blog-cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  margin: 48px 0 24px;
  color: var(--white);
}
.blog-cta-block h3 { color: var(--yellow); font-size: 1.4rem; margin-bottom: 12px; }
.blog-cta-block p { color: rgba(255,255,255,0.78); margin-bottom: 28px; font-size: 0.95rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.blog-cta-block .cta-btns { justify-content: center; }
.blog-cta-block .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.blog-cta-block .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ---------- Service Bottom CTA ---------- */
.service-bottom-cta {
  background: linear-gradient(135deg, #FFF8E6 0%, #FFFBF0 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin: 40px 0;
}
.service-bottom-cta h3 { color: var(--navy); margin-bottom: 10px; }
.service-bottom-cta p { color: var(--gray-600); margin-bottom: 28px; }
.service-bottom-cta .cta-btns { justify-content: center; }

/* Desktop header — also show "Post Job" CTA */
@media (min-width: 1024px) {
  .header-post-job {
    display: inline-flex !important;
  }
}

/* ---------- Footer Partner Links ---------- */
.footer-partners {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-partners-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.partner-link:hover {
  color: var(--yellow);
  border-color: rgba(255,184,0,0.35);
  background: rgba(255,184,0,0.06);
}
