/* ============================================
   Towing Raub - Main Stylesheet
   Rugged but Light Design
   Mobile-first Responsive
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors - Rugged but Light */
  --primary: #2b2d42;
  --primary-light: #3d405b;
  --primary-dark: #1a1b2e;
  --accent: #d62828;
  --accent-hover: #b71c1c;
  --accent-light: #ff6b6b;
  --secondary: #386641;
  --secondary-light: #4a7c59;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ead50;
  --whatsapp-light: #dcf8e6;

  --bg: #ffffff;
  --bg-alt: #f8f7f4;
  --bg-warm: #f5f0e8;
  --bg-dark: #2b2d42;
  --bg-dark-alt: #1a1b2e;

  --text: #333333;
  --text-muted: #6c757d;
  --text-light: #999999;
  --text-on-dark: #f0f0f0;
  --text-on-primary: #ffffff;

  --border: #e0ddd5;
  --border-light: #eee;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: clamp(0.75rem, 1.5vw, 0.8rem);
  --font-size-sm: clamp(0.8rem, 1.8vw, 0.875rem);
  --font-size-base: clamp(0.9rem, 2vw, 1rem);
  --font-size-lg: clamp(1rem, 2.2vw, 1.125rem);
  --font-size-xl: clamp(1.1rem, 2.5vw, 1.25rem);
  --font-size-2xl: clamp(1.25rem, 3vw, 1.5rem);
  --font-size-3xl: clamp(1.5rem, 3.5vw, 1.875rem);
  --font-size-4xl: clamp(1.75rem, 4vw, 2.25rem);
  --font-size-5xl: clamp(2rem, 5vw, 3rem);

  --line-height: 1.7;
  --line-height-tight: 1.3;

  --header-height: 70px;
  --container-max: 1200px;

  --transition: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--accent-hover);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-tight);
  color: var(--primary);
  font-weight: 700;
}

h1 { font-size: var(--font-size-5xl); margin-bottom: var(--space-lg); }
h2 { font-size: var(--font-size-4xl); margin-bottom: var(--space-md); }
h3 { font-size: var(--font-size-2xl); margin-bottom: var(--space-sm); }
h4 { font-size: var(--font-size-xl); margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-md);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--warm {
  background-color: var(--bg-warm);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--text-muted); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-header p {
  color: var(--text-muted);
  font-size: var(--font-size-lg);
}

.section-label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section--dark .section-label {
  color: var(--accent-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-align: center;
  min-height: 44px;
  border: 2px solid transparent;
}

.btn--call {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--call:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background-color: var(--whatsapp-hover);
  border-color: var(--whatsapp-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn--outline-light {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--outline-light:hover {
  background-color: #fff;
  color: var(--primary);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.btn--full {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn svg,
.btn .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Header & Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition), background-color var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.99);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 1001;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__logo-text {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.header__logo-text span {
  color: var(--accent);
}

/* Desktop Nav */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  color: var(--text);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--accent);
  background-color: rgba(214, 40, 40, 0.05);
}

.nav__link--active {
  font-weight: 600;
}

.nav__arrow {
  font-size: 10px;
  transition: transform var(--transition);
}

.nav__item:hover .nav__arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  padding: var(--space-sm) 0;
  z-index: 1002;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  font-size: var(--font-size-sm);
  transition: all var(--transition);
}

.nav__dropdown-link:hover {
  background-color: var(--bg-alt);
  color: var(--accent);
  padding-left: 1.25rem;
}

/* Header CTA */
.header__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 44px;
  z-index: 1001;
  padding: 0;
}

.hamburger__line {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

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

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-md) 120px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav__list {
  border-top: 1px solid var(--border-light);
}

.mobile-nav__item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  color: var(--text);
  font-size: var(--font-size-lg);
  font-weight: 500;
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: var(--accent);
}

.mobile-nav__arrow {
  font-size: 12px;
  transition: transform var(--transition);
}

.mobile-nav__arrow.rotated {
  transform: rotate(180deg);
}

.mobile-nav__submenu {
  display: none;
  padding: 0 0 var(--space-sm) var(--space-md);
}

.mobile-nav__submenu.open {
  display: block;
}

.mobile-nav__submenu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: var(--font-size-base);
}

.mobile-nav__submenu a:hover {
  color: var(--accent);
}

.mobile-nav__cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-light) 50%, #4a4e69 100%);
  color: #fff;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.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");
  z-index: 0;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(4px);
}

.hero__badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  color: #fff;
  max-width: 700px;
  font-weight: 800;
}

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

.hero__subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.hero__phone {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero__phone a {
  color: #fff;
}

.hero__phone a:hover {
  color: var(--accent-light);
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
}

.hero__feature svg {
  width: 18px;
  height: 18px;
  color: var(--whatsapp);
  flex-shrink: 0;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  padding: calc(var(--header-height) + var(--space-lg)) 0 0;
  background: var(--bg-alt);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.breadcrumb__list a {
  color: var(--text-muted);
}

.breadcrumb__list a:hover {
  color: var(--accent);
}

.breadcrumb__sep {
  margin: 0 2px;
  color: var(--border);
}

.breadcrumb__current {
  color: var(--text);
  font-weight: 500;
}

/* Page Header (for inner pages) */
.page-header {
  background: var(--bg-alt);
  padding: var(--space-xl) 0 var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--text-muted);
  font-size: var(--font-size-lg);
  max-width: 700px;
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.two-col__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.two-col__content h2 {
  margin-bottom: var(--space-md);
}

.two-col__content ul {
  list-style: none;
  margin: var(--space-md) 0;
}

.two-col__content ul li {
  padding: var(--space-sm) 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}

.two-col__content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--whatsapp);
  font-weight: 700;
}

/* ---------- Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: #fff;
}

.card__icon--green {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.card__icon--blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.card h3 {
  font-size: var(--font-size-xl);
}

.card p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

/* Location Cards */
.location-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.location-card__img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
}

.location-card__body {
  padding: var(--space-lg);
}

.location-card__body h3 {
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.location-card__body h3 a {
  color: var(--primary);
}

.location-card__body h3 a:hover {
  color: var(--accent);
}

.location-card__body p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.location-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.location-card__link:hover {
  gap: 8px;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--accent);
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card h3 {
  color: var(--primary);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.service-card ul {
  margin: var(--space-md) 0 0;
}

.service-card ul li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text);
  font-size: var(--font-size-sm);
}

.service-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Feature List ---------- */
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.feature-list__item:hover {
  background: var(--bg-alt);
}

.feature-list__icon {
  width: 40px;
  height: 40px;
  background: rgba(214, 40, 40, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-list__text h4 {
  font-size: var(--font-size-base);
  margin-bottom: 2px;
}

.feature-list__text p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* ---------- Quote Form ---------- */
.quote-form-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-light) 100%);
  color: #fff;
}

.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.quote-form h3 {
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-status {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-top: var(--space-md);
  font-weight: 500;
  display: none;
}

.form-status--success {
  display: block;
  background: var(--whatsapp-light);
  color: var(--secondary);
}

.form-status--error {
  display: block;
  background: #fde8e8;
  color: var(--accent);
}

.form-status--loading {
  display: block;
  background: var(--bg-alt);
  color: var(--text-muted);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: #fff;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
  transition: background var(--transition);
  min-height: 44px;
  background: #fff;
}

.faq-item__question:hover {
  background: var(--bg-alt);
}

.faq-item__icon {
  font-size: 1.25rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
  color: var(--accent);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-muted);
  line-height: var(--line-height);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-section .btn-group {
  justify-content: center;
}

.cta-section .btn--call {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.cta-section .btn--call:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* ---------- Tables ---------- */
.response-table {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.response-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.response-table thead {
  background: var(--primary);
  color: #fff;
}

.response-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.response-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

.response-table tbody tr:nth-child(even) {
  background: var(--bg-alt);
}

.response-table tbody tr:hover {
  background: var(--bg-warm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand p {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-sm);
  margin-top: var(--space-md);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer h4 {
  color: #fff;
  font-size: var(--font-size-base);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-sm);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-sm);
}

.footer__contact-item strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer__contact-item a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: var(--font-size-xs);
}

/* ---------- Floating CTA Bar (Mobile) ---------- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  gap: var(--space-sm);
  z-index: 998;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.floating-cta .btn {
  flex: 1;
  font-size: var(--font-size-sm);
  padding: 0.7rem;
  border-radius: var(--radius);
}

/* ---------- Content Styles ---------- */
.content-section h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-section h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-section p {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.content-section ul,
.content-section ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.content-section ul {
  list-style: disc;
}

.content-section ol {
  list-style: decimal;
}

.content-section li {
  margin-bottom: var(--space-sm);
  color: var(--text);
}

/* Highlight Box */
.highlight-box {
  background: var(--bg-warm);
  border-left: 4px solid var(--accent);
  padding: var(--space-lg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-xl) 0;
}

.highlight-box h4 {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.stat-item__number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-item__label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ---------- Responsive: Tablet (768px+) ---------- */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .two-col--reverse .two-col__image {
    order: 2;
  }

  .two-col__image img {
    height: 400px;
  }

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

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

  /* Hide floating CTA on desktop */
  .floating-cta {
    display: none;
  }

  /* Show desktop nav */
  .nav {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .header__cta {
    display: flex;
    gap: var(--space-sm);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .hero {
    min-height: 550px;
  }

  .response-table {
    font-size: var(--font-size-base);
  }
}

/* ---------- Responsive: Desktop (992px+) ---------- */
@media (min-width: 992px) {
  .hero {
    padding: calc(var(--header-height) + var(--space-3xl) + 1rem) 0 var(--space-3xl);
    min-height: 600px;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col__image img {
    height: 450px;
  }

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

  .quote-form {
    padding: var(--space-2xl);
  }
}

/* ---------- Responsive: Large Desktop (1200px+) ---------- */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero h1 {
    font-size: 3.25rem;
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .header,
  .floating-cta,
  .mobile-nav,
  .btn,
  .hamburger {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .section {
    padding: 1rem 0;
  }
}
