* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: 40px;
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #007bff;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #007bff;
}

.search-icon {
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.search-icon:hover {
  color: #007bff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  right: 20px;
  width: 280px;
  max-width: calc(100vw - 40px);
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 20px 0;
  flex-direction: column;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Arrow pointing to hamburger icon */
.mobile-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 15px 25px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
  display: block;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #007bff;
  background: #f8f9fa;
}

.mobile-menu .quote-btn.mobile {
  margin: 15px 25px 5px;
  align-self: stretch;
  text-align: center;
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
}

.quote-btn {
  background: #ffc107;
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.quote-btn:hover {
  background: #ffcd39;
  transform: translateY(-2px);
}

/* Page Title */
.page-title {
  padding: 120px 0 60px;
  text-align: center;
  background: #f8f9fa;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.title-arrow {
  color: #ccc;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: #f8f9fa;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkmark {
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.stat-box {
  position: absolute;
  padding: 24px;
  border-radius: 8px;
  color: white;
  min-width: 180px;
}

.stat-yellow {
  background: #ffc107;
  top: 60px;
  left: -40px;
}

.stat-blue {
  background: #1e3a8a;
  bottom: 60px;
  right: -40px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 14px;
  opacity: 0.9;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 70px;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  color: white;
}

.slide-content .hero-label {
  color: #ffc107;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.slide-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: white;
  color: #333;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-nav.prev {
  left: 30px;
}

.slider-nav.next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #ffc107;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.text-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.text-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-content {
  position: relative;
}

.image-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* Service Cards */
.service-cards {
  padding: 0;
  margin-top: -100px;
  position: relative;
  z-index: 5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
}

.card-label {
  color: #ffc107;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.card-overlay h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/* Services Content */
.services-content {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 24px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

.service-card h3 {
	font-size: 24px;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 16px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Services Overview */
.services-overview {
  padding: 100px 0;
  background: #f8f9fa;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.overview-text .section-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.overview-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.overview-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.services-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-icon-item {
  text-align: center;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.service-icon-item:hover .icon-circle {
  background: #ffc107;
  transform: translateY(-5px);
}

.service-icon-item:hover .icon-circle svg {
  stroke: #333;
}

.service-icon-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Services Layout */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1e3a8a;
  color: white;
  padding: 30px;
  border-radius: 0 0 12px 12px;
  width: 100%;
}

.image-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.services-text {
  padding-left: 40px;
}

.services-text .section-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.services-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.services-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-btn {
  background: #ffc107;
  color: #333;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.info-btn:hover {
  background: #ffcd39;
  transform: translateY(-2px);
}

/* Contact Content */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  padding: 80px 0;
}

.contact-info .section-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  color: #007bff;
  flex-shrink: 0;
}

.contact-item span {
  color: #666;
  font-size: 16px;
}

.contact-form {
  background: #fff;
  padding: 0;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background: #f8f9fa;
  transition: border-color 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #007bff;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #ffc107;
  color: #333;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #ffcd39;
  transform: translateY(-2px);
}

.privacy-notice {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.privacy-notice a {
  color: #007bff;
  text-decoration: underline;
}

.privacy-notice a:hover {
  color: #0056b3;
}

/* Truck Monitoring */
.truck-monitoring {
  padding: 100px 0;
}

.monitoring-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.monitoring-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.monitoring-img-1,
.monitoring-img-2 {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.monitoring-img-2 {
  margin-top: 40px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.9);
  color: #333;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.play-btn:hover {
  background: #ffc107;
  transform: translate(-50%, -50%) scale(1.1);
}

.monitoring-text .section-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.monitoring-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.monitoring-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.monitoring-features {
  list-style: none;
  margin-bottom: 40px;
}

.monitoring-features li {
  color: #666;
  margin-bottom: 12px;
  font-size: 16px;
}

.dept-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dept-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
}

/* Tracking Section */
.tracking-section {
  padding: 80px 0 120px;
  min-height: 60vh;
}

.tracking-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  background: #e9ecef;
  padding: 40px;
  text-align: center;
  margin-bottom: 0;
}

.form-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.tracking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tracking-form input {
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-top: none;
  font-size: 16px;
  background: #fff;
  transition: border-color 0.3s;
}

.tracking-form input:focus {
  outline: none;
  border-color: #007bff;
}

.track-btn {
  background: #ffc107;
  color: #333;
  border: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
  border-top: 1px solid #e0e0e0;
}

.track-btn:hover {
  background: #ffcd39;
}

/* Testimonial */
.testimonial {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 30px;
}

.testimonial blockquote {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.testimonial-avatars {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* Intervention */
.intervention {
  padding: 100px 0;
}

.intervention-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intervention-image {
  position: relative;
}

.intervention-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #1e3a8a;
  color: white;
  padding: 30px;
  border-radius: 0 0 12px 12px;
  width: 100%;
}

.image-badge h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.intervention-text .section-label {
  color: #666;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.intervention-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.intervention-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.corporate-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.corporate-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
}

/* Site Footer */
.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 40px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffc107;
  font-size: 18px;
  font-weight: 700;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ffc107;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #444;
  background: #333;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  background: #ffc107;
  border: none;
  padding: 12px 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #ffcd39;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 1000;
}

.whatsapp-widget:hover {
  transform: scale(1.05);
}

.whatsapp-text {
  font-size: 14px;
  font-weight: 500;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero-content,
  .content-wrapper,
  .overview-content,
  .monitoring-content,
  .intervention-content,
  .services-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-text {
    padding-left: 0;
  }

  .services-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .service-cards {
    margin-top: 0;
    padding: 50px 0;
  }

  .hero-slider {
    height: 500px;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu */
  .nav-menu {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-overlay {
    display: block;
  }

  /* Header adjustments */
  .header .container {
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    z-index: 1001;
  }

  /* Header adjustments */
  .header .container {
    justify-content: space-between;
  }

  /* Content adjustments */
  .hero h1,
  .page-title h1,
  .slide-content h1 {
    font-size: 32px;
  }

  .text-content h2,
  .overview-text h2,
  .monitoring-text h2,
  .intervention-text h2,
  .services-text h2,
  .contact-info h2 {
    font-size: 28px;
  }

  .hero-slider {
    height: 400px;
    margin-top: 70px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .slider-nav.prev {
    left: 15px;
  }

  .slider-nav.next {
    right: 15px;
  }

  .stat-yellow,
  .stat-blue {
    position: static;
    margin: 20px 0;
    min-width: auto;
  }

  .services-icons {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .monitoring-images {
    grid-template-columns: 1fr;
  }

  .monitoring-img-2 {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 4px;
  }

  .whatsapp-text {
    display: none;
  }

  /* Padding adjustments */
  .hero,
  .about-content,
  .services-content,
  .services-overview,
  .truck-monitoring,
  .testimonial,
  .intervention,
  .contact-content,
  .tracking-section {
    padding: 60px 0;
  }

  .page-title {
    padding: 100px 0 40px;
  }

  .tracking-section {
    padding: 60px 0 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1,
  .page-title h1 {
    font-size: 28px;
  }

  .text-content h2,
  .overview-text h2,
  .monitoring-text h2,
  .intervention-text h2,
  .services-text h2,
  .contact-info h2 {
    font-size: 24px;
  }

  .slide-content h1 {
    font-size: 24px;
  }

  .hero-slider {
    height: 350px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quote-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-btn,
  .info-btn,
  .dept-btn,
  .corporate-btn,
  .submit-btn {
    padding: 14px 28px;
    font-size: 12px;
  }

  .service-card {
    height: 250px;
  }

  .card-overlay {
    padding: 30px 20px 20px;
  }

  .card-overlay h3 {
    font-size: 20px;
  }

  .testimonial blockquote {
    font-size: 16px;
  }

  .quote-icon {
    font-size: 40px;
  }
}

@media (max-width: 360px) {
  .hero h1,
  .page-title h1 {
    font-size: 24px;
  }

  .slide-content h1 {
    font-size: 20px;
  }

  .text-content h2,
  .overview-text h2,
  .monitoring-text h2,
  .intervention-text h2,
  .services-text h2,
  .contact-info h2 {
    font-size: 20px;
  }

  .hero-slider {
    height: 300px;
  }
}
