:root {
  --green:#28a745;
  --orange:#ff6600;
  --black:#111;
  --white:#fff;
}

html{
  scroll-behavior: smooth;
}

* { margin:0; padding:0; box-sizing:border-box; font-family:'Montserrat',sans-serif;}
body { background:var(--white); color:var(--black); scroll-behavior:smooth;}
a { text-decoration:none; color:inherit; }

/* NAVBAR */
nav { display:flex; justify-content:space-between; align-items:center; padding:20px 10%; background: rgba(255,255,255,0.95); position:sticky; top:0; z-index:100; box-shadow:0 2px 10px rgba(0,0,0,0.05);}
nav .logo { font-weight:700; font-size:1.8rem; color:var(--green);}
nav ul { display:flex; gap:30px; font-family:'Montserrat',sans-serif;}
nav ul li { list-style:none; font-weight:600; position:relative; cursor:pointer; font-family:'Montserrat',sans-serif;}
nav ul li::after { content:''; position:absolute; width:0%; height:2px; background:var(--orange); left:0; bottom:-5px; transition:0.3s; }
nav ul li:hover::after { width:100%; }
nav ul li.nav-btn::after{
  display: none;
}
nav .get-quote-btn { background:var(--orange); color:#fff; padding:10px 20px; border-radius:5px; font-weight:600; transition:0.3s; text-decoration: none;  box-shadow: 0 4px 12px rgba(249,115,22,0.3);}
nav .get-quote-btn:hover { background:var(--green);   text-decoration: none;box-shadow: 0 6px 18px rgba(22,163,74,0.4);}
.hamburger { display:none; flex-direction:column; cursor:pointer; gap:5px; }
.hamburger span { width:25px; height:3px; background:var(--black); transition:0.3s; }
.hamburger.active span:nth-child(1){
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px, -6px);
}

/* LOGO STYLING */
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #111;
}

.logo img{
  height: 80px;
  width: auto;
  object-fit: cover;
  transition: 0.3s;
}

/* slightly smaller on mobile */
@media (max-width: 768px){
  .logo img{
    height: 50px;
  }
}

/* OPTIONAL: brand color accent */
.logo span{
  background: linear-gradient(90deg, #16a34a, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img{
  transition: 0.3s;
}

.logo:hover img{
  transform: rotate(-5deg) scale(1.05);
}


/* MOBILE NAV */
@media (max-width: 900px){

  nav{
    padding: 15px 6%;
  }

  /* SHOW HAMBURGER */
  .hamburger{
    display: flex;
  }

  /* HIDE DESKTOP MENU */
  nav ul{
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    
    background: white;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px 30px;
    gap: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  /* WHEN OPEN */
  nav ul.show{
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* NAV ITEMS */
  nav ul li{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  nav ul li:last-child{
    border-bottom: none;
  }

  /* LINKS */
  nav ul li a{
    display: block;
    width: 100%;
    font-size: 1rem;
  }

  /* BUTTON FIX */
  .get-quote-btn{
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}


/* HERO */
.hero-cleaning{
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* BACKGROUND IMAGE */
  background: url("Images/banner.png") center/cover no-repeat;

  color: white;
  overflow: hidden;
}

.hero-cleaning h1{
  font-size:3rem;
  margin-bottom:10px;
}

.hero-cleaning p{
  max-width:600px;
  margin:auto;
  color:#6b7280;
  font-size:1.1rem;
}

/* Animated Brand Heading */
.hero-cleaning-content h1{
  font-size: 3.5rem;
  font-weight: 800;

  background: linear-gradient(
    90deg,
    #16a34a,   /* green */
    #ff6600,   /* orange */
    #163d2b,   /* black */
    #16a34a
  );

  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: brandGradient 6s linear infinite;
}

/* Gradient animation */
@keyframes brandGradient{
  0%{background-position: 0%;}
  100%{background-position: 300%;}
}




.flag-icon{
  width:24px;
  height:auto;
  vertical-align:middle;
  margin-right:8px;
  border-radius:3px;
  box-shadow:0 2px 6px rgba(0,0,0,0.12);
}


/* LARGE TABLETS */
@media (max-width:992px){

  .hero-cleaning{
    min-height:55vh;
    padding:70px 6% 50px;
  }

  .hero-cleaning h1{
    font-size:2.6rem;
  }

  .hero-cleaning p{
    font-size:1rem;
    max-width:580px;
  }
}

/* TABLETS / MOBILE */
@media (max-width:768px){

  .hero-cleaning{
    min-height:50vh;
    padding:60px 5% 45px;
  }

  .hero-cleaning h1{
    font-size:2.2rem;
  }

  .hero-cleaning p{
    font-size:0.98rem;
    line-height:1.6;
  }
}

/* SMALL MOBILE */
@media (max-width:480px){

  .hero-cleaning{
    min-height:48vh;
    padding:55px 5% 40px;
  }

  .hero-cleaning h1{
    font-size:1.8rem;
    margin-bottom:12px;
  }

  .hero-cleaning p{
    font-size:0.92rem;
    max-width:100%;
  }
}

/* EXTRA SMALL */
@media (max-width:360px){

  .hero-cleaning h1{
    font-size:1.55rem;
    
  }

  .hero-cleaning p{
    font-size:0.86rem;
  }
}

/* FILTER NAV */
.product-filter-nav{
  padding:70px 10% 40px;
  text-align:center;
  background:#f8f8f8;
}

.product-filter-nav h2{
  font-size:2rem;
  margin-bottom:10px;
}

.product-filter-nav p{
  color:#666;
  margin-bottom:30px;
 
}

.filter-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  justify-content:center;
}

.filter-btn{
  padding:14px 22px;
  background:#fff;
  color:#111;
  text-decoration:none;
  border-radius:50px;
  font-weight:600;
  border:2px solid #eee;
  transition:0.3s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.filter-btn:hover{
  background:#f97316;
  color:#fff;
  border-color:#f97316;
  transform:translateY(-4px);
}

.filter-btn:active{
  transform:scale(.96);
}

/* MOBILE */
@media(max-width:768px){

  .filter-buttons{
    flex-direction:column;
    align-items:center;
  }

  .filter-btn{
    width:100%;
    max-width:320px;
  }
}





.products{padding:70px 10%;}

/* PRODUCT SHOWCASE */
.product-showcase{
  padding:90px 10%;
  background:#fff;
}

.showcase-container{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

/* REVERSED LAYOUT */
.reverse-layout .showcase-container{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  align-items:center;
}

/* Mobile */
@media(max-width:992px){
  .reverse-layout .showcase-container{
    grid-template-columns:1fr;
  }

  .reverse-layout .showcase-content{
    order:2;
    text-align:center;
  }

  .reverse-layout .showcase-images{
    order:1;
  }
}

/* LEFT SIDE */
.showcase-images{
  display:flex;
  align-items:center;
  gap:25px;
}

.main-image{
  flex:1;
  background:#fff;
  border-radius:24px;
  padding:30px;
  overflow:hidden; /* keeps zoom inside card */
  box-shadow: 0 6px 18px rgba(22,163,74,0.9);
  background:linear-gradient(145deg,#0f2f1f,#163d2b,#0f2f1f);
}

.main-image img{
  width:100%;
  height:500px;
  object-fit:contain;     /* keeps full image visible */
  transform:scale(1.06); /* slight default zoom */
  transition:transform 0.45s ease;
}

/* subtle hover zoom */
.main-image:hover img{
  transform:scale(1.1);
}

/* SMALL CIRCLES */
.zoom-images{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.zoom-circle{
  width:130px;
  height:130px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  border:5px solid #f97316;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:0.35s ease;
}

.zoom-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.zoom-circle:hover{
  transform:scale(1.08);
  border-color:#16a34a;
}

/* RIGHT SIDE */
.showcase-content .tag{
  display:inline-block;
  background:#16a34a10;
  color:#16a34a;
  padding:8px 16px;
  border-radius:30px;
  font-weight:600;
  margin-bottom:18px;
}

.showcase-content h2{
  font-size:2.5rem;
  margin-bottom:18px;
  color:#111;
}

.showcase-content p{
  color:#555;
  line-height:1.8;
  margin-bottom:22px;
}

.showcase-content ul{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.showcase-content ul li{
  margin-bottom:12px;
  font-weight:600;
  color:#222;
}

.cta-btn{
  display:inline-block;
  padding:14px 28px;
  background:#f97316;
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.cta-btn:hover{
  background:#16a34a;
  
}


/* LEFT IMAGE COLUMN */
.stacked-images{
  display:flex;
  flex-direction:column;   /* stack vertically */
  gap:25px;               /* space between images */
  align-items:flex-start;
}

/* LARGE HORIZONTAL MAIN IMAGE */
.horizontal-image{
  width:500px;
  padding:10px;
         background: linear-gradient(145deg, #0f2f1f, #163d2b, #0f2f1f);
 
  border:1px solid rgba(0,0,0,0.04);
  border-radius:24px;
}

.horizontal-image img{
  width:100%;
  height:240px;
  object-fit:contain;
  border-radius:22px;
  display:block;
}

/* RESPONSIVE */
@media(max-width:992px){

  .showcase-images{
    align-items:center;
  }

  .horizontal-image{
    width:100%;
    max-width:500px;
  }

  .horizontal-image img{
    height:260px;
  }
}

@media(max-width:576px){

  .horizontal-image img{
    height:220px;
  }
}

/* RESPONSIVE */
@media(max-width:992px){

  .showcase-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .showcase-images{
    flex-direction:column;
  }

  .zoom-images{
    flex-direction:row;
    justify-content:center;
  }

  .main-image img{
    height:420px;
  }

  .showcase-content{
    text-align:center;
  }

  .showcase-content ul li{
    text-align:left;
  }
}

@media(max-width:576px){

  .main-image{
    padding:20px;
  }

  .main-image img{
    height:320px;
  }

  .zoom-circle{
    width:95px;
    height:95px;
  }

  .showcase-content h2{
    font-size:2rem;
  }
}




/* CTA */
.cta { background:linear-gradient(135deg,var(--green),var(--orange)); color:#fff; text-align:center; border-radius:25px; padding:60px 30px; margin-top:50px; margin-bottom: 150px; }
.cta h2 { font-size:2rem; margin-bottom:20px; }
.cta p { font-size:1.1rem; margin-bottom:30px; }
.cta a { background:#fff; color:var(--green); padding:12px 30px; border-radius:8px; font-weight:600; }
.cta a:hover { background:#16a34a; color: #fff;}


/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  font-size: 22px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* --------------------
   FOOTER
-------------------- */

.footer {
  background: #ffffff;
  padding: 90px 10% 35px 10%;
  border-top: 1px solid #e5e7eb;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 70px; /* more spacing */
  align-items: start;
}

/* Branding */
.footer-branding img {
  width: 190px; /* smaller logo */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  font-size: 14px;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
  font-weight: 600;
}

.footer-socials a:hover {
  color: #f97316;
}

/* Columns */
.footer-column h3 {
  margin-bottom: 20px;
  color: #f97316;
  font-size: 16px;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  color: #111;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.footer-column a:hover {
  color: #f97316;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

.footer-small {
  margin-top: 15px;
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 55px 0 30px 0;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

.footer-legal a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
  font-weight: 600;
  
}

.footer-legal a:hover {
  color: #f97316;
}

/* --------------------
   RESPONSIVE
-------------------- */

@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-branding img {
    margin: 0 auto 20px auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}


/* ================================
   SCROLL REVEAL BASE (Apple Style)
================================ */

/* Hidden state */
.reveal{
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* When visible */
.reveal.active{
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ================================
   DIRECTION VARIATIONS
================================ */

/* From left */
.reveal-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

/* From right */
.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in */
.reveal-zoom{
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease;
}

.reveal-zoom.active{
  opacity: 1;
  transform: scale(1);
}


/* ================================
   STAGGER EFFECT (Apple feel)
================================ */

.reveal:nth-child(1){ transition-delay: 0.1s; }
.reveal:nth-child(2){ transition-delay: 0.2s; }
.reveal:nth-child(3){ transition-delay: 0.3s; }
.reveal:nth-child(4){ transition-delay: 0.4s; }
.reveal:nth-child(5){ transition-delay: 0.5s; }





/* ================================
   PERFORMANCE OPTIMIZATION
================================ */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
  will-change: transform, opacity;
}


/* ================================
   OPTIONAL: DISABLE ON SMALL DEVICES
================================ */

@media (max-width: 600px){
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom{
    transform: none;
    opacity: 1;
    transition: none;
  }
}