/* Complete Battery Solutions - Base Styles */
/* Shared styles across all themes */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: var(--text-color);
  background: var(--bg-color);
}

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Password Gate */
.password-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.password-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.password-card h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.password-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}

.password-error.show {
  display: block;
}

.content-locked {
  display: none !important;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-light {
  padding: 60px 0;
  background: var(--bg-light, #f8f9fa);
}

.section-dark {
  padding: 60px 0;
  background: var(--primary-color, #1a365d);
  color: white;
}

/* Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md, 8px);
  margin-bottom: 1.5rem;
}

.alert-info {
  background: #e0f2fe;
  border: 1px solid #0ea5e9;
  color: #0369a1;
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  /* Colors set by theme */
}

.btn-secondary {
  background: transparent;
  /* Border color set by theme */
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.125rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg, #1a365d);
  color: var(--header-text, white);
  padding: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  height: 45px;
  width: auto;
  color: inherit;
}

.logo-icon {
  font-size: 1.5rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: inherit;
  opacity: 0.9;
}

nav a:hover,
nav a.active {
  opacity: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  font-weight: 600;
  font-size: 1rem;
  color: inherit;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: inherit;
  cursor: pointer;
  padding: 8px;
}

/* Header Theme Switcher (in header) */
.header-cta .theme-switcher {
  position: static;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: flex;
  gap: 8px;
}

.header-cta .theme-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0;
  cursor: pointer;
}

.header-cta .theme-btn.active {
  border-color: white;
  outline: none;
}

.header-cta .theme-authority {
  background: #1a365d;
}

.header-cta .theme-bold {
  background: #0a0a0a;
}

.header-cta .theme-green {
  background: #22c55e;
}

/* Legacy header classes */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-phone {
  font-weight: 600;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero-with-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/images/forklift-warehouse.jpg') center/cover no-repeat;
  color: white;
}

.hero-with-bg .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero-with-bg .hero-features .check {
  color: var(--secondary-color, #22c55e);
}

.hero-with-bg .hero-location {
  color: rgba(255, 255, 255, 0.8);
}

/* About page image section */
.about-image-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.about-image-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Service page feature image */
.service-feature-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg, 12px);
  margin: 2rem 0;
}

.hero-content {
  max-width: 700px;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-features {
  list-style: none;
  margin: 2rem 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.hero-features .check {
  font-size: 1.25rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 2rem;
}

.hero-location {
  margin-top: 2rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.service-price {
  font-weight: 600;
  margin-bottom: 16px;
}

.service-card .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Trust Bar */
.trust-bar {
  padding: 40px 0;
  text-align: center;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.trust-label {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Why Different Section */
.why-different {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 3rem;
}

.why-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.why-list .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  opacity: 0.8;
}

/* Steps Grid (new structure) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-light, #f8f9fa);
  border-radius: var(--radius-lg, 12px);
}

.step-card .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  background: var(--primary-color, #1a365d);
  color: white;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  opacity: 0.8;
}

/* Pricing Preview */
.pricing-preview {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 3rem 0;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  border-radius: 8px;
}

.pricing-item-name {
  font-weight: 500;
}

.pricing-item-price {
  font-weight: 600;
}

.pricing-cta {
  text-align: center;
  margin-top: 2rem;
}

.pricing-guarantee {
  font-style: italic;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Service Area */
.service-area {
  padding: 80px 0;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

.city-tag {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  background: var(--bg-light, #f0f0f0);
  display: inline-block;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section > p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.cta-form input,
.cta-form select {
  padding: 14px 16px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-size: 1rem;
}

.cta-form .btn {
  white-space: nowrap;
}

.cta-phone {
  font-size: 1.125rem;
}

.cta-phone a {
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--footer-bg, #1a365d);
  color: var(--footer-text, white);
  padding: 60px 0 30px;
}

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

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: inherit;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: inherit;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Legacy footer classes */
.footer {
  padding: 60px 0 30px;
}

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

.footer-brand p {
  margin-top: 16px;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer a:hover {
  opacity: 1;
}

/* Theme Switcher (for demo only) */
.theme-switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
}

.theme-switcher h4 {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: #333;
}

.theme-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.theme-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.theme-btn.active {
  outline: 3px solid #0088ff;
  outline-offset: 2px;
}

.theme-btn-authority {
  background: #0d2137;
  color: #fff;
}

.theme-btn-bold {
  background: #0a0a0a;
  color: #c4f135;
}

.theme-btn-green {
  background: #1a2e1a;
  color: #22c55e;
}

/* =============================================
   SERVICE PAGES
   ============================================= */

/* Service Hero */
.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 60px 0;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--text-light);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

.service-hero h1 {
  margin-bottom: 12px;
}

.service-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
}

/* Service Content */
.service-content {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.service-main h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-main h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-main h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.process-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.process-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.check-list .check {
  color: var(--accent);
  flex-shrink: 0;
}

/* Repair/Test Types */
.repair-type,
.test-type,
.rental-option {
  margin: 2rem 0;
  padding: 24px;
  background: var(--background-alt);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.repair-type h4,
.test-type h4,
.rental-option h4 {
  margin-top: 0;
  color: var(--primary);
}

.test-details {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.test-details li {
  margin-bottom: 8px;
}

.use-case {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Options Grid */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.option-card {
  padding: 24px;
  background: var(--background-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.option-card h4 {
  margin-top: 0;
  color: var(--primary);
}

/* Stats List */
.stat-list {
  list-style: none;
  margin: 1.5rem 0;
}

.stat-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* CTA Box */
.cta-box {
  margin-top: 3rem;
  padding: 32px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 12px;
  text-align: center;
}

.cta-box h3 {
  color: var(--text-light);
  margin-top: 0;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  padding: 24px;
  background: var(--background-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
}

.sidebar-card.pricing-card {
  border: 2px solid var(--accent);
}

.price-range {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-includes {
  list-style: none;
  margin: 20px 0;
}

.pricing-includes li {
  margin-bottom: 8px;
  color: var(--accent);
}

.pricing-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 16px;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.sidebar-card .cities {
  font-size: 0.95rem;
  line-height: 1.6;
}

.sidebar-card.emergency-card {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.emergency-card h3 {
  color: var(--text-light);
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.price-label {
  font-size: 0.95rem;
}

.price-value {
  font-weight: 600;
  color: var(--accent);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: var(--background-alt);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light, #f8f9fa);
  border-radius: var(--radius-md, 8px);
  border-left: 4px solid var(--accent, #0088ff);
}

.faq-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.faq-item p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* FAQ Page Specific */
.faq-content {
  padding: 60px 0;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category h2 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.faq-item-full {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--background-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.faq-item-full h4 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.1rem;
}

.faq-item-full p {
  margin-bottom: 0;
  opacity: 0.85;
  line-height: 1.7;
}

/* =============================================
   PAGE HERO (for non-service pages)
   ============================================= */

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   PRICING PAGE
   ============================================= */

.pricing-intro {
  padding: 60px 0 40px;
}

.pricing-promise {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-promise h2 {
  margin-bottom: 1rem;
}

.promise-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 2rem;
}

.promise-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.promise-icon {
  color: var(--accent);
  font-size: 1.25rem;
}

/* Pricing Tables */
.pricing-tables {
  padding: 40px 0 80px;
}

.pricing-category {
  margin-bottom: 60px;
}

.pricing-category h2 {
  margin-bottom: 8px;
}

.category-desc {
  opacity: 0.8;
  margin-bottom: 24px;
}

.pricing-table {
  background: var(--bg-light, #f8f9fa);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color, #e2e8f0);
  margin-bottom: 20px;
}

.pricing-table h3 {
  background: var(--primary-color, #1a365d);
  color: white;
  padding: 16px 24px;
  margin: 0;
  font-size: 1.125rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
  align-items: center;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row .service-name {
  font-weight: 500;
}

.pricing-row .price {
  font-weight: 600;
  color: var(--accent, #0088ff);
}

/* Legacy 3-column pricing row */
.pricing-row.header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
}

.pricing-row.header-row {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.row-price {
  font-weight: 600;
  color: var(--accent);
}

.header-row .row-price {
  color: var(--text-light);
}

.row-notes {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-includes-note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.pricing-category .btn {
  margin-top: 8px;
}

/* Pricing Notes */
.pricing-notes {
  padding: 60px 0;
  background: var(--background-alt);
}

.pricing-notes h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.note-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.note-item p {
  opacity: 0.8;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-form-section h2 {
  margin-bottom: 8px;
}

.contact-form-section > p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 8px;
}

/* Contact Info */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  padding: 24px;
  background: var(--background-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.contact-email {
  font-size: 1.1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.contact-card address {
  font-style: normal;
  line-height: 1.6;
}

.contact-note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 8px;
}

.hours-list {
  margin-top: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.contact-card.emergency-card {
  background: var(--primary);
  color: var(--text-light);
}

.emergency-card h3 {
  color: var(--text-light);
}

.service-area-note {
  text-align: center;
  margin-top: 2rem;
  opacity: 0.8;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-content {
  padding: 60px 0;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro h2 {
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 60px 0;
  background: var(--background-alt);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 32px;
  background: var(--background);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.value-card p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Story Section */
.story-section {
  padding: 60px 0;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* About Service Area */
.about-service-area {
  padding: 60px 0;
  background: var(--background-alt);
  text-align: center;
}

.about-service-area h2 {
  margin-bottom: 1rem;
}

.service-area-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 600px;
  margin: 3rem auto;
  text-align: left;
}

.area-column h4 {
  margin-bottom: 16px;
  color: var(--primary);
}

.area-column ul {
  list-style: none;
}

.area-column li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.area-note {
  opacity: 0.8;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: block;
  }

  .nav-wrapper {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--header-bg, #1a365d);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    display: none;
  }

  nav.active + .header-cta,
  nav.active {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.active {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--header-bg, #1a365d);
    padding: 20px;
    z-index: 1000;
  }

  nav.active ul {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .header-cta .theme-switcher {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .trust-items {
    flex-direction: column;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Service pages responsive */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-sidebar {
    order: -1;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing page responsive */
  .promise-points {
    flex-direction: column;
    gap: 16px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-row.header-row {
    display: none;
  }

  .row-service {
    font-weight: 600;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  /* Contact page responsive */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* About page responsive */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .service-area-map {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
