/* Reset box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global */
body {
  font-family: "Archivo", sans-serif;
  background-color: #f6f7fb;
  color: #333333;
  line-height: 1.6;
}

/* WhatsApp Floating Button */
.home-sec-1-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: white;
  color: #25D366;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 9999;
  border: 1px solid;
}

.home-sec-1-whatsapp-btn i {
  font-size: 1.3rem;
}

.home-sec-1-whatsapp-btn:hover {
  background-color: #25D366;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  height: 420px;
  background-image: url("images/Group 1261157279.svg");
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: "Rasa", serif;
  font-weight: 700;
  font-size: 3.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin: 0;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  background-color: #f6f7fb;
  padding: 4rem 0;
}

.services-heading {
  font-family: "Rasa", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #E63946;
  margin-bottom: 1rem;
}

.services-subtitle {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards */
.service-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #eceff4;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(22, 41, 64, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(22, 41, 64, 0.18);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffe8ee 0%, #ffffff 100%);
  border: 1px solid #ffd4de;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-card-body {
  flex: 1;
}

.service-card-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.service-card-text {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #616c7c;
  margin: 0;
}

/* ================= SECTION 2: FULL TRUCK LOAD ================= */
.ftl-section {
  background-color: #fff4f6;
  padding: 4rem 0;
}

/* Top label "FULL TRUCK LOAD" with corner bracket */
.ftl-label {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ftl-label-bracket {
  width: 40px;
  height: 4px;
  background-color: #E63946;
  margin-right: 1rem;
}

.ftl-label-text {
  font-family: "Rasa", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E63946;
}

/* Main heading and text */
.ftl-main-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #222222;
  margin-bottom: 1.5rem;
}

.ftl-body-text {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555e6b;
  margin-bottom: 1rem;
}

/* Right-side image */
.ftl-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(24, 40, 78, 0.25);
}

.ftl-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature cards grid */
.ftl-feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #f0dde0;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(219, 144, 155, 0.18);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.ftl-feature-card:hover {
  transform: translateY(-5px);
}

.ftl-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: #ffe7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ftl-feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ftl-feature-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #1f2933;
}

.ftl-feature-text {
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #616a75;
  margin: 0;
}

/* ================= SECTION 3: PART LOAD ================= */
.ptl-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.ptl-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(24, 40, 78, 0.22);
}

.ptl-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Right-side titles and text */
.ptl-content {
  padding-left: 2rem;
}

.ptl-title-label {
  font-family: "Rasa", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E63946;
  margin-bottom: 0.5rem;
}

.ptl-heading {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #222222;
  margin-bottom: 1.5rem;
}

.ptl-text {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555e6b;
  margin-bottom: 1rem;
}

/* Feature cards */
.ptl-feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 35, 52, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ptl-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(15, 35, 52, 0.14);
}

.ptl-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: #ffe7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ptl-feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ptl-feature-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #1f2933;
}

.ptl-feature-text {
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #616a75;
  margin: 0;
}

/* ================= SECTION 4: Industries We Serve ================= */
.industries-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

/* CTA banner */
.transport-cta {
  background-image: url("images/sec-4-service.svg");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.transport-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: 1;
}

.transport-cta > .row {
  position: relative;
  z-index: 2;
}

.transport-cta-title {
  font-family: "Rasa", serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.transport-cta-text {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* CTA button */
.transport-cta-btn {
  display: inline-block;
  background-color: #E63946;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
  text-align: center;
}

.transport-cta-btn:hover {
  background-color: #d12c3c;
  color: white;
}

/* Section heading under CTA */
.industries-title {
  font-family: "Rasa", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #E63946;
  margin-bottom: 1rem;
}

.industries-subtitle {
  font-family: "Archivo", sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Industry cards */
.industry-card {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(15, 35, 52, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(15, 35, 52, 0.14);
}

.industry-icon {
  /* width: 80px; */
  /* height: 80px; */
  border-radius: 16px;
  background-color: #ffe7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.industry-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.industry-card-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #1f2933;
}

.industry-card-text {
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #616a75;
  margin: 0;
}

/* ================= MEDIA QUERIES ================= */

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .services-heading,
  .industries-title {
    font-size: 3rem;
  }
  
  .ftl-label-text,
  .ptl-title-label {
    font-size: 2.5rem;
  }
  
  .ftl-main-title,
  .ptl-heading,
  .transport-cta-title {
    font-size: 2.5rem;
  }
  
  .services-subtitle,
  .ftl-body-text,
  .ptl-text,
  .transport-cta-text,
  .industries-subtitle {
    font-size: 1.2rem;
  }
  
  .service-card-title,
  .ftl-feature-title,
  .ptl-feature-title,
  .industry-card-title {
    font-size: 1.5rem;
  }
  
  .service-card-text,
  .ftl-feature-text,
  .ptl-feature-text,
  .industry-card-text {
    font-size: 1.1rem;
  }
}

/* Tablet devices (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .hero-section {
    height: 350px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .services-section,
  .ftl-section,
  .ptl-section,
  .industries-section {
    padding: 3rem 0;
  }
  
  .services-heading,
  .industries-title {
    font-size: 2.2rem;
  }
  
  .ftl-label-text,
  .ptl-title-label {
    font-size: 1.8rem;
  }
  
  .ftl-main-title,
  .ptl-heading,
  .transport-cta-title {
    font-size: 1.8rem;
  }
  
  .services-subtitle,
  .ftl-body-text,
  .ptl-text,
  .transport-cta-text,
  .industries-subtitle {
    font-size: 1.1rem;
  }
  
  .ptl-content {
    padding-left: 0;
    padding-top: 2rem;
  }
  
  .service-card,
  .ftl-feature-card,
  .ptl-feature-card,
  .industry-card {
    padding: 1.5rem;
  }
}

/* Mobile devices (max-width: 767.98px) */
@media (max-width: 767.98px) {
  .hero-section {
    height: 300px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .services-section,
  .ftl-section,
  .ptl-section,
  .industries-section {
    padding: 2.5rem 0;
  }
  
  .services-heading,
  .industries-title {
    font-size: 1.8rem;
  }
  
  .ftl-label-text,
  .ptl-title-label {
    font-size: 1.6rem;
  }
  
  .ftl-main-title,
  .ptl-heading,
  .transport-cta-title {
    font-size: 1.6rem;
  }
  
  .transport-cta {
    padding: 2rem;
  }
  
  .service-card-icon,
  .ftl-feature-icon,
  .ptl-feature-icon,
  .industry-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .service-card-icon img,
  .ftl-feature-icon img,
  .ptl-feature-icon img,
  .industry-icon img {
    width: 40px;
    height: 40px;
  }
  
  .home-sec-1-whatsapp-btn .whatsapp-text {
    display: none;
  }
  
  .home-sec-1-whatsapp-btn {
    padding: 0.8rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
  
  .home-sec-1-whatsapp-btn i {
    font-size: 1.3rem;
    margin: 0;
  }
}

/* Small mobile devices (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .hero-section {
    height: 250px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .services-section,
  .ftl-section,
  .ptl-section,
  .industries-section {
    padding: 2rem 0;
  }
  
  .services-heading,
  .industries-title {
    font-size: 1.6rem;
  }
  
  .ftl-label-text,
  .ptl-title-label {
    font-size: 1.4rem;
  }
  
  .ftl-main-title,
  .ptl-heading,
  .transport-cta-title {
    font-size: 1.4rem;
  }
  
  .services-subtitle,
  .ftl-body-text,
  .ptl-text,
  .transport-cta-text,
  .industries-subtitle {
    font-size: 1rem;
  }
  
  .service-card-title,
  .ftl-feature-title,
  .ptl-feature-title,
  .industry-card-title {
    font-size: 1.1rem;
  }
  
  .service-card-text,
  .ftl-feature-text,
  .ptl-feature-text,
  .industry-card-text {
    font-size: 0.95rem;
  }
  
  .transport-cta {
    padding: 1.5rem;
  }
  
  .transport-cta-btn {
    width: 100%;
    margin-top: 1rem;
  }
  
  .service-card,
  .ftl-feature-card,
  .ptl-feature-card,
  .industry-card {
    padding: 1.25rem;
  }
}

/* Extra Small Screens (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .services-heading,
  .industries-title {
    font-size: 1.4rem;
  }
  
  .service-card-icon,
  .ftl-feature-icon,
  .ptl-feature-icon,
  .industry-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-card-icon img,
  .ftl-feature-icon img,
  .ptl-feature-icon img,
  .industry-icon img {
    width: 35px;
    height: 35px;
  }
}