:root {
  --orange: #d4883f;
  --orange-dark: #b56d2b;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --gray: #f5f5f5;
  --text: #222222;
  --text-muted: #666666;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  position: relative;
}

.logo-orange {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1px;
}

.logo-plus {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-towing {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  gap: 36px;
}

.desktop-nav a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px 4%;
  gap: 14px;
}

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

.mobile-nav a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 0;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 136, 63, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(212, 136, 63, 0.12), transparent 40%),
    linear-gradient(135deg, #1a120b 0%, #0d0d0d 50%, #1a1510 100%);
  background-size: cover;
  transition: transform 8s ease;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.7));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-slider {
  position: relative;
  min-height: 180px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-kicker {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.hero-slide h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

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

.section-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.section-title.left {
  text-align: left;
}

.section-lead {
  max-width: 850px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Intro */
.intro {
  background: var(--white);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  text-align: left;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--dark);
}

.feature p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* About split */
.about-split {
  background: var(--gray);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.split-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.split-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-card i {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}

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

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonial-slider {
  position: relative;
  min-height: 220px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quote {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}

.author {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.role {
  display: block;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.slider-dot.active {
  background: var(--orange);
}

/* Services */
.services {
  background: var(--dark);
  color: var(--white);
}

.services .section-title {
  color: var(--white);
}

.services .section-lead {
  color: rgba(255,255,255,0.7);
}

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.service-card i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  background: var(--gray);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-line i {
  color: var(--orange);
  font-size: 1.1rem;
  width: 22px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.2s;
}

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

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

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

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-note.success {
  color: #2e7d32;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.whatsapp-float i {
  font-size: 2.2rem;
  color: #25D366;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 86px;
  right: 30px;
  z-index: 1100;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

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

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-toggle {
    display: block;
  }

  .section {
    padding: 70px 0;
  }

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

  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact-form {
    padding: 28px;
  }
}
