
/* ============================================
   KARUPU SAAMY SEPTIC TANK CLEANING
   Yellow & Orange Theme - Global Styles
   ============================================ */

:root {
  --yellow: #FFC107;
  --yellow-dark: #FFB300;
  --orange: #FF6B00;
  --orange-dark: #E55A00;
  --dark: #1A1A2E;
  --dark2: #222222;
  --white: #FFFFFF;
  --gray: #666666;
  --light-gray: #F5F5F5;
  --text: #333333;
  --font-main: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 12px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 5px; }
.top-bar-left span i { color: var(--yellow); }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.top-bar-right a { color: #ccc; font-size: 14px; transition: color .2s; }
.top-bar-right a:hover { color: var(--yellow); }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
}
.logo { display: flex; align-items: center; gap: 12px; width: 200px; }
.logo-icon {
  width: 55px; height: 55px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.logo-text h1 { font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.logo-text span { color: var(--orange); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-radius: 4px;
  transition: all .2s;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 5px); left: 0;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all .25s;
  z-index: 999;
  border-top: 3px solid var(--orange);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 18px;
  font-size: 13px; border-radius: 0;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: #fff8e1; color: var(--orange); padding-left: 24px; }

.nav-phone {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  display: flex; align-items: center; gap: 6px;
}
.nav-phone:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  border: 2px solid transparent; transition: all .3s;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--orange); }

/* ---- SECTION TITLES ---- */
.section-title {
  text-align: center; margin-bottom: 50px;
}
.section-title .eyebrow {
  color: var(--orange); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  display: block; margin-bottom: 10px;
}
.section-title h2 {
  font-size: 36px; font-weight: 600; color: var(--dark);
  line-height: 1.2; margin-bottom: 15px;
}
.section-title h2 span { color: var(--orange); }
.section-title p { color: var(--gray); font-size: 16px; max-width: 600px; margin: 0 auto; }
.title-line {
  width: 60px; height: 4px; background: var(--orange);
  margin: 15px auto 0; border-radius: 2px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFC107' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.breadcrumb-content { position: relative; z-index: 1; }
.breadcrumb-content h1 {
  font-size: 42px; font-weight: 800; color: var(--white); margin-bottom: 15px;
}
.breadcrumb-content h1 span { color: var(--yellow); }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; color: #ccc; font-size: 14px; }
.breadcrumb-nav a { color: var(--yellow); }
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav i { font-size: 11px; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  padding: 20px 0;
}
.cta-strip .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.cta-strip-text h2 { font-size: 30px; font-weight: 600; color: var(--dark); }
.cta-strip-text p { color: var(--dark); font-size: 16px; margin-top: 5px; opacity: .8; }
.cta-strip-actions { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.cta-strip-actions .phone {
  font-size: 22px; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
}
.emergency-badge {
  background: var(--dark);
  color: var(--yellow);
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600; font-size: 12px;
  line-height: 1.4;
}

/* ---- FOOTER ---- */
footer { background: var(--dark2); color: #ccc; }
.footer-top { padding: 70px 0 40px; }

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: #aaa; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 15px;
  transition: all .2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  color: var(--white); font-size: 17px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #aaa; font-size: 14px; display: flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 5px; }
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 16px; }
.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 15px; font-size: 14px; color: #aaa;
}
.footer-contact-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(255,107,0,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.footer-bottom {
  background: #111;
  padding: 18px 0;
  font-size: 13px;
  color: #777;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 5px; }
.footer-bottom-links a { color: #777; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ---- DUMMY IMAGE PLACEHOLDERS ---- */
.img-placeholder {
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 14px; font-weight: 600;
  border-radius: 8px; overflow: hidden;
  position: relative;
}
.img-placeholder::before {
  content: '🚛';
  font-size: 48px;
  display: block; text-align: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
 
  .section-title h2 { font-size: 28px; }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 80px 20px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: right .3s; gap: 2px;
    overflow-y: auto; z-index: 998;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { width: 100%; padding: 12px 15px; }
  .dropdown-menu {
    position: static; box-shadow: none; border: none;
    opacity: 1; visibility: visible; transform: none;
    background: var(--light-gray); border-radius: 4px;
    margin-top: 5px; display: none;
    border-left: 3px solid var(--orange);
  }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-phone { margin-top: 10px; }
  .breadcrumb-content h1 { font-size: 28px; }
  .cta-strip .container { text-align: center; justify-content: center; }
  .cta-strip-text h2 { font-size: 24px; }
  
  .footer-bottom .container { flex-direction: column; text-align: center; }
}




.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Large Tablets (iPad Pro) */
@media (max-width: 992px) and (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid > * {
        min-width: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title h2 {
        font-size: 28px;
    }
}

/* ==========================
   FLOATING CONTACT BUTTONS
========================== */

.floating-contact{
    position:fixed;
    right:29px;
    bottom:30px; /* Prevents cutting on mobile */

    display:flex;
    flex-direction:column;
    gap:12px;

    z-index:9999;
}

.float-btn{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    font-size:24px;

    box-shadow:0 8px 25px rgba(0,0,0,.20);

    transition:all .3s ease;
}

/* Call Button */
.call-btn{
    background:#ff6b00;
    color:#fff;
}

/* WhatsApp Button */
.whatsapp-btn{
    background:#ffc107;
    color:#081a35;
}

/* Hover */
.float-btn:hover{
    transform:translateY(-5px) scale(1.08);
}

/* Pulse Animation */
.call-btn{
    animation:callPulse 2s infinite;
}

.whatsapp-btn{
    animation:whatsPulse 2s infinite;
}

/* @keyframes callPulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,107,0,.6);
    }
    70%{
        box-shadow:0 0 0 15px rgba(255,107,0,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,107,0,0);
    }
}

@keyframes whatsPulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,193,7,.6);
    }
    70%{
        box-shadow:0 0 0 15px rgba(255,193,7,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,193,7,0);
    }
} */


@media(max-width:768px){

    .floating-contact{
        right:15px;
        bottom:4px;
    }

    .float-btn{
        width:52px;
        height:52px;
        font-size:20px;
    }

}








.service-detail{
    padding:100px 0;
}

.service-detail-grid{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:60px;
    align-items:center;
}

.service-img-col{
    position:relative;
}

.service-img-box{
    position:relative;
    overflow:hidden;

    border-radius:25px;
    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-main-img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.service-img-box:hover .service-main-img{
    transform:scale(1.08);
}

.service-img-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.service-img-overlay h4{
    color:#fff;
    margin:0;
    font-size:24px;
    font-weight:700;
}

.service-img-overlay span{
    color:#FFC107;
    font-size:14px;
}

.service-badge{
    position:absolute;
    top:20px;
    right:20px;

    width:95px;
    height:95px;

    border-radius:50%;

    background:#FF6B00;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    font-size:12px;
    font-weight:700;

    border:4px solid #fff;

    box-shadow:0 10px 25px rgba(255,107,0,.35);
}

.service-tag{
    display:inline-block;
    background:#FFF3CD;
    color:#FF6B00;

    padding:8px 16px;
    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.service-content h2{
    font-size:42px;
    font-weight:600;
    color:#081a35;
    margin-bottom:20px;
}

.service-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

.service-features{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.service-features li{
    margin-bottom:12px;
    color:#444;
}

.service-features i{
    color:#FF6B00;
    margin-right:10px;
}

.service-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:30px;
}

.service-meta-item{
    min-width:130px;

    background:#fff;

    padding:11px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.service-meta-item strong{
    display:block;
    font-size:24px;
    color:#FF6B00;
}

.service-meta-item span{
    font-size:13px;
    color:#777;
}

.service-actions{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

@media(max-width:991px){

    .service-detail{
        padding:70px 0;
    }

    .service-detail-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .service-main-img{
        height:350px;
    }

    .service-content h2{
        font-size:32px;
    }

}

@media(max-width:576px){

    .service-main-img{
        height:250px;
    }

    .service-content h2{
        font-size:28px;
    }

    .service-actions .btn{
        width:100%;
    }

    .service-meta{
        justify-content:center;
    }

}


/* service */

    /* SERVICE PAGE */
    .services-intro { padding: 80px 0; background: var(--light-gray); }
    .services-intro-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
    }
    .si-card {
      background: var(--white); border-radius: 10px; padding: 25px;
      text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.07);
      border-top: 4px solid var(--orange);
    }
    .si-card i { font-size: 40px; color: var(--orange); margin-bottom: 15px; display: block; }
    .si-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); }

    /* SERVICE DETAIL SECTION */
    .service-detail {
      padding: 80px 0;
      border-bottom: 1px solid #f0f0f0;
    }
    .service-detail:nth-child(even) { background: var(--light-gray); }
    .service-detail-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
    }
    .service-img-col { position: relative; }
    .service-img-box {
      border-radius: 16px; overflow: hidden; height: 360px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; position: relative;
    }
    .service-img-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(0,0,0,0.7); color: var(--white);
      padding: 15px; font-weight: 700; text-align: center; font-size: 15px;
    }
    .service-badge {
      position: absolute; top: -15px; right: -15px;
      background: var(--orange); color: var(--white);
      width: 80px; height: 80px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-weight: 800; font-size: 11px; text-align: center;
      border: 3px solid var(--white); box-shadow: 0 5px 20px rgba(255,107,0,0.4);
    }
    .service-content h2 { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 15px; }
    .service-content h2 span { color: var(--orange); }
    .service-tag {
      display: inline-block; background: #fff8e1; color: var(--orange);
      padding: 5px 14px; border-radius: 50px; font-size: 12px;
      font-weight: 700; margin-bottom: 15px; border: 1px solid #FFE082;
    }
    .service-content p { color: var(--gray); line-height: 1.8; font-size: 15px; margin-bottom: 15px; }
    .service-features { margin: 20px 0; }
    .service-features li {
      display: flex; align-items: flex-start; 
       border-bottom: 1px dashed #eee;
      font-size: 14px; color: var(--text);
    }
    .service-features li i { color: var(--orange); font-size: 16px; margin-top: 2px; min-width: 18px; }
    .service-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 25px; }
    .service-meta {
      display: flex; gap: 20px; flex-wrap: wrap; margin: 20px 0;
       background: var(--white); border-radius: 10px;
      border-left: 4px solid var(--orange); box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    }
    .service-meta-item { text-align: center; }
    .service-meta-item strong { display: block; font-size: 20px; font-weight: 600; color: var(--orange); }
    .service-meta-item span { font-size: 12px; color: var(--gray); }

    @media(max-width:992px) {
      .services-intro-grid { grid-template-columns: 1fr 1fr; }
      .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
      .service-img-box { height: 250px; }
    }
    @media(max-width:480px) {
      .services-intro-grid { grid-template-columns: 1fr; }
    }



    /* About us */


      /* ---- ABOUT PAGE ---- */
    .who-section { padding: 80px 0; }
    .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .who-images { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .who-main-img {
      grid-column: 1 / -1;
      border-radius: 12px; overflow: hidden;
      /* background: linear-gradient(135deg, #FFE082, #FF8C00); */
      display: flex; align-items: center; justify-content: center; flex-direction: column;
    }
    .who-sub-img img{
       border-radius: 10px;
      display: flex; align-items: center; justify-content: center; flex-direction: column;
    }
    .who-sub-img:nth-child(2) { border-radius: 10px; }
    .who-sub-img:nth-child(3) {  border-radius: 10px; }
    .exp-badge {
      position: absolute; top: -20px; right: -20px;
      width: 100px; height: 100px; border-radius: 50%;
      background: var(--orange);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: var(--white); font-weight: 900; font-size: 13px; text-align: center;
      box-shadow: 0 5px 20px rgba(255,107,0,0.5);
      border: 3px solid var(--white);
    }
    .exp-badge span { font-size: 28px; line-height: 1; }
    .who-content h2 { font-size: 34px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
    .who-content h2 span { color: var(--orange); }
    .who-content p { color: var(--gray); line-height: 1.8; font-size: 15px; margin-bottom: 15px; }
    .vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px; }
    .vision-card { background: var(--light-gray); padding: 20px; border-radius: 10px; border-left: 4px solid var(--orange); }
    .vision-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .vision-card h4 i { color: var(--orange); margin-right: 8px; }
    .vision-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin: 0; }

    /* TRUST */
    .trust-section { background: var(--light-gray); padding: 80px 0; }
    .trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
    .trust-card {
      background: var(--white); padding: 30px 20px; border-radius: 12px;
      text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.07);
      transition: all .3s;
    }
    .trust-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
    .trust-icon {
      width: 70px; height: 70px; border-radius: 50%;
      background: linear-gradient(135deg, var(--yellow), var(--orange));
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; color: var(--white); margin: 0 auto 20px;
    }
    .trust-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .trust-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

    /* TEAM */
    .team-section { padding: 80px 0; }
    .team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
    .team-card { text-align: center; }
    .team-img {
      width: 100%; height: 200px; border-radius: 12px; overflow: hidden;
      background: linear-gradient(135deg, #FFE082, #FF8C00);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; margin-bottom: 15px;
      transition: all .3s;
    }
    .team-card:hover .team-img { transform: scale(1.03); }
    .team-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .team-card span { font-size: 13px; color: var(--orange); font-weight: 600; }

    /* SERVICE AREAS */
    .areas-section { background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%); padding: 70px 0; }
    .areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; margin-top: 40px; }
    .area-item {
      background: rgba(255,255,255,0.07); border-radius: 8px;
      padding: 20px; text-align: center; border: 1px solid rgba(255,193,7,0.2);
      transition: all .3s;
    }
    .area-item:hover { background: rgba(255,193,7,0.15); border-color: var(--yellow); }
    .area-item i { color: var(--yellow); font-size: 24px; margin-bottom: 10px; display: block; }
    .area-item span { color: var(--white); font-weight: 600; font-size: 14px; }

    @media(max-width:992px) {
      .who-grid, .trust-grid, .team-grid { grid-template-columns: 1fr 1fr; }
      .areas-grid { grid-template-columns: repeat(3,1fr); }
    }
    @media(max-width:768px) {
      .who-grid { grid-template-columns: 1fr; }
      .trust-grid, .team-grid, .areas-grid { grid-template-columns: 1fr 1fr; }
      .vision-grid { grid-template-columns: 1fr; }
      .exp-badge{
        width: 50px;
        height: 50px;
        display: none;
      }
      .exp-badge span{
        font-size: 10px;
      }
    }
    @media(max-width:480px) {
      .trust-grid, .team-grid, .areas-grid { grid-template-columns: 1fr; }
    }




    /* gallery */



     /* GALLERY */
    .gallery-section { padding: 80px 0; background: var(--light-gray); }

    /* FILTER TABS */
    .filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
    .filter-btn {
      padding: 9px 22px; border-radius: 50px; border: 2px solid var(--orange);
      background: transparent; color: var(--orange); font-weight: 700; font-size: 13px;
      cursor: pointer; transition: all .2s; font-family: var(--font-main);
    }
    .filter-btn.active, .filter-btn:hover { background: var(--orange); color: var(--white); }

    /* GRID */
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    }
    .gallery-item {
      border-radius: 10px; overflow: hidden; cursor: pointer;
      position: relative; box-shadow: 0 3px 15px rgba(0,0,0,0.1);
      transition: transform .3s, box-shadow .3s;
    }
    .gallery-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
    .gallery-item:nth-child(5n+1) { grid-column: span 2; }
    .gallery-img {
      width: 100%; height: 200px;
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      position: relative; transition: all .3s;
    }
    .gallery-item:nth-child(5n+1) .gallery-img { height: 280px; }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(255,107,0,0); display: flex; align-items: center; justify-content: center;
      transition: all .3s;
    }
    .gallery-item:hover .gallery-overlay { background: rgba(255,107,0,0.85); }
    .gallery-overlay-content {
      text-align: center; color: var(--white); opacity: 0; transform: translateY(15px);
      transition: all .3s;
    }
    .gallery-item:hover .gallery-overlay-content { opacity: 1; transform: translateY(0); }
    .gallery-overlay-content i { font-size: 36px; margin-bottom: 10px; display: block; }
    .gallery-overlay-content span { font-size: 14px; font-weight: 700; }
    .gallery-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(0,0,0,0.7); color: var(--white);
      padding: 10px; font-size: 12px; font-weight: 600; text-align: center;
    }

    /* LIGHTBOX */
    .lightbox {
      position: fixed; inset: 0; background: rgba(0,0,0,0.95);
      z-index: 9999; display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: all .3s;
    }
    .lightbox.active { opacity: 1; visibility: visible; }
    .lightbox-inner {
      position: relative; max-width: 800px; width: 90%; text-align: center;
    }
    .lightbox-img {
      width: 100%; max-height: 70vh; border-radius: 12px; overflow: hidden;
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      font-size: 100px; min-height: 350px;
    }
    .lightbox-caption {
      color: var(--white); margin-top: 20px; font-size: 16px; font-weight: 600;
    }
    .lightbox-counter { color: #aaa; font-size: 13px; margin-top: 5px; }
    .lb-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 50px; height: 50px; border-radius: 50%;
      background: var(--orange); color: var(--white); border: none;
      font-size: 20px; cursor: pointer; transition: all .2s;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 15px rgba(255,107,0,0.4);
    }
    .lb-btn:hover { background: var(--orange-dark); transform: translateY(-50%) scale(1.1); }
    .lb-prev { left: -70px; }
    .lb-next { right: -70px; }
    .lb-close {
      position: absolute; top: -55px; right: 0;
      width: 45px; height: 45px; border-radius: 50%;
      background: rgba(255,255,255,0.15); color: var(--white); border: none;
      font-size: 20px; cursor: pointer; transition: all .2s;
      display: flex; align-items: center; justify-content: center;
    }
    .lb-close:hover { background: var(--orange); }
    .lb-thumbnails {
      display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px;
    }
    .lb-thumb {
      width: 60px; height: 50px; border-radius: 6px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; border: 2px solid transparent; transition: all .2s; opacity: .6;
    }
    .lb-thumb.active { border-color: var(--orange); opacity: 1; transform: scale(1.1); }

    @media(max-width:992px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
    @media(max-width:768px) {
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-item:nth-child(5n+1) { grid-column: span 1; }
      .lb-prev { left: -50px; } .lb-next { right: -50px; }
    }
    @media(max-width:480px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .lb-prev, .lb-next { display: none; }
    }


    /* contact */




    /* CONTACT PAGE */
    .contact-section { padding-top: 40px; background: var(--light-gray); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; }

    /* INFO */
    .contact-info h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
    .contact-info h2 span { color: var(--orange); }
    .contact-info > p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 30px; }
    .contact-cards { display: flex; flex-direction: column; gap: 18px; }
    .contact-card {
      background: var(--white); border-radius: 12px; padding: 20px;
      display: flex; gap: 18px; align-items: flex-start;
      box-shadow: 0 3px 15px rgba(0,0,0,0.07);
      border-left: 4px solid var(--orange); transition: all .3s;
    }
    .contact-card:hover { transform: translateX(5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
    .cc-icon {
      width: 52px; height: 52px; min-width: 52px; border-radius: 50%;
      background: linear-gradient(135deg, var(--yellow), var(--orange));
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 20px;
    }
    .cc-text h4 { font-size: 14px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
    .cc-text p, .cc-text a { font-size: 16px; font-weight: 700; color: var(--dark); }
    .cc-text a:hover { color: var(--orange); }
    .cc-text .sub { font-size: 12px; color: var(--gray); font-weight: 400; margin-top: 2px; display: block; }

    /* HOURS */
    .hours-box {
      background: linear-gradient(135deg, var(--dark), #2d2d2d);
      border-radius: 12px; padding: 25px; margin-top: 20px; color: var(--white);
    }
    .hours-box h4 { font-size: 16px; font-weight: 700; color: var(--yellow); margin-bottom: 15px; }
    .hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: #ccc; }
    .hours-row .time { color: var(--yellow); font-weight: 700; }

    /* FORM */
   
    .contact-form-col h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
    .contact-form-col h2 span { color: var(--orange); }
    .contact-form-col > p { color: var(--gray); font-size: 15px; margin-bottom: 25px; }
    .contact-form { background: var(--white); border-radius: 16px;  box-shadow: 0 5px 30px rgba(0,0,0,0.1); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
    .form-group label span { color: var(--orange); }
    .form-control {
      width: 100%; padding: 13px 16px; border-radius: 8px;
      border: 2px solid #e8e8e8; font-family: var(--font-main);
      font-size: 14px; color: var(--text); transition: border-color .2s;
      background: var(--light-gray);
    }
    .form-control:focus { outline: none; border-color: var(--orange); background: var(--white); }
    .form-control::placeholder { color: #aaa; }
    select.form-control { cursor: pointer; }
    textarea.form-control { resize: vertical; min-height: 120px; }
    .form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
    .form-check input { margin-top: 3px; accent-color: var(--orange); width: 16px; height: 16px; }
    .form-check label { font-size: 13px; color: var(--gray); line-height: 1.6; }
    .form-submit { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--orange), #FF8C00); color: var(--white); border: none; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: var(--font-main); transition: all .3s; letter-spacing: 0.5px; }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,0.4); }
    .form-success { display: none; text-align: center; padding: 30px; }
    .form-success i { font-size: 60px; color: #4CAF50; margin-bottom: 15px; display: block; }
    .form-success h3 { font-size: 22px; color: var(--dark); margin-bottom: 10px; }
    .form-success p { color: var(--gray); }

    /* MAP */
    .map-section { padding: 0; }
    .map-wrapper { position: relative; }
    .map-frame { width: 100%; height: 400px; border: none; display: block; }
    .map-overlay-card {
      position: absolute; top: 30px; left: 30px;
      background: var(--white); border-radius: 12px; padding: 25px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2); max-width: 280px;
      border-top: 4px solid var(--orange);
    }
    .map-overlay-card h4 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
    .map-card-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--gray); margin-bottom: 10px; }
    .map-card-item i { color: var(--orange); font-size: 15px; margin-top: 2px; }

    /* WHY CONTACT */
    .why-contact { padding: 60px 0; background: var(--white); }
    .wc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .wc-card { text-align: center; padding: 25px 15px; border-radius: 10px; background: var(--light-gray); }
    .wc-card i { font-size: 36px; color: var(--orange); margin-bottom: 12px; display: block; }
    .wc-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .wc-card p { font-size: 13px; color: var(--gray); }

    @media(max-width:992px) { .contact-grid { grid-template-columns: 1fr; } .wc-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:768px) { .form-row { grid-template-columns: 1fr; } .map-overlay-card { position: static; max-width: 100%; margin: 0; border-radius: 0; } }
    @media(max-width:480px) { .wc-grid { grid-template-columns: 1fr; } .contact-form { padding: 0px; } }





.ssk-contact-row-section{
    padding:80px 0;
    background:#fffdf8;
}

.ssk-contact-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.ssk-contact-ball{
    width:250px;
    height:250px;
    border-radius:50%;
    background:linear-gradient(135deg,#ffd54f,#ff9800);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:25px;
    color:#fff;
    transition:.4s ease;
    box-shadow:0 15px 35px rgba(255,152,0,.25);
    position:relative;
}

.ssk-contact-ball::before{
    content:"";
    position:absolute;
    inset:12px;
    border:2px dashed rgba(255,255,255,.35);
    border-radius:50%;
}

.ssk-contact-ball:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 25px 50px rgba(255,152,0,.35);
}

.ssk-contact-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    z-index:2;
}

.ssk-contact-icon i{
    font-size:30px;
    color:#ff9800;
}

.ssk-contact-ball h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    z-index:2;
}

.ssk-contact-ball p{
    margin:0;
    font-size:14px;
    line-height:1.6;
    font-weight:500;
    z-index:2;
}

/* Tablet */
@media(max-width:1200px){
    .ssk-contact-ball{
        width:220px;
        height:220px;
    }
}

/* Mobile */
@media(max-width:768px){
    .ssk-contact-row{
        gap:20px;
    }

    .ssk-contact-ball{
        width:190px;
        height:190px;
    }

    .ssk-contact-icon{
        width:55px;
        height:55px;
    }

    .ssk-contact-icon i{
        font-size:24px;
    }

    .ssk-contact-ball h5{
        font-size:16px;
    }

    .ssk-contact-ball p{
        font-size:12px;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .ssk-contact-ball{
        width:170px;
        height:170px;
    }
}



/* toggler */


/* Overlay */
.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(3px);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

/* Sidebar */
.mobile-sidebar{
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    max-width:380px;
    height:100vh;
    background:#fff;
    z-index:9999;
    transition:.45s cubic-bezier(.22,.61,.36,1);
    overflow-y:auto;
    box-shadow:-15px 0 40px rgba(0,0,0,.18);
}

/* Active */
.mobile-sidebar.active{
    right:0;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Header */
.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 20px;
    /* background:linear-gradient(135deg,#ff9800,#ff6f00); */
}

.sidebar-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.sidebar-logo img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    padding:5px;
}

.sidebar-logo h3{
    margin:0;
    font-size:18px;
    color:#fff;
    font-weight:700;
}

.sidebar-logo span{
    font-size:12px;
    color:#fff;
    opacity:.9;
}

.close-btn{
    width:42px;
    height:42px;
    border:none;
   
    background-color: #ffffff;
    color: #ff6f00;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.close-btn:hover{
    background:#fff;
    color:#ff6f00;
}

/* Menu */
.sidebar-menu{
    list-style:none;
    padding:20px;
    margin:0;
}

.sidebar-menu li{
    margin-bottom:10px;
}

.sidebar-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    text-decoration:none;
    color:#222;
    font-weight:500;
    border-radius:12px;
    transition:.3s;
}

.sidebar-menu a:hover{
    background:#fff3e0;
    color:#ff6f00;
    transform:translateX(5px);
}

/* Dropdown */
.mobile-submenu{
    display:none;
    padding-left:20px;
}

.mobile-submenu li a{
    padding:10px 15px;
    font-size:14px;
}

.mobile-dropdown.active .mobile-submenu{
    display:block;
}

.arrow{
    margin-left:auto;
    transition:.3s;
}

.mobile-dropdown.active .arrow{
    transform:rotate(180deg);
}

/* Contact Card */
.sidebar-contact{
    margin:20px;
    padding:20px;
    border-radius:16px;
    background:linear-gradient(135deg,#ff9800,#ff6f00);
    color:#fff;
    text-align:center;
}

.sidebar-contact h4{
    margin-bottom:12px;
}

.sidebar-contact a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

/* Desktop Hide */
.mobile-sidebar,
.mobile-overlay{
    display:none;
}

@media(max-width:991px){

    .mobile-sidebar,
    .mobile-overlay{
        display:block;
    }

    .nav-menu{
        display:none !important;
    }
}



/* =========================
   CONTACT PAGE RESPONSIVE
========================= */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-info,
.contact-form-col{
    min-width:0;
}

/* Map */
.map-section{
    width:100%;
}

.map-wrapper{
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:20px;
}

.map-frame{
    width:100%;
    height:550px;
    border:0;
    display:block;
}

/* Overlay Card */
.map-overlay-card{
    position:absolute;
    left:25px;
    bottom:25px;
    width:350px;
    max-width:calc(100% - 50px);
    box-sizing:border-box;
}

/* Tablet */
@media (max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .contact-info{
        order:1;
    }

    .contact-form-col{
        order:2;
        width:100%;
    }

    .map-frame{
        height:450px;
    }

    .map-overlay-card{
        width:320px;
    }
}

/* Mobile */
@media (max-width:767px){

    .contact-section{
        padding:60px 0;
    }

    .contact-grid{
        gap:25px;
    }

    .contact-form-col h2,
    .contact-info h2{
        font-size:28px;
        line-height:1.3;
    }

    .contact-card{
        padding:18px;
    }

    .map-frame{
        height:350px;
    }

    .map-overlay-card{
        position:relative;
        left:auto;
        bottom:auto;
        width:100%;
        max-width:100%;
        margin-top:0;
        border-radius:0 0 20px 20px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .contact-section .container{
        padding-left:15px;
        padding-right:15px;
    }

    .contact-form-col h2,
    .contact-info h2{
        font-size:24px;
    }

    .map-frame{
        height:280px;
    }

    .map-overlay-card{
        padding:18px;
    }

    .map-card-item{
        font-size:14px;
    }

    .btn-orange{
        width:100%;
        text-align:center;
    }
}




.logo-footer{
  width: 200px;
  background-color: rgb(249, 249, 249);
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}




/* ==========================================================
   WHY CHOOSE US + ABOUT US RESPONSIVE
========================================================== */

/* Large Tablets */
@media (max-width: 1199px) {

    .why-about-wrapper{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:40px;
        align-items:center;
    }

    .why-content,
    .about-content{
        padding:20px;
    }

    .worker-img img,
    .truck-img img{
        width:100%;
        max-width:450px;
        margin:auto;
        display:block;
    }

}

/* iPad & iPad Mini */
@media (max-width:991px){

    .why-about-section{
        padding:70px 0;
    }

    .why-about-wrapper{

        display:flex;
        flex-direction:column;
        gap:45px;

    }

    .why-content,
    .about-content{

        width:100%;
        text-align:center;
        padding:0 20px;

    }

    .title-row{

        justify-content:center;
        margin-bottom:20px;

    }

    .title-row h2{

        font-size:34px;
        line-height:1.2;

    }

    .why-content ul{

        padding:0;
        max-width:500px;
        margin:auto;

    }

    .why-content ul li{

        text-align:left;
        font-size:17px;
        margin-bottom:12px;

    }

    .image-shape{

        width:100%;
        display:flex;
        justify-content:center;

    }

    .worker-img img,
    .truck-img img{

        width:100%;
        max-width:450px;
        height:auto;

    }

    .about-content p{

        max-width:650px;
        margin:auto;
        line-height:30px;

    }

    .about-content h6{

        margin-top:20px;

    }

    .about-icons{

        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        margin-top:30px;

    }

    .about-icons div{

        justify-content:center;

    }

}

/* Mobile */
@media (max-width:767px){

    .why-about-section{

        padding:60px 0;

    }

    .why-content,
    .about-content{

        padding:0 15px;

    }

    .title-row h2{

        font-size:28px;

    }

    .title-row span{

        display:none;

    }

    .why-content ul li{

        font-size:15px;
        margin-bottom:10px;

    }

    .worker-img img,
    .truck-img img{

        max-width:100%;
        border-radius:18px;

    }

    .about-content p{

        font-size:15px;
        line-height:28px;

    }

    .about-icons{

        grid-template-columns:repeat(2,1fr);
        gap:15px;

    }

    .about-icons div{

        padding:18px 10px;
        background:#fff;
        border-radius:14px;
        box-shadow:0 8px 20px rgba(0,0,0,.08);

    }

    .about-icons i{

        font-size:30px;
        margin-bottom:10px;
        display:block;

    }

    .about-icons p{

        font-size:14px;
        line-height:22px;
        margin:0;

    }

}

/* Small Mobile */
@media (max-width:480px){

    .title-row h2{

        font-size:24px;

    }

    .about-icons{

        grid-template-columns:1fr;

    }

    .why-content ul li{

        font-size:14px;

    }

}





/* ===========================
   IMAGE FIX
=========================== */

.why-about-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 40px;
}

.image-shape{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.worker-img,
.truck-img{
    width: 100%;
}

.worker-img img,
.truck-img img{
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:991px){

    .why-about-wrapper{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .worker-img img,
    .truck-img img{
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:767px){

    .worker-img img,
    .truck-img img{
        width: 100%;
        max-width: 320px;
    }

}




/* ==========================================
   1298px & Below - Stack One by One
========================================== */

@media (max-width:1298px){

    .why-about-wrapper{
        display:flex;
        flex-direction:column;
        gap:60px;
        align-items:center;
    }

    .why-content,
    .about-content,
    .worker-img,
    .truck-img{
        width:100%;
        max-width:800px;
    }

    .worker-img,
    .truck-img{
        display:flex;
        justify-content:center;
    }

    .worker-img img,
    .truck-img img{
        width:100%;
        max-width:500px;
        height:auto;
        display:block;
    }

    .why-content,
    .about-content{
        text-align:center;
    }

    .title-row{
        justify-content:center;
    }

    .why-content ul{
        max-width:500px;
        margin:25px auto 0;
        padding-left:20px;
        text-align:left;
    }

    .about-content p{
        max-width:700px;
        margin:20px auto;
    }

    .about-icons{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        margin-top:30px;
    }
}




/* ==========================================
   CONTACT SECTION RESPONSIVE
========================================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-form-col{
    width:100%;
}

.map-section{
    width:100%;
}

.map-wrapper{
    width:100%;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.map-wrapper iframe{
    width:100%;
    height:420px;
    display:block;
    border:0;
}

/* Large Tablet */

@media (max-width:1199px){

    .contact-grid{
        gap:35px;
    }

}

/* iPad */

@media (max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-info,
    .contact-form-col{
        width:100%;
    }

    .contact-info h2,
    .contact-form-col h2{
        text-align:center;
    }

    .contact-info>p,
    .contact-form-col>p{
        text-align:center;
    }

    .map-wrapper iframe{
        height:380px;
    }

}

/* Mobile */

@media (max-width:767px){

    .contact-section{
        padding:60px 0;
    }

    .contact-grid{
        gap:40px;
    }

    .contact-cards{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
    }

    .contact-card{
        padding:18px;
    }

    .map-wrapper{
        border-radius:16px;
    }

    .map-wrapper iframe{
        height:300px;
    }

    .hours-box{
        margin-top:20px;
    }

    .hours-row{
        display:flex;
        justify-content:space-between;
        gap:10px;
        flex-wrap:wrap;
    }

}

/* Small Mobile */

@media (max-width:480px){

    .map-wrapper iframe{
        height:250px;
    }

    .cc-text h4{
        font-size:17px;
    }

    .cc-text a,
    .cc-text p{
        font-size:15px;
    }

}




.gallery-no-text{
  padding: 100px;
  text-align: center;
}



