/* ============================================
   Rapid Response Towing - Website Template
   Aesthetic: Urgent, Reliable & 24/7
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --primary: #B91C1C;
  --primary-dark: #991B1B;
  --primary-light: #DC2626;
  --secondary: #F59E0B;
  --secondary-dark: #D97706;
  --secondary-light: #FBBF24;
  --accent: #FEF2F2;
  --white: #FFFFFF;
  --off-white: #FFF7ED;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --dark: #0F0F0F;
  --dark-surface: #1A1A1A;

  /* Typography */
  --font-heading: 'Signika', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 4px 20px rgba(185, 28, 28, 0.25);
  --shadow-amber: 0 4px 20px rgba(245, 158, 11, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p + p {
  margin-top: 1rem;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--gray-300);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--accent {
  background: var(--accent);
}

.section--gray {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section--dark .section-header .label {
  color: var(--secondary);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
}

.section--dark .section-header p {
  color: var(--gray-400);
}

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

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--gray-900);
}

.btn--secondary:hover {
  background: var(--secondary-dark);
  box-shadow: var(--shadow-amber);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--gray-900);
}

.btn--dark {
  background: var(--gray-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn--phone {
  background: var(--primary);
  color: var(--white);
  font-size: 1.2rem;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  letter-spacing: 0.02em;
}

.btn--phone:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn--phone i {
  font-size: 1.1rem;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-5deg); }
  50%, 100% { transform: rotate(0deg); }
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo i {
  font-size: 1.5rem;
  color: var(--primary);
}

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

.nav-link {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.header-cta:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-red);
}

.header-cta i {
  animation: ring 2s ease-in-out infinite;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero (Home) --- */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(15,15,15,0.88) 0%, rgba(28,25,23,0.78) 60%, rgba(153,27,27,0.72) 100%), url('images/placeholder.jpg') center center / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero-badge i {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

.hero h1 span {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-300);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 24px rgba(185, 28, 28, 0.4);
}

.hero-phone:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(185, 28, 28, 0.5);
}

.hero-phone i {
  font-size: 1.2rem;
  animation: ring 2s ease-in-out infinite;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* --- Page Hero (Interior pages) --- */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--dark) 0%, #1C1917 100%);
  color: var(--white);
  text-align: center;
}

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

.page-hero p {
  font-size: 1.15rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 12px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

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

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section--dark .service-card {
  background: var(--dark-surface);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .service-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.section--dark .service-card-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--secondary);
}

.section--dark .service-card p {
  color: var(--gray-400);
}

/* --- Response Time / Guarantee --- */
.guarantee {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.guarantee h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.guarantee p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 24px;
}

.guarantee-time {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.guarantee-time i {
  font-size: 2.5rem;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- CTA Section --- */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1C1917 60%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 550px;
  margin: 0 auto 32px;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

.cta-phone i {
  animation: ring 2s ease-in-out infinite;
}

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

/* --- About Page --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-image {
  height: 400px;
  border-radius: var(--radius-lg);
  background: url('images/placeholder.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.1), rgba(245, 158, 11, 0.05));
}

.story-content h2 {
  margin-bottom: 20px;
}

.story-content p {
  margin-bottom: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

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

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  color: var(--secondary);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

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

.value-card p {
  font-size: 0.95rem;
  color: var(--gray-400);
}

/* Team / Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
}

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

.fleet-card-image {
  height: 220px;
  background: var(--gray-200) center center / cover no-repeat;
  position: relative;
}

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

.fleet-card h3 {
  margin-bottom: 8px;
}

.fleet-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.section--dark .stat-number {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.section--dark .stat-label {
  color: var(--gray-400);
}

/* --- Services Page --- */
.detailed-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.detailed-service:last-child {
  border-bottom: none;
}

.detailed-service.reverse {
  direction: rtl;
}

.detailed-service.reverse > * {
  direction: ltr;
}

.service-image {
  height: 320px;
  border-radius: var(--radius-lg);
  background: var(--gray-200) center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.service-features {
  margin-top: 16px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.service-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--accent);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
}

.service-price .from {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.service-price .amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* Service Area */
.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.area-map-placeholder {
  height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 3rem;
}

.area-content h3 {
  margin-bottom: 16px;
}

.area-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.area-list li i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* Pricing Transparency */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.pricing-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  color: var(--secondary);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.pricing-card ul {
  text-align: left;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.pricing-card ul li i {
  color: var(--secondary);
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* --- Contact Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

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

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

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dispatch-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.dispatch-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.dispatch-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.dispatch-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}

.dispatch-phone:hover {
  color: var(--secondary);
}

.info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
}

.info-card h4 {
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.info-item i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.info-item span {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.accepted-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  transition: color var(--transition-fast);
}

.footer-phone:hover {
  color: var(--secondary-light);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.95rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* --- Emergency Banner (top of pages) --- */
.emergency-bar {
  background: var(--secondary);
  color: var(--gray-900);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.emergency-bar a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

.emergency-bar + .header {
  top: 36px;
}

.emergency-bar ~ .hero,
.emergency-bar ~ .page-hero {
  padding-top: 176px;
}

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

  .story-grid,
  .detailed-service,
  .service-area,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .detailed-service.reverse {
    direction: ltr;
  }

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

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

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 0;
    z-index: 99;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 2rem;
    width: 100%;
    text-align: center;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 160px 0 60px;
  }

  .page-hero {
    padding: 160px 0 48px;
  }

  .services-grid,
  .testimonials-grid,
  .values-grid,
  .fleet-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-phone {
    font-size: 1.2rem;
    padding: 14px 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .emergency-bar ~ .hero {
    padding-top: 196px;
  }

  .emergency-bar ~ .page-hero {
    padding-top: 196px;
  }

  .area-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .hero-phone {
    justify-content: center;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .guarantee-time {
    font-size: 2.2rem;
  }

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

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
