/* =========================
   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
========================= */

.hero-section{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  background:url("../images/homemain.png") center/cover no-repeat;
}

.hero-bg-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%
    );
}

.hero-wrapper{
  position:relative;
  z-index:2;
}

.hero-content{
  max-width:720px;
  position:relative;
}

.hero-watermark{
  position:absolute;
  top:-60px;
  left:0;
  font-size:120px;
  font-weight:800;
  color:transparent;
  -webkit-text-stroke:1px rgba(205, 177, 177, 0.126);
}

.hero-label{
  display:inline-block;
  background:rgba(22,163,74,.10);
  color:#16a34a;
  padding:8px 16px;
  border-radius:40px;
  font-size:14px;
  font-weight:700;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:58px;
  line-height:1.15;
  color:#fff;
  margin-bottom:22px;
}



.hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#fff;
  margin-bottom:32px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-btn{
  text-decoration:none;
  padding:14px 28px;
  border-radius:12px;
}

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

.secondary-btn{
  background:#fff;
  color:#111;
  border:1px solid #e5e7eb;
}


/* HERO RESPONSIVE */

@media(max-width:992px){

  .hero-section{
    padding:90px 0;
  }

  .hero-content h1{
    font-size:42px;
  }

  .hero-watermark{
    font-size:82px;
  }

}

@media(max-width:768px){

  .hero-section{
    padding:70px 0;
  }

  .hero-content h1{
    font-size:32px;
  }

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

  .hero-buttons{
    flex-direction:column;
  }

  .hero-btn{
    width:100%;
    text-align:center;
  }

}

@media(max-width:480px){

  .hero-content h1{
    font-size:28px;
  }

  .hero-watermark{
    font-size:48px;
  }

}

/* 3rd section why choose us  */

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

.why-choose-us{
  padding:100px 0;
  background:#fff;
}

.section-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 60px;
}

.sub-title{
  display:inline-block;
  font-size:14px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#16a34a;
  margin-bottom:14px;
}

.section-heading h2{
  font-size:42px;
  line-height:1.3;
  color:#111827;
  margin-bottom:18px;
}

.section-heading h2 span{
  color:#16a34a;
}

.section-heading p{
  font-size:17px;
  line-height:1.8;
  color:#6b7280;
}

.section-heading p strong,
.why-card p strong{
  color:#374151;
  font-weight:600;
}



/* GRID */

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


/* CARD */

.why-card{
  background:#fff;
  border-radius:20px;
  padding:32px 26px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  border:1px solid #edf2f7;
  transition:.3s ease;
}

.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(22,163,74,.10);
}


/* ICON */

.icon-box{
  width:68px;
  height:68px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:20px;

  background:linear-gradient(135deg,#16a34a,#22c55e);
}


/* TEXT */

.why-card h3{
  font-size:22px;
  color:#111827;
  margin-bottom:12px;
}

.why-card p{
  font-size:15px;
  line-height:1.8;
  color:#6b7280;
}



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

@media(max-width:992px){

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

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

}

@media(max-width:768px){

  .why-choose-us{
    padding:70px 0;
  }

  .section-heading{
    margin-bottom:40px;
  }

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

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

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

  .why-card{
    text-align:center;
    padding:26px 22px;
  }

  .icon-box{
    margin:0 auto 18px;
  }

}

@media(max-width:480px){

  .section-heading h2{
    font-size:24px;
  }

  .why-card{
    padding:22px 18px;
  }

  .why-card h3{
    font-size:20px;
  }

}

/* 4th service section  */

/* ================= ROOT COLORS ================= */
:root{
    --primary:#032B44;
    --dark:#021826;
    --accent:#00bcd4;
    --text:#ffffff;
    --muted:#b8c7d1;
}

/* ================= SERVICES SECTION ================= */
/* ================= ELITE SERVICES ================= */

.elite-services{
    background: linear-gradient(135deg, #021826, #032B44);
    padding:80px 0;
    color:#fff;
}

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

.elite-services .section-ttl{
    text-align:center;
    margin-bottom:50px;
}

.elite-services .section-ttl h2{
    font-size:38px;
    margin-bottom:10px;
}

.elite-services .section-ttl p{
    max-width:750px;
    margin:auto;
    color:#b8c7d1;
    line-height:1.6;
}

/* ================= GRID ================= */

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

/* ================= CARD ================= */

.elite-services .service-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    padding:25px;
    border-radius:16px;
    transition:0.3s ease;
}

.elite-services .service-card:hover{
    transform:translateY(-8px);
    border-color:#00bcd4;
}

/* ICON */
.elite-services .icon{
    font-size:42px;
    margin-bottom:15px;
}

.elite-services h3{
    font-size:20px;
    margin-bottom:10px;
}

.elite-services p{
    font-size:14px;
    color:#b8c7d1;
    line-height:1.6;
}

/* ================= BUTTONS ================= */

.elite-services .btn-group{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.elite-services .btn-group a{
    padding:8px 14px;
    font-size:13px;
    text-decoration:none;
    border-radius:8px;
    transition:0.3s;
}

/* READ MORE */
.elite-services .read{
    border:1px solid #00bcd4;
    color:#00bcd4;
}

.elite-services .read:hover{
    background:#00bcd4;
    color:#000;
}

/* GET QUOTE */
.elite-services .quote{
    background:#00bcd4;
    color:#000;
    font-weight:600;
}

.elite-services .quote:hover{
    opacity:0.85;
}

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

/* TABLET */
@media (max-width:991px){

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

    .elite-services .section-ttl h2{
        font-size:32px;
    }
}

/* MOBILE */
@media (max-width:600px){

    .elite-services{
        padding:60px 0;
    }

    .elite-services .services-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .elite-services .section-ttl h2{
        font-size:26px;
    }

    .elite-services .section-ttl p{
        font-size:13px;
        padding:0 10px;
    }

    .elite-services .service-card{
        padding:20px;
    }

    .elite-services .icon{
        font-size:36px;
    }

    .elite-services h3{
        font-size:18px;
    }

    .elite-services p{
        font-size:13px;
    }

    .elite-services .btn-group{
        flex-direction:column;
    }

    .elite-services .btn-group a{
        width:100%;
        text-align:center;
        padding:10px;
    }
}

/* ================= SMALL MOBILE (EXTRA FIX 400px) ================= */

@media (max-width:400px){

    .elite-services .section-ttl h2{
        font-size:22px;
    }

    .elite-services .service-card{
        padding:16px;
    }

    .elite-services .icon{
        font-size:32px;
    }

    .elite-services h3{
        font-size:16px;
    }

    .elite-services p{
        font-size:12px;
    }

    .elite-services .btn-group a{
        font-size:12px;
        padding:9px;
    }
}

/* next section how works  */

/* ================= HOW IT WORKS (WHITE THEME) ================= */

.how-it-works{
    background:#ffffff;
    padding:80px 0;
    color:#021826;
}

/* CONTAINER */
.how-it-works .container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

/* TITLE */
.how-it-works .section-title{
    text-align:center;
    margin-bottom:50px;
}

.how-it-works .section-title h2{
    font-size:38px;
    margin-bottom:10px;
    color:#021826;
}

.how-it-works .section-title p{
    max-width:750px;
    margin:auto;
    color:#5a6b78;
    line-height:1.6;
}

/* GRID */
.steps-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

/* CARD */
.step-card{
    background:#f7fafc;
    border:1px solid #e5e9ee;
    padding:30px;
    border-radius:16px;
    transition:0.3s ease;
}

.step-card:hover{
    transform:translateY(-6px);
    border-color:#00bcd4;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* STEP NUMBER */
.step-number{
    font-size:28px;
    font-weight:bold;
    color:#00bcd4;
    margin-bottom:15px;
}

/* TEXT */
.step-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#021826;
}

.step-card p{
    font-size:14px;
    color:#5a6b78;
    line-height:1.6;
}

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

/* TABLET */
@media (max-width:991px){
    .steps-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }

    .how-it-works .section-title h2{
        font-size:32px;
    }
}

/* MOBILE */
@media (max-width:600px){
    .how-it-works{
        padding:60px 0;
    }

    .steps-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .how-it-works .section-title h2{
        font-size:26px;
    }

    .step-card{
        padding:22px;
    }

    .step-card h3{
        font-size:18px;
    }
}

/* SMALL MOBILE */
@media (max-width:400px){
    .how-it-works .section-title h2{
        font-size:22px;
    }

    .step-number{
        font-size:24px;
    }
}

/* 6th section - cta */

/* ================= CTA BANNER DARK ================= */

.cta-banner-dark{
    background: linear-gradient(135deg, #010e16, #032B44);
    padding:80px 0;
    color:#fff;
}

/* CONTAINER */
.cta-banner-dark .container{
    width:92%;
    max-width:1320px;
    margin:auto;
}

/* LAYOUT */
.cta-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/* TEXT */
.cta-text{
    flex:1;
}

.cta-text h2{
    font-size:38px;
    margin-bottom:15px;
}

.cta-text p{
    font-size:15px;
    color:#b8c7d1;
    line-height:1.6;
    max-width:520px;
}

/* BUTTONS */
.cta-buttons{
    margin-top:20px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.cta-buttons a{
    text-decoration:none;
    padding:12px 18px;
    border-radius:8px;
    font-size:14px;
    transition:0.3s;
}

/* PRIMARY BUTTON */
.primary{
    background:#00bcd4;
    color:#000;
    font-weight:600;
}

.primary:hover{
    opacity:0.85;
}

/* SECONDARY BUTTON */
.secondary{
    border:1px solid #00bcd4;
    color:#00bcd4;
}

.secondary:hover{
    background:#00bcd4;
    color:#000;
}

/* IMAGE */
.cta-image{
    flex:1;
    text-align:right;
}

.cta-image img{
    width:100%;
    max-width:450px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

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

/* TABLET */
@media (max-width:991px){
    .cta-content{
        flex-direction:column;
        text-align:center;
    }

    .cta-text p{
        margin:auto;
    }

    .cta-image{
        text-align:center;
    }

    .cta-text h2{
        font-size:32px;
    }
}

/* MOBILE */
@media (max-width:600px){
    .cta-banner-dark{
        padding:60px 0;
    }

    .cta-text h2{
        font-size:26px;
    }

    .cta-text p{
        font-size:13px;
    }

    .cta-buttons a{
        width:100%;
        text-align:center;
    }
}

/* SMALL MOBILE */
@media (max-width:400px){
    .cta-text h2{
        font-size:22px;
    }
}



/*7th section  location */

.elite-locations-section{
  padding: 90px 0;
  background: #ffffff;
}

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

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

.elite-sub-title{
  font-size: 13px;
  letter-spacing: 2px;
  color: #0ea5e9;
  font-weight: 600;
  text-transform: uppercase;
}

.elite-section-title h2{
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 10px;
}

.elite-section-title p{
  color: #64748b;
  max-width: 750px;
  margin: 15px auto 0;
  line-height: 1.6;
  font-size: 15px;
}

/* grid */
.elite-location-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* cards */
.elite-location-card{
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.elite-location-card:hover{
  transform: translateY(-5px);
  border-color: #0ea5e9;
  color: #0ea5e9;
  box-shadow: 0 12px 25px rgba(14,165,233,0.15);
}

/* CTA */
.elite-location-cta{
  margin-top: 35px;
  text-align: center;
}

.elite-location-cta-btn{
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  background: #0ea5e9;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.elite-location-cta-btn:hover{
  background: #0284c7;
  transform: translateY(-2px);
}

/* RESPONSIVE */

/* tablet */
@media (max-width: 1024px){
  .elite-location-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* mobile */
@media (max-width: 768px){
  .elite-section-title h2{
    font-size: 26px;
  }

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

/* small mobile */
@media (max-width: 480px){
  .elite-location-grid{
    grid-template-columns: 1fr;
  }

  .elite-section-title p{
    font-size: 14px;
  }
}
/* 8th section testimonials */

.elite-testimonials-dark{
  padding: 90px 0;
  background: #0b1220;
  color: #fff;
}

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

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

.sub-title{
  color: #38bdf8;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.section-title p{
  color: #94a3b8;
  max-width: 750px;
  margin: auto;
  line-height: 1.6;
}

/* WRAPPER */
.slider-wrapper{
  position: relative;
  padding: 0 50px; /* ✅ FIX: arrows space */
}

/* VIEWPORT */
.slider-viewport{
  overflow: hidden;
}

/* TRACK */
.slider-track{
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

/* CARD (WHITE PREMIUM) */
.t-card{
  flex: 0 0 calc(25% - 15px);
  background: #ffffff;
  color: #0f172a;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.t-card:hover{
  transform: translateY(-5px);
}

/* IMAGE CENTER */
.t-card img{
  display: block;
  margin: 0 auto 12px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #0ea5e9;
  object-fit: cover;
}

.t-card p{
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.t-card h4{
  margin-top: 10px;
  font-size: 15px;
  color: #0f172a;
}

/* BUTTONS */
.prev, .next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0ea5e9;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ✅ FIXED POSITION (IMPORTANT) */
.prev{
  left: 10px;
}

.next{
  right: 10px;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .t-card{
    flex: 0 0 calc(33.33% - 15px);
  }
}

@media(max-width:768px){
  .t-card{
    flex: 0 0 calc(50% - 15px);
  }

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

@media(max-width:480px){
  .t-card{
    flex: 0 0 100%;
  }

  .slider-wrapper{
    padding: 0 30px;
  }
}

/* 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;
  }
}