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

:root {
  --primary-orange: #ff6b35;
  --primary-blue: #1e3a5f;
  --dark-blue: #0f1e3a;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --white: #ffffff;
  --text-gray: #666666;
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
  background-color: #fafafa;
}

/* Ensure all sections are visible */
section {
  position: relative;
  display: block;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
  gap: 10px;
}

.logo-block img {
  width: 77px;
  flex-shrink: 0;
  height: 76px;
}

.top-banner {
  background-color: #FF9606;
  color: var(--white);
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
}

.navbar {
  /* background-color: #FF9606; */
  background-color: #FF9606;
  padding: 15px 0;
}

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

.logo-circle {
  width: 60px;
  height: 60px;
  background-color: #FF9606;
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: bold;
}

.logo-circle span:first-child {
  font-size: 18px;
}

.logo-text {
  font-size: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  color:black;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.btn-login,
.btn-signup {
  padding: 8px 20px;
  border-radius: 5px;
  background-color: var(--white);
  color: #FF9606;
  font-weight: bold;
}

.btn-signup {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23222"/><circle cx="200" cy="150" r="50" fill="%23FFD700" opacity="0.3"/><circle cx="800" cy="200" r="40" fill="%23FFD700" opacity="0.3"/><rect x="100" y="400" width="200" height="100" fill="%23FFD700" opacity="0.2"/><rect x="700" y="450" width="150" height="80" fill="%23FFD700" opacity="0.2"/></svg>');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background-color: #FF9606;
  color: var(--white);
}

.btn-primary:hover {
  background-color: #e55a2b;
}

.btn-secondary {
  background-color: var(--dark-gray);
  color: var(--white);
  border: 2px solid #FF9606;
}

.btn-secondary:hover {
  background-color: #FF9606;
}

.hero-images {
  position: relative;
  height: 400px;
}

.truck-img {
  position: absolute;
  width: 260px;
  height: 150px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #dc143c 0%,
    #ff4500 30%,
    #ff6347 60%,
    #ff4500 100%
  );
}

/* Truck cab (front section) */
.truck-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(135deg, #c41e3a 0%, #dc143c 40%, #ff4500 100%);
  border-radius: 15px 0 0 15px;
  box-shadow: inset -8px 0 15px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  /* Windshield */
  background-image: linear-gradient(
      135deg,
      rgba(135, 206, 250, 0.4) 5%,
      rgba(135, 206, 250, 0.2) 12%,
      transparent 18%
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, transparent 15%);
}

/* Truck trailer (back section) */
.truck-img::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #ff6347 0%,
    #ff4500 20%,
    #ff6347 40%,
    #ff4500 60%,
    #ff6347 100%
  );
  border-radius: 0 15px 15px 0;
  /* Side panel details */
  background-image: 
        /* Vertical panel lines */ linear-gradient(
      to right,
      transparent 8%,
      rgba(0, 0, 0, 0.12) 8%,
      rgba(0, 0, 0, 0.12) 9%,
      transparent 9%
    ),
    linear-gradient(
      to right,
      transparent 20%,
      rgba(0, 0, 0, 0.1) 20%,
      rgba(0, 0, 0, 0.1) 21%,
      transparent 21%
    ),
    linear-gradient(
      to right,
      transparent 32%,
      rgba(0, 0, 0, 0.1) 32%,
      rgba(0, 0, 0, 0.1) 33%,
      transparent 33%
    ),
    linear-gradient(
      to right,
      transparent 44%,
      rgba(0, 0, 0, 0.1) 44%,
      rgba(0, 0, 0, 0.1) 45%,
      transparent 45%
    ),
    /* Horizontal highlight */
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0, 0, 0, 0.1) 100%
      );
  box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.15);
}

.truck-1 {
  top: 50px;
  left: 0;
  z-index: 3;
}

.truck-2 {
  top: 100px;
  left: 80px;
  z-index: 2;
  transform: rotate(3deg);
}

.truck-3 {
  top: 150px;
  left: 160px;
  z-index: 1;
  transform: rotate(-8deg);
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background-color: var(--white);
  min-height: 500px;
  scroll-margin-top: 80px;
  border-top: 3px solid var(--light-gray);
}

.services-overview h2 {
  text-align: center;
  font-size: 42px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  position: relative;
  padding-top: 20px;
}

.services-overview h2::before {
  content: "SERVICES";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #FF9606;
  font-weight: bold;
  letter-spacing: 2px;
}

.section-description {
  text-align: center;
  color: var(--text-gray);
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
}

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

.service-card {
  text-align: center;
  padding: 30px;
}

.service-icon {
  font-size: 60px;
  margin-bottom: 20px;
  background-color: var(--light-gray);
  width: 120px;
  height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 24px;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.wavy-line {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--light-gray),
    transparent
  );
  margin: 40px auto;
  max-width: 800px;
  position: relative;
}

.wavy-line::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--light-gray);
  border-radius: 50%;
}

/* Services Detailed */
.services-detailed {
  padding: 80px 0;
  background-color: var(--light-gray);
  min-height: 500px;
  scroll-margin-top: 80px;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
}

.services-detailed .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-btn {
  width: 100%;
  padding: 20px;
  background-color: #FF9606;
  color: var(--white);
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.accordion-item:not(.active) .accordion-btn {
  background-color: var(--light-gray);
  color: var(--dark-gray);
}

.accordion-btn:hover {
  opacity: 0.9;
}

.accordion-content {
  padding: 20px;
  background-color: var(--white);
  border-radius: 0 0 5px 5px;
  display: none;
  line-height: 1.8;
  color: var(--text-gray);
}

.accordion-item.active .accordion-content {
  display: block;
}

.chevron {
  font-size: 14px;
}

.services-image {
  height: 400px;
}

.logistics-hub-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a90e2, #7b68ee, #ff6b6b);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.logistics-hub-img::before {
  content: "🚢 🚚 🚂 ✈️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  opacity: 0.7;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background-color: var(--primary-blue);
  color: var(--white);
  min-height: 600px;
  scroll-margin-top: 80px;
  border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.why-choose-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 24px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
}

.icon-item p {
  color: var(--white);
  margin-top: 10px;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 20px;
}

.why-choose-us .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: center;
}

.why-choose-graphic {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  color: var(--dark-gray);
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
}

.megaphone-icon {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 60px;
  background-color: var(--primary-blue);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-list ul {
  list-style: none;
}

.why-choose-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  color: var(--white);
  line-height: 1.8;
}

.why-choose-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF9606;
  font-weight: bold;
  font-size: 20px;
}

.why-choose-list strong {
  color: #FF9606;
}

/* Get App Section */
.get-app {
  position: relative;
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
  min-height: 600px;
  scroll-margin-top: 80px;
  border-top: 3px solid rgba(255, 255, 255, 0.1);
}

.app-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23111"/><rect x="100" y="100" width="200" height="150" fill="%23333" opacity="0.5"/><rect x="400" y="150" width="180" height="120" fill="%23333" opacity="0.5"/><rect x="700" y="200" width="150" height="100" fill="%23333" opacity="0.5"/><line x1="0" y1="300" x2="1200" y2="300" stroke="%23444" stroke-width="2"/><line x1="0" y1="400" x2="1200" y2="400" stroke="%23444" stroke-width="2"/></svg>');
  background-size: cover;
  background-position: center;
  filter: blur(3px);
}

.app-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.get-app h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.get-app p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background-color: var(--dark-gray);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.app-btn:hover {
  background-color: #444;
}

.app-store-icon {
  font-size: 32px;
}

.app-btn-small {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.app-btn-large {
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.phone-mockup {
  width: 250px;
  height: 500px;
  background-color: var(--white);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-logo-small {
  font-size: 48px;
  font-weight: bold;
  color: var(--white);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
  min-height: 600px;
  scroll-margin-top: 80px;
  border-top: 3px solid var(--light-gray);
}

.testimonials h2 {
  text-align: center;
  font-size: 42px;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.testimonial-card {
  background-color: #FF9606;
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


.testimonial-card.active{
    transform: scale(1.10);
    transition: all 0.3s 
ease-in-out;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  color: #FF9606;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.testimonial-name {
  font-weight: bold;
  font-size: 18px;
}

.testimonial-card p {
  line-height: 1.8;
  font-style: italic;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FF9606;
  background-color: var(--white);
  color: #FF9606;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background-color: #FF9606;
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #FF9606;
}

/* Contact Section */
.contact {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  min-height: 600px;
  scroll-margin-top: 80px;
  border-top: 3px solid rgba(255, 255, 255, 0.1);
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a2e"/><rect x="50" y="200" width="150" height="100" fill="%23FF6B35" opacity="0.3"/><rect x="300" y="250" width="120" height="80" fill="%23FF6B35" opacity="0.3"/><rect x="600" y="300" width="100" height="70" fill="%23FF6B35" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}

.contact-content {
  position: relative;
  z-index: 1;
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  gap: 50px;
  align-items: start;
}

.contact-form-wrapper h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
      max-width: 800px;
    margin: 0 auto;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #FF9606;
}

.contact-form textarea {
  resize: vertical;
}

.contact-image {
  height: 500px;
}

.keys-hand-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* Footer */
.footer {
  background-color: #FF9606;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo .logo-circle {
  margin-bottom: 20px;
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  font-size: 24px;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content,
  .services-detailed .container,
  .why-choose-content,
  .app-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .nav-menu {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .services-overview h2,
  .why-choose-us h2,
  .get-app h2,
  .testimonials h2,
  .contact-form-wrapper h2 {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Form Pages Styles */
.form-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  padding: 40px 20px;
}

.form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
}

.form-container h1 {
  color: #FF9606;
  margin-bottom: 10px;
  text-align: center;
}

.form-container p {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container input {
  padding: 15px;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-container input:focus {
  outline: none;
  border-color: #FF9606;
}

.form-container .btn {
  width: 100%;
  text-align: center;
}

.form-container .form-footer {
  text-align: center;
  margin-top: 20px;
  color: var(--text-gray);
}

.form-container .form-footer a {
  color: #FF9606;
  text-decoration: none;
  font-weight: bold;
}

/* Content Pages Styles */
.content-page {
  padding: 100px 0 80px;
  background-color: var(--white);
}

.content-page h1 {
  color: #FF9606;
  font-size: 42px;
  margin-bottom: 30px;
}

.content-page h2 {
  color: var(--primary-blue);
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-page p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-page ul {
  margin-left: 30px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.content-page li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.content-page .back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FF9606;
  text-decoration: none;
  font-weight: bold;
}

.content-page .back-link:hover {
  text-decoration: underline;
}
