/* =========================
   GLOBAL STYLES
========================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html{
  scroll-behavior: smooth;
  font-size: 16px;
}

body{
  background: #f4f6f9;
  color: #222;
  line-height: 1.6;
}

.container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img{
  max-width: 100%;
  display: block;
}

/* =========================
   TYPOGRAPHY
========================= */

h1{
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

h2{
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

h3{
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

p{
  color: #444;
}

section{
  padding: 100px 0;
}

/* =========================
   HEADER
========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  background: rgba(10, 31, 68, 0.9);
}

.header-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img{
  height: 65px;
}

/* =========================
   NAVIGATION
========================= */

.nav-links{
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a{
  text-decoration: none;
  font-size: 0.95rem;
  color: #fff;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover{
  color: #00c6ff;
}

.nav-links a::after{
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #00c6ff;
  transition: 0.3s;
}

.nav-links a:hover::after{
  width: 100%;
}

/* =========================
   BUTTON
========================= */

.btn-main{
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-main:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,114,255,0.3);
}

/* =========================
   SLIDER
========================= */

.slider{
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide{
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active{
  opacity: 1;
}

.slide::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  top: 0;
  left: 0;
}

.slide-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 60px;
  border-radius: 12px;
  animation: fadeUp 1s ease;
}

.slide-content h1{
  font-size: 3rem;
}

.slide-content p{
  font-size: 1.2rem;
  color: white;
}

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(30px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ARROWS */

.prev,
.next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev{
  left: 20px;
}

.next{
  right: 20px;
}

/* DOTS */

.dots{
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot{
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.active-dot{
  background: white;
}

/* =========================
   HERO BANNERS
========================= */

.hero,
.page-hero{
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before,
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,31,68,0.65);
}

.hero .container,
.page-hero .container{
  position: relative;
  z-index: 2;
}

.express-banner{
  background: url('jelbanner.png') center/cover no-repeat;
}

.construction-banner{
  background: url('construction.jpg') center/cover no-repeat;
}

.trade-banner{
  background: url('jtbanner.png') center/cover no-repeat;
}

.contact-banner{
  background: url('jelbanner.png') center/cover no-repeat;
}

/* =========================
   SCENT HERO
========================= */

.scent-hero{
  background: url('banner.png') center center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.scent-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.scent-hero .container{
  position: relative;
  z-index: 2;
  color: white;
}

.scent-hero p{
  color: white;
}

/* =========================
   SECTIONS
========================= */

.about-section,
.services-section,
.intro-video,
.express-contact{
  background: white;
  text-align: center;
}

/* =========================
   CARDS
========================= */

.service-cards,
.info-grid,
.coverage-grid,
.news-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card,
.info-card,
.coverage-card,
.news-card{
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover,
.info-card:hover,
.coverage-card:hover,
.news-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* =========================
   PRODUCT GRID
========================= */

.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card{
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.product-card:hover{
  transform: translateY(-8px);
}

.product-card img{
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card h4{
  padding: 18px 15px 8px;
}

.product-card p{
  padding: 0 15px 22px;
}

/* =========================
   IMAGE/FLEET GRID
========================= */

.fleet-grid,
.image-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.fleet-card,
.image-card{
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.fleet-card img,
.image-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.fleet-card:hover img,
.image-card:hover img{
  transform: scale(1.05);
}

/* =========================
   VIDEO
========================= */

.video-wrapper{
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper video{
  width: 100%;
  max-width: 900px;
  margin: auto;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form{
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea{
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: #00c6ff;
}

/* =========================
   PREMIUM SERVICE LAYOUT
========================= */

.service-row{
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 70px 0;
  flex-wrap: wrap;
}

.service-row.reverse{
  flex-direction: row-reverse;
}

.service-image{
  flex: 1;
  min-width: 300px;
}

.service-image img{
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.service-image img:hover{
  transform: scale(1.02);
}

.service-text,
.service-content{
  flex: 1;
  min-width: 300px;
}

.service-text h3,
.service-content h3{
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #0a1f44;
}

.service-text p,
.service-content p{
  margin-bottom: 15px;
  line-height: 1.8;
}

.service-text ul,
.service-content ul{
  padding-left: 20px;
}

.service-text ul li,
.service-content ul li{
  margin-bottom: 8px;
}

/* =========================
   COVERAGE SECTION
========================= */

.coverage-section{
  background: #f7f9fc;
  text-align: center;
}

.section-heading h2{
  margin-bottom: 15px;
}

.section-heading p{
  color: #555;
  font-size: 1.05rem;
}

.coverage-image{
  margin: 50px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.coverage-image img{
  width: 100%;
  display: block;
}

.coverage-card h3{
  margin-bottom: 15px;
  color: #0a1f44;
}

/* =========================
   CTA
========================= */

.cta{
  background: linear-gradient(135deg, #0a1f44, #0072ff);
  color: white;
  text-align: center;
}

.cta p{
  color: #ddd;
}

/* PREMIUM CTA SECTION */

.logistics-cta{
  position: relative;
  background: url('cta-logistics.jpg') center center/cover no-repeat;
  padding: 140px 0;
  overflow: hidden;
}

.cta-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}

.cta-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.cta-content h2{
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p{
  max-width: 750px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

.cta-content .btn-main{
  margin-top: 30px;
}

/* =========================
   FOOTER
========================= */

footer{
  background: #0a1f44;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p{
  color: white;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 999;
}

.whatsapp-btn:hover{
  background: #1ebe5d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px){

  h1{
    font-size: 2rem;
  }

  h2{
    font-size: 1.6rem;
  }

  .slide-content{
    padding: 20px;
  }

  .slide-content h1{
    font-size: 2.2rem;
  }

  .nav-links{
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo img{
    height: 55px;
  }

  .product-card img,
  .fleet-card,
  .image-card{
    height: 200px;
  }

  .service-row,
  .service-row.reverse{
    flex-direction: column !important;
    text-align: center;
  }

  .service-text ul,
  .service-content ul{
    padding-left: 0;
    list-style-position: inside;
  }

  .logistics-cta{
    padding: 90px 20px;
  }

  .cta-content h2{
    font-size: 2rem;
  }

}
/* GLOBAL NETWORK SECTION */

.global-network{
  background: white;
  text-align: center;
}

.network-image{
  margin: 50px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.network-image img{
  width: 100%;
  display: block;
}

.network-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.network-card{
  background: #f7f9fc;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.network-card:hover{
  transform: translateY(-8px);
}

.network-card h3{
  margin-bottom: 15px;
  color: #0a1f44;
}

.global-partner-text{
  margin-top: 50px;
}

.global-partner-text p{
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  color: #444;
}

/* =========================
   HOMEPAGE CTA
========================= */

.home-cta{
  position: relative;
  background: url('home-cta.png') center center/cover no-repeat;
  padding: 140px 20px;
  overflow: hidden;
  text-align: center;
}

.home-cta-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.home-cta-content{
  position: relative;
  z-index: 2;
  color: white;
}

.home-cta-content h2{
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.home-cta-content p{
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
}

.home-cta-content .btn-main{
  margin-top: 30px;
}

@media(max-width:768px){

  .home-cta{
    padding: 90px 20px;
  }

  .home-cta-content h2{
    font-size: 2rem;
  }

}

/* PRODUCT CATALOGUE SECTION */

.catalogue-section{
  background: #f7f9fc;
  padding: 100px 0;
}

.catalogue-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.catalogue-text{
  flex: 1;
  min-width: 300px;
}

.catalogue-text h2{
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0a1f44;
}

.catalogue-text p{
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.catalogue-image{
  flex: 1;
  min-width: 300px;
}

.catalogue-image img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* MOBILE */

@media (max-width:768px){

  .catalogue-box{
    flex-direction: column;
    text-align: center;
  }

  .catalogue-text h2{
    font-size: 2rem;
  }

}

/* PREMIUM ABOUT SECTION */

.premium-about{
  background: #fff;
}

.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-tag{
  display: inline-block;
  background: rgba(0,114,255,0.08);
  color: #0072ff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-text h2{
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #0a1f44;
}

.about-text p{
  margin-bottom: 22px;
  color: #444;
  line-height: 1.9;
  font-size: 1.02rem;
}

.about-image img{
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* MOBILE */

@media (max-width: 900px){

  .about-grid{
    grid-template-columns: 1fr;
  }

  .about-text h2{
    font-size: 2rem;
  }

}

/* PREMIUM ABOUT */

.about-premium{
  background: white;
  padding: 120px 0;
}

.center-about{
  max-width: 950px;
  margin: auto;
  text-align: center;
}

.about-tag{
  display: inline-block;
  margin-bottom: 18px;
  color: #0072ff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.center-about h2{
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #0a1f44;
}

.center-about p{
  margin-bottom: 22px;
  color: #555;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* ABOUT VIDEO */

.about-video{
  margin-top: 70px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-video video{
  width: 100%;
  display: block;
}

/* SUBDIVISIONS */

.subdivision-section{
  padding: 120px 0;
  background: #f7f9fc;
}

.subdivision-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.subdivision-card{
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  transition: 0.4s;
  background-size: cover;
  background-position: center;
}

.subdivision-card:hover{
  transform: translateY(-10px);
}

.subdivision-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.2)
  );
}

.subdivision-content{
  position: relative;
  z-index: 2;
  padding: 35px;
  color: white;
}

.subdivision-content h3{
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: white;
}

.subdivision-content p{
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* BACKGROUND IMAGES */

.express-card{
  background-image: url('express-cover.png');
}

.trade-card{
  background-image: url('trade-cover.jpg');
}

.scent-card{
  background-image: url('scent-cover.png');
}

.construction-card{
  background-image: url('construction-cover.jpg');
}

/* MOBILE */

@media (max-width:768px){

  .center-about h2{
    font-size: 2.1rem;
  }

  .subdivision-card{
    height: 340px;
  }

}

/* =========================
   SCROLL ANIMATIONS
========================= */

.fade-up{
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

/* OPTIONAL DELAYS */

.delay-1{
  transition-delay: 0.2s;
}

.delay-2{
  transition-delay: 0.4s;
}

.delay-3{
  transition-delay: 0.6s;
}
/* =========================
   PREMIUM FOOTER
========================= */
/* =========================
   CLEAN COMPACT FOOTER
========================= */

.main-footer{
  background: #07152f;
  color: white;
  padding: 40px 0 15px;
  overflow: hidden;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  align-items: start;
}

/* FIX HUGE LOGO */
.footer-logo{
  width: 110px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.footer-column h3{
  font-size: 1rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-column p,
.footer-links a{
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

/* REMOVE HUGE SPACING */
.footer-column p{
  margin-bottom: 6px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 6px;
}

.footer-links a:hover{
  color: #00c6ff;
}

/* SOCIALS */
.footer-socials{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-socials a{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 0.9rem;

  transition: 0.3s;
}

.footer-socials a:hover{
  background: #00c6ff;
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom{
  margin-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  text-align: center;
}

.footer-bottom p{
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* MOBILE */
@media (max-width:768px){

  .main-footer{
    text-align: center;
  }

  .footer-socials{
    justify-content: center;
  }

  .footer-logo{
    margin: 0 auto 15px;
  }

}