/* =====================================================
   âœ… GATI XPRESS â€“ FINAL RESPONSIVE CLEAN CSS
   ===================================================== */

/* ---------- GLOBAL RESET ---------- */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:"Open Sans",sans-serif;
  line-height:1.6;
  color:#444;
  background:#f8f8f8;
  overflow-x:hidden;
}
.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}
a{text-decoration:none;color:inherit;}
.section-padding{padding:60px 0;}
h1,h2,h3,h4{color:#333;font-weight:700;margin-bottom:10px;}
h1{font-size:3.2em;}h2{font-size:2.3em;}h3{font-size:1.7em;}h4{font-size:1.3em;}
p{color:#666;font-weight:300;margin-bottom:15px;}
.centered{text-align:center;}

/* ðŸ“± MOBILE HEADING FIX */
@media(max-width:768px){
  h1{font-size:2em;}
  h2{font-size:1.6em;}
  h3{font-size:1.3em;}
  h4{font-size:1.1em;}
}

/* ---------- BUTTONS ---------- */
.cta-btn,.service-btn{
  display:inline-block;
  padding:10px 22px;
  border-radius:5px;
  font-weight:600;
  background:#1A635B;
  color:#fff;
  border:none;
  cursor:pointer;
  transition:background .3s,transform .2s;
}
.cta-btn:hover,.service-btn:hover{background:#0E3F3B;transform:translateY(-2px);}

/* ---------- TOP BAR ---------- */
.top-bar{
  background:#1A635B;
  color:#fff;
  font-size:.9em;
  padding:8px 0;
}
.top-bar-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.top-left span{margin-right:20px;}
.top-left i{margin-right:5px;color:#D49D00;}
.top-right a{color:#fff;margin-left:10px;transition:color .3s;}
.top-right a:hover{color:#D49D00;}

/* ðŸ“± MOBILE TOP BAR */
@media(max-width:768px){
  .top-bar{font-size:.8em;padding:6px 0;}
  .top-bar-flex{flex-direction:column;gap:5px;text-align:center;}
  .top-left{display:flex;flex-direction:column;gap:4px;}
  .top-left span{margin:0;}
  .top-right{margin-top:5px;}
}

/* ---------- NAVBAR ---------- */
header{
  position:sticky;top:0;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  z-index:999;
}
.navbar{padding:12px 0;}
.nav-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo-container img{
  height:65px;width:auto;object-fit:contain;
}
.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:25px;
}
.nav-links li{
  margin:0;
}
.nav-links a{
  color:#333;
  font-weight:600;
  transition:color .3s;
}
.nav-links a.active,.nav-links a:hover{color:#1A635B;}
.menu-toggle{
  display:none;
  font-size:1.8em;
  color:#1A635B;
  cursor:pointer;
  z-index:10000;
}
.cta-btn{
  background:#D49D00;
  color:#fff!important;
  padding:8px 16px;
  border-radius:4px;
}
.cta-btn:hover{background:#b38700;}

/* ðŸ“± MOBILE MENU - FIXED */
@media(max-width:992px){
  .logo-container img{height:50px;}
  .menu-toggle{display:block;}
  
  .nav-links{
    flex-direction:column;
    position:fixed;
    top:0;
    right:-100%;
    width:80%;
    max-width:320px;
    height:100vh;
    background:#fff;
    transition:right .4s ease;
    box-shadow:-4px 0 15px rgba(0,0,0,.3);
    padding-top:80px;
    gap:0;
    z-index:9999;
    overflow-y:auto;
  }
  
  .nav-links.active{
    right:0;
  }
  
  .nav-links li{
    width:100%;
    text-align:center;
    border-bottom:1px solid #f0f0f0;
    margin:0;
  }
  
  .nav-links a{
    display:block;
    font-size:1.1em;
    color:#1A635B;
    padding:18px 20px;
    width:100%;
  }
  
  .nav-links a:hover{
    background:#f5f5f5;
  }
  
  /* Mobile menu CTA button */
  .nav-links .cta-btn{
    display:block;
    margin:10px 20px;
    text-align:center;
  }
}

/* ---------- SLIDER - FIXED ---------- */
.slider{
  position:relative;
  width:100%;
  height:80vh;
  overflow:hidden;
  background:#000;
}
.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s ease-in-out;
}
.slide.current{
  opacity:1;
  z-index:1;
}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:brightness(65%);
}
.slide-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  max-width:90%;
  padding:0 20px;
  z-index:2;
}
.slide-content h1{
  font-size:3em;
  line-height:1.2;
  margin-bottom:15px;
  text-shadow:2px 2px 8px rgba(0,0,0,0.7);
}
.slide-content h1 span{color:#D49D00;}
.slide-content p{
  font-size:1.2em;
  color:#eee;
  text-shadow:1px 1px 5px rgba(0,0,0,0.6);
}
.prev-slide,.next-slide{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.6);
  color:#fff;
  border:none;
  padding:12px 16px;
  font-size:1.4em;
  border-radius:5px;
  cursor:pointer;
  z-index:10;
  transition:background .3s;
}
.prev-slide:hover,.next-slide:hover{
  background:rgba(0,0,0,.85);
}
.prev-slide{left:20px;} 
.next-slide{right:20px;}

/* ðŸ“± MOBILE SLIDER - FIXED */
@media(max-width:768px){
  .slider{
    height:55vh;
    min-height:400px;
  }
  
  .slide img{
    object-fit:cover;
    object-position:center;
  }
  
  .slide-content{
    max-width:95%;
    padding:0 15px;
  }
  
  .slide-content h1{
    font-size:1.8em;
    line-height:1.3;
  }
  
  .slide-content p{
    font-size:1em;
  }
  
  .prev-slide,.next-slide{
    padding:10px 13px;
    font-size:1.2em;
  }
  
  .prev-slide{left:10px;} 
  .next-slide{right:10px;}
}

@media(max-width:480px){
  .slider{
    height:50vh;
    min-height:350px;
  }
  
  .slide-content h1{
    font-size:1.5em;
  }
  
  .slide-content p{
    font-size:0.9em;
  }
  
  .prev-slide,.next-slide{
    padding:8px 11px;
    font-size:1em;
  }
}

/* ---------- ABOUT ---------- */
.about-section{background:#fcfcfc;padding:80px 0;}
.about-wrapper{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
  align-items:flex-start;
}
.about-image{
  flex:1 1 45%;
  max-width:480px;
  background:#fff;
  border:1px solid #e2e2e2;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
}
.about-image img{width:100%;height:auto;object-fit:cover;}
.about-tagline{
  background:#1A635B;color:#fff;text-align:center;
  padding:10px;font-size:.95em;font-weight:600;
}
.about-detail{
  flex:1 1 50%;max-width:550px;
}
.about-detail h2{color:#1A635B;margin-bottom:15px;}
.about-detail h3{color:#1A635B;margin:20px 0 10px;}
.about-detail p{text-align:justify;color:#555;margin-bottom:15px;line-height:1.7;}
.about-detail ul{margin-left:25px;margin-bottom:20px;color:#555;line-height:1.8;}
.about-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:15px;margin:25px 0;
}
.about-stats .stat{
  background:#f2f2f2;
  border-radius:6px;
  text-align:center;
  padding:18px 10px;
  box-shadow:0 1px 4px rgba(0,0,0,0.05);
}
.about-stats h4{color:#1A635B;font-size:1.5em;margin-bottom:5px;}
.about-stats p{color:#666;font-size:.9em;margin:0;}
.about-detail .cta-btn{margin-top:15px;}

/* ðŸ“± MOBILE ABOUT */
@media(max-width:992px){
  .about-section{padding:50px 0;}
  .about-wrapper{flex-direction:column;align-items:center;}
  .about-detail,.about-image{max-width:100%;}
  .about-detail h2{text-align:center;}
  .about-stats{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:500px){
  .about-stats{grid-template-columns:1fr;}
}

/* ---------- SERVICES ---------- */
.services-section{background:#fff;padding:80px 0;}
.section-subtitle{margin-bottom:10px;}
.section-description{text-align:center;max-width:700px;margin:0 auto 30px;color:#666;}
.service-cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;margin-top:40px;
}
.service-card{
  background:#fff;border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  overflow:hidden;transition:transform .3s,box-shadow .3s;
}
.service-card:hover{transform:translateY(-5px);box-shadow:0 4px 20px rgba(0,0,0,0.12);}
.img-holder{height:200px;overflow:hidden;}
.img-holder img{width:100%;height:100%;object-fit:cover;transition:transform .3s;}
.service-card:hover .img-holder img{transform:scale(1.05);}
.service-info{padding:25px;text-align:left;}
.service-info h4{color:#333;margin-bottom:10px;}
.service-info p{color:#777;font-size:.95em;line-height:1.6;}
.service-btn{margin-top:12px;}

/* ðŸ“± MOBILE SERVICES */
@media(max-width:768px){
  .services-section{padding:50px 0;}
  .service-cards-grid{grid-template-columns:1fr;gap:20px;}
}

/* ---------- GALLERY ---------- */
.gallery{padding:60px 0;}
.gallery h2{text-align:center;margin-bottom:30px;color:#1A635B;}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
}
.g-item{
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.g-item img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:transform .3s;
}
.g-item:hover img{transform:scale(1.08);}

/* ðŸ“± MOBILE GALLERY */
@media(max-width:768px){
  .gallery-grid{grid-template-columns:repeat(2,1fr);gap:10px;}
}
@media(max-width:500px){
  .gallery-grid{grid-template-columns:1fr;}
}

/* ---------- FAQ ---------- */
.faq{padding:60px 0;}
.faq h2{text-align:center;margin-bottom:30px;color:#1A635B;}
.faq-item{background:#fff;padding:20px;margin-bottom:15px;border-radius:8px;box-shadow:0 1px 4px rgba(0,0,0,0.05);}
.faq-item h4{color:#1A635B;margin-bottom:8px;}
.faq-item p{margin:0;color:#666;line-height:1.7;}

/* ---------- CONTACT ---------- */
.contact-section{
  background:#f9fafb;
  padding:80px 0;
}

/* container fix */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 15px;
}

.contact-box{
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
  display:grid;
  grid-template-columns:1fr 1fr;
  max-width:1100px;
  margin:0 auto;
  overflow:hidden;
}

/* LEFT */
.contact-info{
  background:#1A635B;
  color:#fff;
  padding:50px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.contact-info h2{
  font-size:1.9em;
  margin-bottom:10px;
  color:#fff;
}

.contact-info p{
  color:#e7e7e7;
  margin-bottom:25px;
}

.info-item{
  margin-bottom:12px;
  display:flex;
  align-items:flex-start;
}

.info-item i{
  margin-right:10px;
  margin-top:4px;
  color:#D49D00;
  font-size:1.1em;
}

.contact-info a{
  color:#fff;
  transition:color .3s;
}

.contact-info a:hover{
  color:#D49D00;
}

.contact-info .social-icons{
  margin-top:25px;
}

.contact-info .social-icons a{
  color:#1A635B;
  background:#fff;
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  margin-right:10px;
  transition:all .3s;
}

.contact-info .social-icons a:hover{
  background:#D49D00;
  color:#fff;
}

/* RIGHT */
.contact-form{
  padding:50px 40px;
}

.contact-form h3{
  color:#1A635B;
  margin-bottom:20px;
  text-align:center;
  font-size:1.5em;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:.95em;
  background:#fafafa;
  transition:border-color .3s,box-shadow .3s;
  font-family:'Open Sans',sans-serif;
  color:#444;
  margin-bottom:15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:#1A635B;
  box-shadow:0 0 5px rgba(26,99,91,.2);
  background:#fff;
  outline:none;
}

.contact-form select{
  appearance:none;
  background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23777' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:10px;
}

.contact-form textarea{
  resize:vertical;
  min-height:120px;
}

.contact-form button{
  width:100%;
  background:#1A635B;
  color:#fff;
  border:none;
  font-weight:600;
  padding:13px;
  border-radius:6px;
  cursor:pointer;
  font-size:1em;
  transition:background .3s,transform .2s;
}

.contact-form button:hover{
  background:#0E3F3B;
  transform:translateY(-2px);
}

.contact-form button i{
  margin-right:6px;
}

/* 📱 MOBILE CONTACT */
@media(max-width:992px){
  .contact-section{
    padding:50px 0;
  }

  .contact-box{
    grid-template-columns:1fr;
    overflow:visible;
  }

  .contact-info{
    padding:35px 25px;
    text-align:center;
  }

  .contact-form{
    padding:35px 25px;
  }

  .info-item{
    justify-content:center;
  }
}


/* ---------- FOOTER ---------- */
footer{
  background:#222;color:#fff;
  padding:50px 0 25px;font-size:.9em;
}
.footer-grid-container{
  display:flex;flex-wrap:wrap;justify-content:space-between;
  padding-bottom:25px;border-bottom:1px solid #444;gap:30px;
}
.footer-col{flex:1;min-width:250px;margin-bottom:25px;}
.footer-logo{height:60px;margin-bottom:10px;object-fit:contain;}
.footer-col h4{color:#D49D00;margin-bottom:15px;}
.footer-col ul{list-style:none;}
.footer-col li{margin-bottom:8px;}
.footer-col a{color:#ccc;transition:color .3s;}
.footer-col a:hover{color:#fff;}
.footer-col i{margin-right:8px;color:#D49D00;}
.social-icons a{color:#ccc;font-size:1.5em;margin-right:10px;transition:color .3s;}
.social-icons a:hover{color:#D49D00;}
.copyright{text-align:center;color:#999;font-size:.85em;margin-top:20px;}

/* ðŸ“± MOBILE FOOTER */
@media(max-width:768px){
  .footer-grid-container{flex-direction:column;text-align:center;}
  .footer-col{min-width:100%;}
}

/* ---------- FLOATING BUTTONS - FIXED ---------- */
.float{
  position:fixed;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  right:20px;
  box-shadow:0 4px 12px rgba(0,0,0,0.3);
  z-index:9998;
  transition:transform .3s, box-shadow .3s;
  cursor:pointer;
}
.whatsapp{
  background:#25D366;
  bottom:140px;
}
.call{
  background:#1A635B;
  bottom:75px;
}
.float:hover{
  transform:scale(1.15);
  box-shadow:0 6px 16px rgba(0,0,0,0.4);
}

/* ðŸ“± MOBILE FLOAT BUTTONS - FIXED */
@media(max-width:768px){
  .float{
    width:50px;
    height:50px;
    font-size:22px;
    right:15px;
  }
  .whatsapp{
    bottom:120px;
  }
  .call{
    bottom:60px;
  }
}

@media(max-width:480px){
  .float{
    width:48px;
    height:48px;
    font-size:20px;
    right:12px;
  }
  .whatsapp{
    bottom:110px;
  }
  .call{
    bottom:55px;
  }
}
/* ================================
   🚫 GLOBAL HORIZONTAL SCROLL FIX
================================ */
html, body{
  max-width:100%;
  overflow-x:hidden !important;
}

/* Prevent any element from exceeding viewport */
img, video{
  max-width:100%;
  height:auto;
}

/* ================================
   📱 MOBILE NAV OVERFLOW FIX
================================ */
@media(max-width:992px){
  .nav-links{
    max-width:100vw;
    overflow-x:hidden;
  }
}

/* ================================
   📱 GRID & SECTION OVERFLOW FIX
================================ */
@media(max-width:768px){
  .service-cards-grid,
  .gallery-grid,
  .about-wrapper,
  .footer-grid-container{
    width:100%;
    overflow-x:hidden;
  }
}

/* ================================
   📱 CONTACT SECTION FIX
================================ */
@media(max-width:992px){
  .contact-box{
    width:100%;
    max-width:100%;
    overflow:visible;
  }

  .contact-section .container{
    padding-left:15px;
    padding-right:15px;
  }
}

/* ================================
   📱 SLIDER EDGE FIX
================================ */
@media(max-width:768px){
  .slider,
  .slide,
  .slide-content{
    max-width:100vw;
    overflow:hidden;
  }
}
/* ==================================================
   📱 GLOBAL MOBILE LAYOUT FIX – ALL SECTIONS
================================================== */
@media(max-width:768px){

  /* ---------- GENERAL ---------- */
  body{
    font-size:15px;
    line-height:1.6;
  }

  .container{
    width:100%;
    max-width:100%;
    padding-left:15px;
    padding-right:15px;
  }

  section{
    overflow-x:hidden;
  }

  /* ---------- NAVBAR ---------- */
  .navbar{
    padding:10px 0;
  }

  .logo-container img{
    height:45px;
  }

  /* ---------- SLIDER ---------- */
  .slider{
    height:55vh;
    min-height:360px;
  }

  .slide-content{
    padding:0 12px;
  }

  .slide-content h1{
    font-size:1.7em;
  }

  .slide-content p{
    font-size:.95em;
  }

  /* ---------- ABOUT ---------- */
  .about-section{
    padding:45px 0;
  }

  .about-wrapper{
    flex-direction:column;
    gap:30px;
  }

  .about-image,
  .about-detail{
    width:100%;
    max-width:100%;
  }

  .about-detail h2,
  .about-detail h3{
    text-align:center;
  }

  .about-detail p{
    text-align:left;
  }

  .about-stats{
    grid-template-columns:1fr 1fr;
  }

  /* ---------- SERVICES ---------- */
  .services-section{
    padding:45px 0;
  }

  .service-cards-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .service-info{
    padding:20px;
  }

  /* ---------- GALLERY ---------- */
  .gallery{
    padding:45px 0;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .g-item img{
    height:180px;
  }

  /* ---------- FAQ ---------- */
  .faq{
    padding:45px 0;
  }

  .faq-item{
    padding:18px;
  }

  /* ---------- CONTACT ---------- */
  .contact-section{
    padding:45px 0;
  }

  .contact-box{
    display:flex;
    flex-direction:column;
    width:100%;
    max-width:100%;
  }

  .contact-info{
    padding:30px 20px;
    text-align:center;
  }

  .info-item{
    justify-content:center;
    font-size:.95em;
  }

  .contact-form{
    padding:30px 20px;
  }

  /* ---------- FOOTER ---------- */
  footer{
    padding:40px 0 20px;
  }

  .footer-grid-container{
    flex-direction:column;
    text-align:center;
    gap:25px;
  }

  .footer-col{
    min-width:100%;
  }

  /* ---------- FLOATING BUTTONS ---------- */
  .float{
    width:48px;
    height:48px;
    font-size:20px;
    right:12px;
  }

  .whatsapp{
    bottom:110px;
  }

  .call{
    bottom:55px;
  }
}

/* ==================================================
   📱 SMALL MOBILE (VERY IMPORTANT)
================================================== */
@media(max-width:480px){

  h1{font-size:1.5em;}
  h2{font-size:1.3em;}
  h3{font-size:1.15em;}

  .slide-content h1{
    font-size:1.45em;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }
}


