:root {
  --bg-canvas: #0b0914;
  --bg-card: #130f24;
  --bg-card-hover: #1a1532;
  --accent-primary: #8c52ff;
  --accent-primary-hover: #7b45e8;
  --accent-success: #00e676;
  --text-base: #ffffff;
  --text-muted: #e2dfec;
  --border-color: #2d254e;
  
  --font-body: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-base);
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
}

p {
  color: var(--text-muted);
}

a {
  color: var(--text-base);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.text-primary { color: var(--accent-primary); }
.text-success { color: var(--accent-success); }
.text-muted { color: var(--text-muted); }

.bg-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(140, 82, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-primary-hover);
  box-shadow: 0 6px 20px rgba(140, 82, 255, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-base);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  background-color: rgba(140, 82, 255, 0.05);
}

/* Form Controls */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(11, 9, 20, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-base);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(140, 82, 255, 0.2);
}

.form-input::placeholder {
  color: rgba(226, 223, 236, 0.4);
}

select.form-input {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%238c52ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

/* Grids */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
  .grid-cols-4, .grid-cols-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid-cols-4, .grid-cols-5 { grid-template-columns: 1fr; }
  .hero-split { flex-direction: column; }
}

/* Section Spacing */
.section-padding { padding: 80px 0; }
.section-margin { margin: 80px 0; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Neon Glows */
.glow-primary { box-shadow: 0 0 20px rgba(140, 82, 255, 0.15); }
.glow-card:hover { box-shadow: 0 0 30px rgba(140, 82, 255, 0.1); border-color: var(--accent-primary); }

/* Navigation */
.navbar {
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(11, 9, 20, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-container {
  padding: 20px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo h1 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1;
}
.nav-logo span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.nav-links a.active {
  color: var(--accent-primary);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-primary);
  border-radius: 2px;
}
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-phone-btn { display: none; }
}

/* Hamburger Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Drawer Overlay */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 300;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open {
  display: block;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: #0d0b18;
  border-left: 1px solid rgba(140, 82, 255, 0.3);
  z-index: 400;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(140, 82, 255, 0.15);
}
.drawer-close {
  background: rgba(140, 82, 255, 0.1);
  border: 1px solid rgba(140, 82, 255, 0.3);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.drawer-close:hover {
  background: var(--accent-primary);
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  gap: 0;
  flex: 1;
}
.drawer-nav a {
  padding: 1rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--accent-primary);
  padding-left: 1.25rem;
}
.drawer-phone {
  margin: 1.25rem;
  background: rgba(140, 82, 255, 0.08);
  border: 1px solid rgba(140, 82, 255, 0.3);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.drawer-phone span {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-primary);
  font-weight: 600;
  text-transform: uppercase;
}
.drawer-phone strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

/* Nav Phone Button CTA */
.nav-phone-btn {
  background-color: rgba(11, 9, 20, 0.6);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-phone-btn:hover {
  background-color: rgba(140, 82, 255, 0.08);
  box-shadow: 0 0 15px rgba(140, 82, 255, 0.2);
}
.nav-phone-icon {
  background-color: var(--accent-primary);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.nav-phone-btn:hover .nav-phone-icon {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(140, 82, 255, 0.4);
}
.nav-phone-text {
  text-align: left;
  line-height: 1.2;
}
.nav-phone-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav-phone-text strong {
  display: block;
  color: var(--text-base);
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--bg-canvas);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
}
footer h4 {
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-links {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}
.social-icon {
  background-color: var(--bg-card);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: var(--accent-primary);
}

/* Hero Section */
.hero-section {
  background-color: var(--bg-canvas);
  background-repeat: no-repeat;
  background-position: center, center, center, right -150px center;
  position: relative;
}

@media (max-width: 992px) {
  .hero-section {
    background-position: center center, center center;
    background-size: cover, cover;
  }
}
.hero-split {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-content {
  flex: 1;
}
.hero-subtitle {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-weight: 600;
}
.hero-form-container {
  flex: 0 0 400px;
  width: 100%;
}
@media (max-width: 992px) {
  .hero-form-container { flex: 0 0 350px; }
}
@media (max-width: 768px) {
  .hero-form-container { flex: 1; }
}

/* Trust Signals Grid */
.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  background-color: rgba(140, 82, 255, 0.1);
  color: var(--accent-primary);
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.trust-text p {
  font-size: 0.875rem;
  margin: 0;
}

/* Quote Form Card */
.quote-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--accent-primary);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 30px rgba(140, 82, 255, 0.25);
  transition: all 0.3s ease;
}

.quote-form-title {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #fff;
}

.quote-form-subtitle {
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  font-family: var(--font-body);
  font-weight: 400;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border-radius: 8px;
  background-color: rgba(11, 9, 20, 0.7);
  border: 1px solid rgba(45, 37, 78, 0.8);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.25s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  border-color: var(--accent-primary);
  background-color: rgba(11, 9, 20, 0.95);
  box-shadow: 0 0 10px rgba(140, 82, 255, 0.15);
}

.input-wrapper input::placeholder {
  color: rgba(226, 223, 236, 0.5);
}

.input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: rgba(226, 223, 236, 0.5);
}

.input-wrapper select option {
  background-color: var(--bg-canvas);
  color: #fff;
}

.input-wrapper select:valid {
  color: #fff;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: rgba(226, 223, 236, 0.6);
  pointer-events: none;
  transition: color 0.2s ease;
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper select:focus ~ .input-icon {
  color: var(--accent-primary);
}

.select-chevron {
  position: absolute;
  right: 16px;
  color: rgba(226, 223, 236, 0.6);
  pointer-events: none;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  margin-top: 6px;
  border-radius: 8px;
  background-color: var(--accent-primary);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--accent-primary-hover);
  box-shadow: 0 6px 20px rgba(140, 82, 255, 0.4);
  transform: translateY(-1px);
}

/* Hero Badges */
.hero-badges {
  display: flex;
  gap: 1.5rem;
  max-width: 650px;
  margin-top: 3rem;
}
.hero-badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}
.badge-icon-wrapper {
  border: 1px solid var(--accent-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(140, 82, 255, 0.18);
  box-shadow: 0 0 10px rgba(140, 82, 255, 0.2);
  transition: all 0.3s ease;
}
.badge-icon-wrapper i,
.badge-icon-wrapper svg {
  color: #fff !important;
  stroke: #fff !important;
  transition: all 0.3s ease;
}
.hero-badge-item:hover .badge-icon-wrapper {
  background-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(140, 82, 255, 0.5);
}
.badge-title {
  font-size: 0.85rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.badge-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-badges {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .hero-badge-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

/* Car Categories */
.section-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3.5rem;
}
.section-title-container .title-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
  flex-grow: 1;
  max-width: 180px;
}
.section-title-container h2 {
  margin-bottom: 0;
  white-space: nowrap;
}
.categories-section {
  background-color: var(--bg-canvas);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
}
.category-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}
.category-item:hover {
  transform: translateY(-5px);
}
.category-title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-title {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  color: #fff;
}
.category-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(0,0,0,0.6));
  transition: all 0.3s ease;
}
.category-item:hover .category-img {
  filter: drop-shadow(0 20px 30px rgba(140, 82, 255, 0.25));
  transform: scale(1.03);
}

/* How It Works */
.section-title-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.section-title-centered h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.title-underline {
  width: 50px;
  height: 3px;
  background-color: var(--accent-primary);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(140, 82, 255, 0.6);
}
.how-it-works-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(100, 50, 200, 0.35) 0%, transparent 70%),
    #0d0b16;
  padding: 50px 0 45px;
  width: 100%;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.workflow-card {
  border: 1px solid rgba(80, 50, 140, 0.5);
  border-radius: 10px;
  padding: 1.25rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #100e1e;
  position: relative;
  transition: all 0.3s ease;
}
.workflow-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 18px rgba(140, 82, 255, 0.18);
  transform: translateY(-2px);
}
.workflow-icon-container {
  background-color: var(--accent-primary);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(140, 82, 255, 0.4);
  transition: box-shadow 0.3s ease;
}
.workflow-card:hover .workflow-icon-container {
  box-shadow: 0 6px 20px rgba(140, 82, 255, 0.6);
}
.workflow-text h4 {
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.workflow-text p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.workflow-connector-line {
  position: absolute;
  right: -14px;
  top: 50%;
  width: 14px;
  border-top: 2px dashed rgba(255, 255, 255, 0.25);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .workflow-connector-line {
    display: none;
  }
}
@media (max-width: 768px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Bar */
.cta-section {
  margin: 40px 0 0;
  width: 100%;
}
.cta-bar {
  background: #0d0b16;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-left: 4px solid var(--accent-primary);
  border-radius: 0;
  padding: 1.75rem 4rem 1.75rem 4rem;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: visible;
}

.cta-left {
  flex: 0 0 auto;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(140, 82, 255, 0.2);
}
.cta-title {
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  white-space: nowrap;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  padding: 0 2.5rem;
  flex: 1 1 auto;
}
.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.cta-phone-card {
  flex-shrink: 0;
  background-color: #0a0814;
  border: 1px solid rgba(140, 82, 255, 0.35);
  border-radius: 8px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 1.5rem;
}
.cta-phone-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(140, 82, 255, 0.25);
}
.cta-phone-icon {
  background-color: var(--accent-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(140, 82, 255, 0.4);
}
.cta-phone-text {
  text-align: left;
  line-height: 1.25;
}
.cta-phone-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.cta-phone-text strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}
.cta-phone-text small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.cta-cash-wrap {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  margin-right: 2rem;
}
.cta-cash-glow {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(140, 82, 255, 0.55) 0%, rgba(140, 82, 255, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.cta-cash-img {
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 2;
  width: 200px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  transform: rotate(-8deg);
}

@media (max-width: 1200px) {
  .cta-cash-wrap { display: none; }
}
@media (max-width: 992px) {
  .cta-bar {
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-left: 4px solid var(--accent-primary);
    overflow: hidden;
  }
  .cta-left {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }
  .cta-title { font-size: 1.3rem; white-space: normal; }
  .cta-features { padding: 0; width: 100%; }
  .cta-phone-card { margin-right: 0; justify-content: center; }
}
@media (max-width: 576px) {
  .cta-bar { padding: 1.5rem; }
  .cta-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* FAQs */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  font-size: 1.25rem;
  margin: 0;
}
.faq-answer {
  padding-top: 1rem;
  color: var(--text-muted);
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Services and other details */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-canvas);
}
.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent-primary), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(140, 82, 255, 0.15);
}
.service-card:hover::after {
  opacity: 1;
}
.service-icon-wrapper {
  background: rgba(140, 82, 255, 0.1);
  color: var(--accent-primary);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Page Header banner for inner pages */
.page-header {
  padding: 100px 0 80px;
  background: 
    linear-gradient(to top, var(--bg-canvas) 0%, rgba(11, 9, 20, 0.6) 100%),
    url('../images/hero_truck.png') no-repeat center center / cover;
  text-align: center;
}
.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Stats counter */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-card);
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-title);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* About two columns layout */
.about-section {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-content h2 {
  font-size: 2.5rem;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.7;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Service areas grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 0;
}
.area-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.area-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(140, 82, 255, 0.1);
}
.area-icon {
  color: var(--accent-primary);
  background: rgba(140, 82, 255, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.area-details h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.area-details p {
  font-size: 0.85rem;
  margin: 0;
}
@media (max-width: 992px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Two Columns */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
}
.contact-info-icon {
  background-color: rgba(140, 82, 255, 0.1);
  color: var(--accent-primary);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-text p {
  font-size: 0.95rem;
  margin: 0;
}
.contact-form-col {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem 2.5rem;
}
.contact-form-col h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.contact-form-col p {
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* FAQ Accordion Styling inside inner page */
.faq-container-box {
  max-width: 800px;
  margin: 0 auto;
}

/* Testimonials / Reviews grid */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-canvas);
}
.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.testimonial-stars {
  color: #ffb300;
  display: flex;
  gap: 4px;
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.testimonial-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   GLOBAL RESPONSIVE FIXES
   ============================================= */

@media (max-width: 992px) {
  .section-padding { padding: 60px 0; }

  /* Hero */
  .hero-split {
    flex-direction: column;
    gap: 30px;
  }
  .hero-content { text-align: center; }
  .hero-content h1 { font-size: 3.5rem !important; }

  /* Hero badges */
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  /* Hero quote form card */
  .hero-quote-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Footer */
  footer .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-content h1 { font-size: 2.8rem !important; }
  .hero-content p { font-size: 0.9rem !important; }

  /* Badges */
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* How It Works */
  .section-title-centered h2 { font-size: 1.6rem; }
  .workflow-card { flex-direction: row; }

  /* Footer */
  footer .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  footer { padding: 40px 0 30px; }
}

@media (max-width: 576px) {
  .section-padding { padding: 40px 0; }

  /* Hero */
  .hero-content h1 { font-size: 2.2rem !important; letter-spacing: -0.5px !important; }
  .hero-content p { font-size: 0.85rem !important; }

  /* Badges: single column on very small screens */
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Nav bar compact */
  .nav-container { padding: 14px 16px; }

  /* Section headings */
  h2 { font-size: 1.5rem !important; }

  /* How It Works section */
  .how-it-works-section { padding: 40px 0 35px; }
  .workflow-icon-container { width: 44px; height: 44px; }
  .workflow-text h4 { font-size: 0.78rem; }

  /* CTA bar */
  .cta-bar {
    padding: 1.5rem 1rem;
    border-left-width: 3px;
  }
  .cta-title { font-size: 1.1rem; }
  .cta-features { gap: 8px 20px; }
  .cta-feature-item { font-size: 0.75rem; }
  .cta-phone-text strong { font-size: 1.05rem; }

  /* Hero buttons */
  .hero-content .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem !important; }
  .hero-badges { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cta-title { font-size: 1rem; }
}
