


:root {
  --primary-color: #1a365d;
  --secondary-color: #0d4725;
  --accent-color: #ff6b35;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.text-dark { color: var(--dark-color) !important; }
.text-light { color: var(--light-color) !important; }

/* Icon colors for better contrast */
.icon-primary { color: var(--light-color) !important; }
.icon-secondary { color: var(--light-color) !important; }


.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-dark { background-color: var(--dark-color) !important; }
.bg-light { background-color: var(--light-color) !important; }


.truck-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.truck-logo::before {
  content: "🚛";
  font-size: 1.5rem;
}


.navbar-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--light-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
  left: 10%;
}


.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(13, 71, 37, 0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}


.btn-custom {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent-color), #ff8c55);
  color: var(--light-color);
}

.btn-accent-custom:hover {
  background: linear-gradient(135deg, #ff8c55, var(--accent-color));
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}


.section-custom {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 2px;
}


.service-card {
  background: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 2rem;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-card-description {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}


.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--light-color);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--dark-color);
  line-height: 1.6;
}


.testimonial-card {
  background: var(--light-color);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  border: none;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}


.team-member {
  text-align: center;
  padding: 1rem;
}

.team-member-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 5px solid var(--light-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-member-position {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member-bio {
  color: var(--dark-color);
  line-height: 1.6;
}


.form-custom {
  background: var(--light-color);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: none;
}

.form-control-custom {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control-custom:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
  outline: none;
}

.form-label-custom {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}


.footer-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  padding: 50px 0 20px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.footer-link {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0 5px;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--accent-color);
  color: var(--light-color);
  transform: translateY(-2px);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: var(--light-color);
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card-body {
    padding: 1.5rem;
  }
  
  .service-card-title {
    font-size: 1.3rem;
  }
  
  .service-card-price {
    font-size: 1.5rem;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .truck-logo {
    font-size: 1.5rem;
  }
  
  .truck-logo::before {
    font-size: 1.2rem;
  }
}