/* =========================
   BRAND COLORS
========================= */
:root{
  --primary-color:#254f39;   /* BRAND GREEN */
  --dark-color:#254f39;
  --light-bg:#f8fafc;
}

/* =========================
   BASE
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--dark-color);
}

/* =========================
   HEADER
========================= */

.header{
  background:var(--light-bg);
  height:90px;
  display:flex;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.header-flex{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  max-height:98px;
}

.menu a{
  margin-left:25px;
  text-decoration:none;
  font-weight:600;
  color:var(--dark-color);
}

.menu a:hover{
  color:var(--primary-color);
}

/* =========================
   HERO / SLIDER
========================= */

.hero{
  height:90vh;
  position:relative;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}

.slide.active{
  opacity:1;
}

.overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-left:8%;
  pointer-events:none;
}

/* blur layer */
/* blur layer – subtle, stable, brand-matched */
/* HERO TEXT READABILITY LAYER (STABLE) */
.hero-blur{
  position:absolute;
  width:680px;
  height:240px;
  left:8%;
  top:50%;
  transform:translateY(-50%);

  /* fake blur (stable everywhere) */
  background:linear-gradient(
    90deg,
    rgba(37,79,57,0.55),
    rgba(37,79,57,0.32),
    rgba(37,79,57,0.08)
  );

  /* soft diffusion illusion */
  box-shadow:
    0 0 60px rgba(37,79,57,0.45),
    inset 0 0 40px rgba(255,255,255,0.05);

  border-radius:30px;
  z-index:1;
  pointer-events:none;
}


/* hero text */
.hero-text{
  position:relative;
  z-index:2;
  max-width:600px;
  color:#f6f4f4;
  pointer-events:auto;
  padding:22px 20px;  
/* HERO CTA BUTTON */
.hero-btn{
  display:inline-block;
  margin-top:18px;
  padding:12px 28px;
  background:var(--primary-color);
  color:#ffffff;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  border-radius:30px;
  transition:all .3s ease;
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
}

/* Hover effect */
.hero-btn:hover{
  background:#1f3f2f;
  transform:translateY(-2px);
}


         /* gives space for blur */
}

/* background blur layer */
.hero-text::before{
  content:"";
  position:absolute;
  inset:-16px -22px;           /* soft spread around text */
  z-index:-1;

  /* subtle readable background */
  background:rgba(37,79,57,0.28);

  /* real blur (if supported) */
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  /* fallback illusion (always works) */
  box-shadow:
    0 0 40px rgba(37,79,57,0.35),
    inset 0 0 20px rgba(255,255,255,0.04);

  border-radius:22px;
}


.hero-text h1{
  font-size:56px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:10px;
  text-shadow:0 4px 18px rgba(0,0,0,0.55);
}

.hero-text p{
  font-size:20px;
  opacity:0.95;
  text-shadow:0 3px 14px rgba(0,0,0,0.45);
}

/* =========================
   ABOUT US SECTION
========================= */

.about-us{
  background:#fefce8;
  padding:90px 10%;
}

.about-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT CONTENT */
.about-content h1{
  font-size:44px;
  margin-bottom:18px;
  color:var(--dark-color);
}

.about-content p{
  font-size:16.5px;
  line-height:1.8;
  margin-bottom:16px;
  color:#334155;
}

.about-tag{
  display:inline-block;
  font-size:13px;
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--primary-color);
}

/* CTA BUTTON */
.about-btn{
  display:inline-block;
  margin-top:18px;
  padding:12px 28px;
  background:var(--primary-color);
  color:#ffffff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:all .3s ease;
}

.about-btn:hover{
  background:#1f3f2f;
  transform:translateY(-2px);
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){
  .about-wrapper{
    grid-template-columns:1fr;
  }

  .about-content h1{
    font-size:34px;
  }
}





/* =========================
   EXPERIENCE
========================= */

.experience{
  text-align:center;
  padding:80px 20%;
  background:#fefce8;
}

.experience h1{
  font-size:42px;
  margin-bottom:15px;
}

/* =========================
   SERVICES (UPDATED)
========================= */

.services{
  text-align:center;
  padding:80px 10%;
}

.services h1{
  font-size:40px;
  margin-bottom:30px;
}

/* 4 COLUMN GRID */
.service-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
  margin-top:50px;
}

/* CARD */
.service-box{
  background:#f7fff4;
  padding:40px 28px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  transition:all .35s ease;
  position:relative;
}

/* HOVER */
.service-box:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 50px rgba(0,0,0,0.12);
}

/* ICON */
.service-box i{
  font-size:42px;
  color:var(--primary-color);
  margin-bottom:18px;
  transition:transform .35s ease;
}

.service-box:hover i{
  transform:scale(1.15);
}

/* TEXT */
.service-box h3{
  font-size:22px;
  margin-bottom:12px;
  color:var(--dark-color);
}

.service-box p{
  font-size:15.5px;
  line-height:1.7;
  color:#334155;
}

/* =========================
   FLEET
========================= */

.fleet{
  background:var(--dark-color);
  color:#fff;
  padding:80px 10%;
  text-align:center;
}

.fleet h1{
  font-size:40px;
  margin-bottom:30px;
}

.fleet-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:40px;
}

.fleet-grid img{
  width:100%;
  border-radius:14px;
}

/* =========================
   CONTACT
========================= */

.contact{
  background:var(--light-bg);
  padding:80px 10%;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-card{
  background:#fff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card input,
.contact-card textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:6px;
  border:1px solid #cbd5e1;
}

.contact-card button{
  background:var(--primary-color);
  color:#fff;
  padding:12px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.contact-info input{
  width:100%;
  padding:12px;
  margin:10px 0;
  border-radius:6px;
  border:1px solid #cbd5e1;
}

.subscribe-btn{
  width:100%;
  background:#16a34a;
  color:#fff;
  padding:12px;
  border:none;
  border-radius:6px;
}



/* CONTACT FORM ENHANCEMENTS */
.contact-card label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin:12px 0 6px;
  color:#334155;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder{
  color:#94a3b8;
}

.contact-card button{
  margin-top:18px;
  font-size:16px;
  font-weight:600;
  transition:background .3s ease, transform .3s ease;
}

.contact-card button:hover{
  background:#46923d;
  transform:translateY(-2px);
}


/* SUBSCRIBE BOX */
.subscribe-box{
  background:linear-gradient(
    135deg,
    rgba(87,168,71,0.12),
    rgba(87,168,71,0.05)
  );
  padding:30px;
  border-radius:16px;
  margin-bottom:25px;
}

.subscribe-box h3{
  font-size:22px;
  margin-bottom:6px;
  color:var(--dark-color);
}

.subscribe-box p{
  font-size:14.5px;
  margin-bottom:14px;
  color:#475569;
}

.subscribe-box input{
  width:100%;
  padding:12px;
  border-radius:6px;
  border:1px solid #cbd5e1;
  margin-bottom:10px;
}

.subscribe-btn{
  width:100%;
  background:var(--primary-color);
  color:#fff;
  padding:12px;
  border:none;
  border-radius:6px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:background .3s ease, transform .3s ease;
}

.subscribe-btn:hover{
  background:#46923d;
  transform:translateY(-2px);
}


/* =========================
   MAP
========================= */

.map iframe{
  width:100%;
  height:250px;
  border-radius:12px;
  margin-top:20px;
}

/* =========================
   FOOTER
========================= */

.footer{
  background:#254f39;
  color:#ffffff;
  text-align:center;
  padding:20px;
}

/* =========================
   FOOTER CONTACT INFO
========================= */


/* FORCE FOOTER LINKS TO OFF-WHITE */
.footer a,
.footer a:visited,
.footer a:active{
  color:#f1f5f9;      /* off-white */
  text-decoration:none;
}

.footer a:hover{
  color:#d4e3cc;
  text-decoration:underline;
}


.footer-contact{
  display:flex;
  justify-content:center;
  gap:60px;
  margin-bottom:12px;
  flex-wrap:wrap;
}

.footer-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#ffffff;
  font-size:14.5px;
}

.footer-item i{
  font-size:18px;
  color:#ffffff;
  margin-top:3px;
}

/* Footer links */
.footer-links{
  margin-top:2px;
}

.footer-links a{
  color:#ffffff;
  margin:0 5px;
  text-decoration:none;
  font-size:14px;
  opacity:0.85;
}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}

/* Responsive */
@media(max-width:600px){
  .footer-contact{
    gap:25px;
  }
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){
  .service-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:900px){
  .contact-wrapper{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .service-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .overlay{
    justify-content:center;
    padding-left:0;
    text-align:center;
  }

  .hero-blur{
    width:90%;
    left:5%;
    height:200px;
  }

  .hero-text h1{
    font-size:34px;
  }

  .hero-text p{
    font-size:16px;
  }
}
