/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --dark: #1a1a1a;
  --darker: #111;
  --gray-light: #f5f5f5;
  --gray: #e0e0e0;
  --white: #fff;
  --text: #333;
  --text-light: #666;
  --green: #27ae60;
  --green-dark: #1e8449;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 10px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 4px;
}

.nav-logo span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}

.nav-logo .accent {
  color: var(--red);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

nav ul li a {
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

nav ul li a:hover {
  background: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7)),
              url('../assets/images/truck.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 120px 20px 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--red);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--gray);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0.85;
  font-size: 0.95rem;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* ===== SERVICES ===== */
#services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--red);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-image-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--red);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
}

.about-feature .check {
  color: var(--green);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--dark);
  color: var(--white);
}

#gallery .section-header h2 {
  color: var(--white);
}

#gallery .section-header p {
  color: rgba(255,255,255,0.7);
}

#gallery .section-label {
  color: var(--red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 40px 20px 20px;
  color: var(--white);
  font-weight: 600;
}

/* ===== QUOTE CALCULATOR ===== */
#quote {
  background: var(--gray-light);
}

.quote-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-wrapper label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.quote-wrapper select,
.quote-wrapper input[type="number"] {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: var(--transition);
  appearance: auto;
}

.quote-wrapper select:focus,
.quote-wrapper input:focus {
  outline: none;
  border-color: var(--red);
}

.quote-result {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  background: var(--gray-light);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
}

.review-stars {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 700;
  color: var(--dark);
}

/* ===== SERVICE AREAS ===== */
#areas {
  background: var(--gray-light);
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.areas-list {
  list-style: none;
}

.areas-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.areas-list li .pin {
  color: var(--red);
  font-size: 1.2rem;
}

.areas-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.areas-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== CONTACT / BOOKING ===== */
#contact {
  background: var(--dark);
  color: var(--white);
}

#contact .section-header h2 {
  color: var(--white);
}

#contact .section-header p {
  color: rgba(255,255,255,0.7);
}

#contact .section-label {
  color: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-info-card p,
.contact-info-card a {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

.contact-info-card a:hover {
  color: var(--red);
}

.contact-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  color: rgba(255,255,255,0.6);
  padding: 40px 0 25px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 40px;
  border-radius: 4px;
}

.footer-brand span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-call {
  background: var(--green);
}

.float-text {
  background: #007bff;
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success h3 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.form-success p {
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .about-grid,
  .areas-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 12px 16px;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .quote-wrapper {
    padding: 25px;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .nav-logo span {
    font-size: 0.95rem;
  }

  .nav-logo img {
    height: 40px;
  }
}
