/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  overflow-x:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:92%;
  max-width:1320px;
  margin:auto;
}



/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:#fff;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
  border-bottom:1px solid #eee;
}

.nav-wrapper{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:65px;
}


/* NAV */

.nav-menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-list{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}

.nav-list li{
  position:relative;
}

.nav-list li a{
  text-decoration:none;
  color:#111827;
  font-size:16px;
  font-weight:600;
  position:relative;
  padding:8px 0;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.nav-list li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#16a34a;
  transition:.3s ease;
}

.nav-list li a:hover::after{
  width:100%;
}

.nav-list li a:hover{
  color:#16a34a;
}



/* DROPDOWN */

.dropdown-arrow{
  font-size:12px;
  transition:.3s;
}

.dropdown-menu{
  position:absolute;
  top:115%;
  left:0;
  min-width:220px;
  background:#fff;
  border-radius:8px;
  padding:8px 0;
  list-style:none;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.25s ease;
}

.dropdown-menu li a{
  display:block;
  width:100%;
  padding:12px 18px;
  font-size:15px;
}

.dropdown-menu li a::after{
  display:none;
}

.dropdown-menu li a:hover{
  background:#f7f7f7;
}


/* desktop dropdown */

@media(min-width:769px){

  .dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .dropdown:hover .dropdown-arrow{
    transform:rotate(180deg);
  }

}



/* BUTTON */

.quote-btn{
  text-decoration:none;
  background:#16a34a;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:600;
}

.quote-btn:hover{
  background:#15803d;
}

.menu-toggle{
  display:none;
  font-size:30px;
  cursor:pointer;
}



/* HEADER RESPONSIVE */

@media(max-width:992px){

  .nav-list{
    gap:22px;
  }

  .logo img{
    height:58px;
  }

}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-wrapper{
    height:74px;
  }

  .logo img{
    height:50px;
  }

  .nav-menu{
    position:absolute;
    top:74px;
    left:-100%;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:22px;
    transition:.3s;
  }

  .nav-menu.active{
    left:0;
  }

  .nav-list{
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .nav-list li{
    width:100%;
  }

  .nav-list li a{
    width:100%;
    display:flex;
    justify-content:space-between;
  }

  .dropdown-menu{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    width:100%;
    min-width:100%;
    box-shadow:none;
    padding-left:15px;
    margin-top:8px;
    background:#fafafa;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

  .quote-btn{
    width:100%;
    text-align:center;
    margin-top:20px;
  }

}

@media(max-width:480px){

  .logo img{
    height:42px;
  }

  .menu-toggle{
    font-size:26px;
  }

}


/* hero section start here */



/*==================================
LOCATION HERO SECTION
==================================*/

.elite-location-hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:url("../images/locationpage.png") center/cover no-repeat;
}

.elite-location-overlay{
    position:absolute;
    inset:0;
  background: linear-gradient(
        90deg,
        rgba(8,12,22,0.88) 0%,
        rgba(8,12,22,0.74) 45%,
        rgba(8,12,22,0.55) 100%
    );
}

.elite-location-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:120px 0;
}

.elite-location-tag{
    display:inline-block;
    background:rgba(34,197,94,.15);
    color:#22c55e;
    padding:12px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.elite-location-content h1{
    font-size:62px;
    color:#fff;
    line-height:1.15;
    margin-bottom:25px;
}

.elite-location-content p{
    color:#fff;
    font-size:18px;
    line-height:1.9;
    max-width:750px;
    margin-bottom:40px;
}

.elite-location-content strong{
    color:#ffffff;
    font-weight:700;
}

.elite-location-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.location-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.primary-btn{
    background:#16a34a;
    color:#fff;
}

.primary-btn:hover{
    background:#15803d;
    transform:translateY(-3px);
}

.secondary-btn{
    border:2px solid rgba(255,255,255,.2);
    color:#fff;
    background:rgba(255,255,255,.05);
}

.secondary-btn:hover{
    background:#fff;
    color:#032B44;
}

/*====================
RESPONSIVE
====================*/

@media(max-width:991px){

    .elite-location-content h1{
        font-size:48px;
    }

}

@media(max-width:768px){

    .elite-location-hero{
        min-height:auto;
    }

    .elite-location-content{
        padding:100px 0;
    }

    .elite-location-content h1{
        font-size:38px;
    }

    .elite-location-content p{
        font-size:16px;
    }

}

@media(max-width:480px){

    .elite-location-content h1{
        font-size:30px;
    }

    .elite-location-tag{
        font-size:12px;
        padding:10px 18px;
    }

    .elite-location-btns{
        flex-direction:column;
    }

    .location-btn{
        width:100%;
    }

}


/* 2nd section */

/*==================================
WHY CHOOSE US SECTION
==================================*/

.location-why-section{
    padding:100px 0;
    background:#ffffff;
}

.location-why-heading{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.location-why-heading span{
    display:inline-block;
    background:rgba(22,163,74,.08);
    color:#16a34a;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.location-why-heading h2{
    font-size:42px;
    color:#032B44;
    margin-bottom:20px;
    line-height:1.2;
}

.location-why-heading p{
    color:#64748b;
    font-size:17px;
    line-height:1.9;
}

.location-why-heading strong{
    color:#032B44;
    font-weight:700;
}

/* GRID */

.location-why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.location-why-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:22px;
    padding:35px 30px;
    transition:.4s ease;
}

.location-why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.location-why-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#032B44;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.location-why-icon i{
    color:#16a34a;
    font-size:28px;
}

.location-why-card h3{
    color:#032B44;
    font-size:22px;
    margin-bottom:15px;
}

.location-why-card p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
}

.location-why-card strong{
    color:#64748b;
    font-weight:700;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .location-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .location-why-heading h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .location-why-section{
        padding:80px 0;
    }

    .location-why-grid{
        grid-template-columns:1fr;
    }

    .location-why-heading h2{
        font-size:30px;
    }
}

@media(max-width:480px){

    .location-why-heading h2{
        font-size:26px;
    }

    .location-why-heading p{
        font-size:15px;
    }

    .location-why-card{
        padding:30px 22px;
    }
}


/* 3rd section */

/* =========================
LOCATIONS SECTION
========================= */

.location-service-section{
    padding:100px 0;
    background:#032B44;
}

.location-service-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.location-service-heading span{
    display:inline-block;
    background:rgba(34,197,94,.12);
    color:#22c55e;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.location-service-heading h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.location-service-heading p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:17px;
}

.location-service-heading strong{
    color:#fff;
}

/* GRID */

.location-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.location-service-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    border:1px solid rgba(255,255,255,.1);
}

.location-service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#22c55e;
}

.location-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* ICON */

.location-icon{
    width:70px;
    height:70px;
    background:#f0fdf4;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.location-icon i{
    font-size:30px;
    color:#22c55e;
}

/* CITY */

.location-service-card h3{
    color:#032B44;
    font-size:28px;
    margin-bottom:20px;
}

/* SERVICES */

.location-service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.location-service-list li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#475569;
    font-size:15px;
    margin-bottom:14px;
    font-weight:500;
}

.location-service-list li i{
    color:#22c55e;
    font-size:14px;
}

/* BUTTON */

.location-card-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
    color:#032B44;
    font-weight:700;
    transition:.3s ease;
}

.location-service-card:hover .location-card-btn{
    color:#22c55e;
}

/* CTA */

.location-bottom-cta{
    margin-top:70px;
    text-align:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:50px;
}

.location-bottom-cta h3{
    color:#fff;
    font-size:34px;
    margin-bottom:15px;
}

.location-bottom-cta p{
    color:#cbd5e1;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.location-bottom-btn{
    display:inline-block;
    margin-top:25px;
    padding:15px 35px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.location-bottom-btn:hover{
    background:#16a34a;
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .location-service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .location-service-heading h2{
        font-size:36px;
    }
}

@media(max-width:768px){

    .location-service-section{
        padding:80px 0;
    }

    .location-service-grid{
        grid-template-columns:1fr;
    }

    .location-service-heading h2{
        font-size:30px;
    }

    .location-service-card{
        padding:30px;
    }

    .location-bottom-cta{
        padding:35px 25px;
    }

    .location-bottom-cta h3{
        font-size:28px;
    }
}

@media(max-width:480px){

    .location-service-heading h2{
        font-size:26px;
    }

    .location-service-card h3{
        font-size:24px;
    }

    .location-service-heading p,
    .location-service-list li{
        font-size:14px;
    }
}

/* 4th section */

/*=================================
SERVICES AVAILABLE IN EVERY CITY
=================================*/

.city-services-section{
    padding:100px 0;
    background:#ffffff;
}

.city-services-heading{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.city-services-heading span{
    display:inline-block;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.city-services-heading h2{
    font-size:42px;
    color:#032B44;
    margin-bottom:20px;
    line-height:1.2;
}

.city-services-heading p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.city-services-heading strong{
    color:#032B44;
    font-weight:700;
}

/* GRID */

.city-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.city-service-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:40px 30px;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.city-service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#16a34a;
    transform:scaleX(0);
    transition:.4s ease;
}

.city-service-card:hover::before{
    transform:scaleX(1);
}

.city-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

/* ICON */

.city-service-icon{
    width:75px;
    height:75px;
    border-radius:18px;
    background:#f8fafc;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    border:1px solid #e2e8f0;
}

.city-service-icon i{
    font-size:32px;
    color:#16a34a;
}

/* CONTENT */

.city-service-card h3{
    font-size:26px;
    color:#032B44;
    margin-bottom:15px;
    line-height:1.3;
}

.city-service-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

.city-service-card strong{
    color:#032B44;
    font-weight:700;
}

/* LIST */

.city-service-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.city-service-card ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
    color:#475569;
    font-size:15px;
    line-height:1.6;
}

.city-service-card ul li i{
    color:#16a34a;
    font-size:15px;
    flex-shrink:0;
}

.city-service-card ul li strong{
    color:#032B44;
    font-weight:600;
}

/*=================================
RESPONSIVE
=================================*/

@media(max-width:991px){

    .city-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .city-services-heading h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .city-services-section{
        padding:80px 0;
    }

    .city-services-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .city-services-heading h2{
        font-size:30px;
    }

    .city-service-card{
        padding:35px 25px;
    }

    .city-service-card h3{
        font-size:24px;
    }
}

@media(max-width:480px){

    .city-services-heading h2{
        font-size:26px;
    }

    .city-services-heading p{
        font-size:15px;
    }

    .city-service-card{
        padding:30px 20px;
    }

    .city-service-icon{
        width:65px;
        height:65px;
    }

    .city-service-icon i{
        font-size:28px;
    }

    .city-service-card h3{
        font-size:22px;
    }

    .city-service-card p,
    .city-service-card ul li{
        font-size:14px;
    }
}


/* 5th section */

/*=================================
POPULAR ROUTES SECTION
=================================*/

.popular-routes-section{
    padding:100px 0;
    background:#032B44;
    position:relative;
    overflow:hidden;
}

.popular-routes-section::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:350px;
    height:350px;
    background:rgba(22,163,74,.08);
    border-radius:50%;
}

.popular-routes-section::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:350px;
    height:350px;
    background:rgba(22,163,74,.05);
    border-radius:50%;
}

.popular-routes-heading{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.popular-routes-heading span{
    display:inline-block;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.popular-routes-heading h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
    line-height:1.2;
}

.popular-routes-heading p{
    color:#cbd5e1;
    line-height:1.9;
    font-size:16px;
}

.popular-routes-heading strong{
    color:#fff;
}

/* GRID */

.popular-routes-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

/* CARD */

.route-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    border:1px solid #e5e7eb;
}

.route-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#16a34a;
    transform:scaleX(0);
    transition:.4s;
}

.route-card:hover::before{
    transform:scaleX(1);
}

.route-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}

.route-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
}

.route-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#032B44;
    display:flex;
    align-items:center;
    justify-content:center;
}

.route-icon i{
    color:#16a34a;
    font-size:24px;
}

.route-badge{
    background:#dcfce7;
    color:#15803d;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
}

.route-card h3{
    color:#032B44;
    font-size:24px;
    margin-bottom:25px;
    line-height:1.3;
}

.route-services{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.route-services span{
    display:flex;
    align-items:center;
    gap:12px;
    color:#64748b;
    font-size:15px;
    line-height:1.6;
}

.route-services i{
    color:#16a34a;
    width:20px;
    font-size:16px;
}

.route-arrow{
    margin-top:25px;
    font-size:22px;
    color:#16a34a;
    transition:.3s ease;
}

.route-card:hover .route-arrow{
    transform:translateX(8px);
}

/* CTA */

.routes-cta{
    margin-top:70px;
    background:#021f32;
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:60px 40px;
    text-align:center;
    position:relative;
    z-index:2;
}

.routes-cta span{
    display:inline-block;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.routes-cta h3{
    color:#fff;
    font-size:36px;
    margin-bottom:20px;
}

.routes-cta p{
    max-width:850px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.9;
    font-size:16px;
}

.routes-cta p strong{
    color:#fff;
}

.routes-cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;
}

.route-call-btn,
.route-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.route-call-btn{
    background:#fff;
    color:#032B44;
}

.route-call-btn:hover{
    transform:translateY(-4px);
}

.route-whatsapp-btn{
    background:#16a34a;
    color:#fff;
}

.route-whatsapp-btn:hover{
    background:#15803d;
    transform:translateY(-4px);
}

.route-call-btn i,
.route-whatsapp-btn i{
    font-size:16px;
}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

    .popular-routes-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .popular-routes-heading h2{
        font-size:34px;
    }

    .routes-cta h3{
        font-size:30px;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

    .popular-routes-section{
        padding:80px 0;
    }

    .popular-routes-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .route-card{
        padding:25px;
    }

    .routes-cta{
        padding:45px 25px;
    }

    .routes-cta h3{
        font-size:26px;
    }

    .routes-cta-buttons{
        flex-direction:column;
    }

    .route-call-btn,
    .route-whatsapp-btn{
        width:100%;
        max-width:320px;
    }
}

@media(max-width:480px){

    .popular-routes-heading h2{
        font-size:28px;
    }

    .popular-routes-heading p,
    .routes-cta p{
        font-size:14px;
    }

    .route-card h3{
        font-size:22px;
    }

    .route-services span{
        font-size:14px;
    }

    .routes-cta h3{
        font-size:22px;
    }
}


/* 6th section */

/*=================================
TRUST STATS SECTION
=================================*/

.trust-stats-section{
    padding:100px 0;
    background:#ffffff;
}

.trust-stats-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.trust-stats-heading span{
    display:inline-block;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.trust-stats-heading h2{
    font-size:42px;
    color:#032B44;
    margin-bottom:20px;
    line-height:1.2;
}

.trust-stats-heading p{
    color:#64748b;
    font-size:16px;
    line-height:1.9;
}

.trust-stats-heading strong{
    color:#032B44;
}

/* GRID */

.trust-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.trust-stat-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:25px;
    padding:40px 25px;
    text-align:center;
    transition:.35s ease;
}

.trust-stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.trust-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:20px;
    background:#032B44;
    display:flex;
    align-items:center;
    justify-content:center;
}

.trust-icon i{
    color:#16a34a;
    font-size:32px;
}

.trust-stat-card h3{
    font-size:42px;
    color:#032B44;
    margin-bottom:10px;
    font-weight:800;
}

.trust-stat-card p{
    color:#64748b;
    font-size:16px;
    font-weight:500;
}

/* RESPONSIVE */

@media(max-width:991px){

    .trust-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-stats-heading h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .trust-stats-section{
        padding:80px 0;
    }

    .trust-stats-grid{
        grid-template-columns:1fr;
    }

    .trust-stat-card{
        padding:35px 20px;
    }

    .trust-stat-card h3{
        font-size:36px;
    }
}

@media(max-width:480px){

    .trust-stats-heading h2{
        font-size:28px;
    }

    .trust-stats-heading p{
        font-size:14px;
    }

    .trust-stat-card h3{
        font-size:32px;
    }
}


/* 7th section faq */

/* 9th section  faq */

/* =========================
   FAQ SECTION (WHITE + RESPONSIVE)
========================= */

.elite-faq-white-section{
  padding: 90px 0;
  background: #ffffff;
  color: #0f172a;
}

/* CONTAINER */
.elite-faq-container{
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.elite-faq-title{
  text-align: center;
  margin-bottom: 50px;
}

.elite-faq-subtitle{
  color: #0ea5e9;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.elite-faq-title h2{
  font-size: 34px;
  font-weight: 800;
}

.elite-faq-title p{
  color: #64748b;
  max-width: 750px;
  margin: auto;
  line-height: 1.6;
}

/* WRAPPER */
.elite-faq-wrapper{
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.elite-faq-item{
  background: #f8fafc;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: 0.3s;
}

.elite-faq-item:hover{
  border-color: #0ea5e9;
}

/* QUESTION */
.elite-faq-question{
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

/* + / - ICON */
.elite-faq-question::after{
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #0ea5e9;
}

/* ANSWER */
.elite-faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
  color: #475569;
  line-height: 1.6;
}

/* ACTIVE STATE */
.elite-faq-item.active .elite-faq-answer{
  max-height: 250px;
  padding: 15px 20px 20px;
}

.elite-faq-item.active .elite-faq-question::after{
  content: "-";
}

/* =========================
   📱 TABLET RESPONSIVE
========================= */
@media (max-width: 1024px){

  .elite-faq-title h2{
    font-size: 30px;
  }

  .elite-faq-wrapper{
    max-width: 750px;
  }
}

/* =========================
   📱 MOBILE RESPONSIVE
========================= */
@media (max-width: 768px){

  .elite-faq-white-section{
    padding: 70px 0;
  }

  .elite-faq-title h2{
    font-size: 26px;
  }

  .elite-faq-title p{
    font-size: 14px;
    padding: 0 10px;
  }

  .elite-faq-question{
    font-size: 15px;
    padding: 16px 15px;
  }

  .elite-faq-answer{
    font-size: 14px;
  }
}

/* =========================
   📱 SMALL MOBILE
========================= */
@media (max-width: 480px){

  .elite-faq-title h2{
    font-size: 22px;
  }

  .elite-faq-question{
    font-size: 14px;
    padding: 14px 12px;
  }

  .elite-faq-question::after{
    right: 15px;
  }

  .elite-faq-wrapper{
    width: 100%;
  }
}














/* last section here */


/* ===== BASE ===== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* ↑ z-index bada kiya */
}

/* BUTTON */
.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ===== CHAT BOX ===== */
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  display: none;
  animation: slideUp 0.3s ease;
}

/* HEADER */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 18px;
  color: #fff;
}

.chat-header span {
  cursor: pointer;
  font-size: 18px;
  color: #ef4444;
  transition: 0.3s;
}

.chat-header span:hover {
  color: #dc2626;
  transform: scale(1.2);
}

/* TEXT */
.chat-subtext {
  font-size: 13px;
  color: #cbd5e1;
  margin: 10px 0 15px;
}

/* OPTIONS */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ITEM */
.chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.chat-item:hover {
  transform: translateX(6px);
}

/* CALL BUTTON DEFAULT GREEN */
.chat-item:nth-child(1) {
  background: #22c55e;
}

/* COLORS */
.chat-item:nth-child(2):hover {
  background: #ea4335;
}

.chat-item:nth-child(3):hover {
  background: #25d366;
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== SCROLL BUTTON ===== */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 95px; /* chat se proper gap */
  z-index: 900; /* chat ke niche rakha */

  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  border: none;
  cursor: pointer;

  opacity: 0.85;
  transition: 0.3s;
}

/* HOVER */
#topBtn:hover {
  background: #38bdf8;
  transform: scale(1.1);
}

/* 🔥 IMPORTANT FIX → CONTENT COVER NA HO */
body.scrolled-bottom #topBtn {
  bottom: 120px;
}

/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {

  .chat-box {
    width: 90vw;
    right: 5%;
    bottom: 90px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
  }

  /* 🔥 TOP BUTTON → CHAT KE UPAR STACK */
  #topBtn {
    right: 20px;      /* chat ke saath align */
    bottom: 95px;     /* chat ke upar */
    width: 42px;
    height: 42px;
  }

  /* 🔥 FOOTER KE PASS AUR UPAR SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 140px;
  }
}

@media (max-width: 480px) {

  .chat-box {
    width: 92vw;
    right: 4%;
    padding: 15px;
  }

  .chat-item {
    padding: 10px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
  }

  /* 🔥 TOP BUTTON CHAT KE UPAR */
  #topBtn {
    right: 20px;     /* same alignment as chat */
    bottom: 85px;    /* chat ke upar */
    width: 38px;
    height: 38px;
  }

  /* 🔥 FOOTER KE PASS SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 130px;
  }
}



/*10th section footer  */

/* =========================
   ELITE MOVE FOOTER (DARK)
   FULL RESPONSIVE FINAL
========================= */

/* =========================
   ELITE MOVE FOOTER
   FULL RESPONSIVE FINAL VERSION
========================= */

.elite-footer-dark{
  background: #0b1220;
  color: #fff;
  padding: 70px 0 20px;
}

/* CONTAINER */
.elite-footer-container{
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* GRID - DESKTOP */
.elite-footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* BOX TEXT */
.elite-footer-box h3{
  font-size: 24px;
  margin-bottom: 15px;
}

.elite-footer-box h4{
  font-size: 18px;
  margin-bottom: 15px;
  color: #0ea5e9;
}

.elite-footer-box p{
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* LIST */
.elite-footer-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.elite-footer-box ul li{
  margin-bottom: 8px;
}

/* LINKS */
.elite-footer-box ul li a{
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.elite-footer-box ul li a:hover{
  color: #0ea5e9;
}

/* CTA BUTTON */
.elite-footer-location-cta{
  display: inline-block;
  margin-top: 10px;
  padding: 9px 14px;
  border: 1px solid #0ea5e9;
  color: #0ea5e9;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.elite-footer-location-cta:hover{
  background: #0ea5e9;
  color: #fff;
}

/* MAIN BUTTON */
.elite-footer-btn{
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #0ea5e9;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.elite-footer-btn:hover{
  background: #0284c7;
}

/* SOCIAL ICONS */
.elite-footer-social{
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.elite-footer-social a{
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 6px;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.elite-footer-social a:hover{
  background: #0ea5e9;
  color: #fff;
  transform: translateY(-2px);
}

/* BOTTOM BAR */
.elite-footer-bottom{
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
  font-size: 13px;
  color: #94a3b8;
}

.elite-footer-bottom a{
  color: #cbd5e1;
  text-decoration: none;
}

.elite-footer-bottom a:hover{
  color: #0ea5e9;
}

/* =========================
   📱 TABLET (1024px)
========================= */
@media (max-width: 1024px){

  .elite-footer-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* =========================
   📱 MOBILE (768px)
========================= */
@media (max-width: 768px){

  .elite-footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .elite-footer-social{
    justify-content: center;
  }

  .elite-footer-box ul li{
    text-align: center;
  }

  .elite-footer-location-cta,
  .elite-footer-btn{
    width: 100%;
    text-align: center;
  }
}

/* =========================
   📱 SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .elite-footer-dark{
    padding: 60px 0 15px;
  }

  .elite-footer-box h3{
    font-size: 20px;
  }

  .elite-footer-box h4{
    font-size: 16px;
  }

  .elite-footer-box p,
  .elite-footer-box ul li a{
    font-size: 13px;
  }

  .elite-footer-location-cta,
  .elite-footer-btn{
    font-size: 13px;
    padding: 10px;
  }

  .elite-footer-bottom{
    font-size: 12px;
    padding: 15px 10px;
  }
}






