/* ============================================================
   TradeFlix — Professional Trade Services
   Modern, Clean, Mobile-First CSS
   ============================================================ */

/* ─── CSS Variables ─── */
:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --success: #059669;
  --success-light: #10b981;
  --danger: #dc2626;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.2s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: rgba(30,64,175,0.15); color: var(--navy); }

/* ─── Container ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ─── Top Bar ─── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  display: none;
}
@media (min-width: 768px) { .top-bar { display: block; } }
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--slate-300); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-left span, .top-bar-right span { display: flex; align-items: center; gap: 6px; }

/* ─── Header ─── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 4px; }
}
.nav-desktop a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-desktop a:hover { color: var(--primary); background: var(--slate-50); }
.nav-desktop a.active { color: var(--primary); font-weight: 600; }
.header-cta { display: none; }
@media (min-width: 768px) {
  .header-cta { display: flex; align-items: center; gap: 12px; }
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--navy); }

/* ─── Mobile Menu ─── */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--slate-50); color: var(--primary); }
.mobile-nav .divider { height: 1px; background: var(--slate-200); margin: 8px 0; }
.mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-cta .btn-primary, .mobile-cta .btn-accent { justify-content: center; width: 100%; padding: 14px; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--slate-800) 100%);
  color: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
@media (min-width: 768px) { .hero { padding: 80px 0 100px; } }
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 20px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  max-width: 700px;
}
@media (min-width: 768px) { .hero h1 { font-size: 44px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 52px; } }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.hero-trust-item svg { color: var(--success-light); width: 18px; height: 18px; flex-shrink: 0; }
.hero-trust-item strong { color: var(--white); }

/* ─── Emergency Banner ─── */
.emergency-banner {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 12px 0;
  text-align: center;
}
.emergency-banner p {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.emergency-banner a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* ─── Section Styles ─── */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-dark .section-label { color: var(--primary-light); }
.section-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .section-header h2 { font-size: 36px; } }
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 16px;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p { color: var(--slate-400); }

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: inherit;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--slate-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card .tagline {
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 16px;
  line-height: 1.5;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  flex: 1;
}
.service-features li {
  font-size: 13px;
  color: var(--slate-600);
  padding-left: 22px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 8px;
  background-position: center;
  background-repeat: no-repeat;
}
.service-callout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(245,158,11,0.1);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.service-card:hover .service-link { gap: 10px; }

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.step-card { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ─── Reviews ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--slate-600); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.review-meta { font-size: 12px; color: var(--slate-500); }

/* ─── Map Section ─── */
.map-section { position: relative; }
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
}
@media (min-width: 768px) { .map-container { height: 500px; } }
.map-container iframe { width: 100%; height: 100%; border: 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 24px;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(5, 1fr); } }
.area-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  transition: var(--transition);
  text-decoration: none;
}
.area-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(30,64,175,0.04);
}
.area-chip svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; }
@media (min-width: 768px) { .cta-section h2 { font-size: 40px; } }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 500px; margin: 0 auto 28px; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--slate-400); }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  color: var(--slate-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo span { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--slate-400); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--slate-500); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── SEO Internal Links Bar ─── */
.seo-links-bar {
  background: var(--slate-800);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.seo-links-bar .container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.seo-links-bar a {
  font-size: 12px;
  color: var(--slate-500);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: var(--transition);
}
.seo-links-bar a:hover { color: var(--white); border-color: rgba(255,255,255,0.15); }

/* ─── Quote Form ─── */
.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-input, .form-select, .form-textarea {
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-600);
  cursor: pointer;
}
.form-checkbox input { margin-top: 2px; accent-color: var(--primary); }
.form-error {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--danger);
  display: none;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success svg { width: 56px; height: 56px; color: var(--success); margin: 0 auto 16px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--slate-500); }
.form-success .ref-code {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  font-family: monospace;
  margin: 12px 0;
}

/* ─── Breadcrumbs ─── */
.breadcrumbs {
  padding: 12px 0;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li::after { content: '/'; color: var(--slate-400); }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--slate-500); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .current { color: var(--navy); font-weight: 500; }

/* ─── Service Page Hero ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate-800) 100%);
  color: var(--white);
  padding: 48px 0;
  position: relative;
}
@media (min-width: 768px) { .page-hero { padding: 64px 0; } }
.page-hero h1 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
@media (min-width: 768px) { .page-hero h1 { font-size: 38px; } }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 600px; line-height: 1.7; }

/* ─── Content Sections ─── */
.content-section { max-width: 800px; }
.content-section h2 { font-size: 24px; margin-bottom: 16px; margin-top: 40px; }
.content-section h2:first-child { margin-top: 0; }
.content-section p { font-size: 15px; color: var(--slate-600); line-height: 1.8; margin-bottom: 16px; }
.content-section ul { margin-bottom: 16px; }
.content-section ul li {
  font-size: 15px;
  color: var(--slate-600);
  padding: 6px 0 6px 24px;
  position: relative;
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* ─── Price Box ─── */
.price-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.price-box h3 { font-size: 16px; margin-bottom: 8px; }
.price-box p { font-size: 14px; color: var(--slate-600); margin: 0; }

/* ─── Sidebar ─── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) { .page-layout { grid-template-columns: 1fr 400px; } }
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h3 { font-size: 16px; margin-bottom: 16px; }
.sidebar-card .form-grid { grid-template-columns: 1fr !important; }
.sidebar-card .form-group.full { grid-column: 1; }
.sidebar-card .quote-form-wrap { padding: 0; }
.sidebar-card .price-box { padding: 12px 16px; }
.sidebar-card .price-box h3 { font-size: 13px; }
.sidebar-card .price-box p { font-size: 12px; }
.sidebar-card .form-input,
.sidebar-card .form-select,
.sidebar-card .form-textarea { font-size: 14px; padding: 10px 12px; }
.sidebar-card .form-label { font-size: 12px; }
.sidebar-card .form-checkbox { font-size: 13px; }
.sidebar-card button[type="submit"] { padding: 12px 16px; font-size: 14px; }

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  z-index: 10000;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.active { display: block; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-inner p { font-size: 13px; color: var(--slate-300); flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--primary-light); }
.cookie-buttons { display: flex; gap: 8px; }

/* ─── Sticky Mobile CTA ─── */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 10px 16px;
  z-index: 999;
  display: flex;
  gap: 8px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
@media (min-width: 768px) { .mobile-sticky-cta { display: none; } }
.mobile-sticky-cta a { flex: 1; text-align: center; justify-content: center; padding: 12px; font-size: 14px; }

/* ─── WhatsApp Button ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: var(--transition);
  color: var(--white);
}
@media (min-width: 768px) { .whatsapp-btn { bottom: 24px; right: 24px; } }
.whatsapp-btn:hover { transform: scale(1.1); background: #20ba5a; color: var(--white); }
.whatsapp-btn svg { width: 28px; height: 28px; }

/* ─── Trust Badges ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
}
.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--slate-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; color: var(--primary); }
.trust-item h4 { font-size: 14px; margin-bottom: 4px; }
.trust-item p { font-size: 12px; color: var(--slate-500); }

/* ─── Blog Cards ─── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); color: inherit; }
.blog-card-img {
  height: 180px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 8px;
}
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--slate-500); line-height: 1.6; flex: 1; }
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--slate-400);
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* ─── Print ─── */
@media print {
  .header, .footer, .mobile-sticky-cta, .whatsapp-btn, .cookie-banner, .top-bar, .emergency-banner { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
