/* ===============================
   RESET
================================ */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

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

.lp-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img {
  height: 150px;
  width: 170px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone {
  color: #d4af37;
  font-weight: 600;
}

.btn-book {
  background: linear-gradient(135deg, #cfa74a, #e3c36f);
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

@media (max-width: 991px) {

  .menu-toggle {
    display: flex;
    z-index: 2000;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 230px;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    gap: 12px;
    transition: 0.4s ease;
    z-index: 1500;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 12px;
    padding: 5px 0;
  }
}


/* ===============================
   HERO
================================ */

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .85)),
    url('/lp/assets/images/hero-bg.png') center/cover no-repeat;
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(212, 175, 55, .15);
  color: #d4af37;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-content h1 span {
  display: block;
  color: #d4af37;
}

.hero-sub {
  font-size: 17px;
  color: #ddd;
  margin: 16px 0;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.hero-points li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* ===============================
   FORM BOX
================================ */

.form-box {
  background: #fff;
  color: #000;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .45);

  max-height: 500px;
  overflow-y: auto;
}

/* Scrollbar */
.form-box::-webkit-scrollbar {
  width: 6px;
}

.form-box::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

.form-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.form-badge {
  background: #fff4cc;
  color: #7a5b12;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.form-box h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 6px;
}

.form-box p {
  text-align: center;
  font-size: 13px;
  color: #666;
}

.form-widget {
  margin: 18px 0;
}

.form-trust {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 14px;
}

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

@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

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

@media (max-width: 768px) {

  /* HEADER */

  .header-cta {
    width: 100%;
    justify-content: space-between;
  }

  /* HERO */
  .hero {
    padding: 50px 0;
  }

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

  .hero-content h1 span {
    font-size: 24px;
    margin-top: 6px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-points li {
    font-size: 14px;
  }

  /* FORM */
  .form-box {
    max-height: none;
    overflow: visible;
    padding: 22px;
  }
}

/* ===============================
   OPTIONAL MOBILE CTA
================================ */

@media (max-width: 768px) {
  .mobile-call {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: #111;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 14px;
    z-index: 9999;
  }
}


/* ===============================
   TRUST BAR
================================ */

/* STICKY TRUST BAR – WHITE */
/* TRUST BAR – TALL & PREMIUM */
.trust-bar {
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  padding: 22px 0;
  /* increased height */
}

/* CONTAINER */
.trust-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

/* ITEM */
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* more space */
  font-size: 18px;
  font-weight: 500;
  color: #222;
  white-space: nowrap;
}

/* GOOGLE LOGO */
.google-logo {
  height: 45px;
}

/* STARS */
.stars {
  color: #fbbc05;
  font-size: 15px;
  letter-spacing: 1.3px;
}

/* ICONS – BIG & APPEALING */
.trust-icon {
  width: 26px;
  /* bigger icons */
  height: 26px;
  fill: #c9a24d;
}

/* HOVER – PREMIUM FEEL */
.trust-item {
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
}

/* SOFT SHADOW UNDER BAR */
.trust-bar {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* ANIMATION (KEEPED) */
.fade {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 0.7s ease forwards;
}

.delay-1 {
  animation-delay: .15s;
}

.delay-2 {
  animation-delay: .25s;
}

.delay-3 {
  animation-delay: .35s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .trust-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }

  .trust-icon {
    width: 24px;
    height: 24px;
  }
}





/* ===============================
   PREMIER SECTION
================================ */
/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Section */
.premier {
  padding: 90px 0;
  background: #ffffff;
}

/* Grid */
.premier-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* Heading */
.premier-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 18px;
}

.premier-content h2 span {
  color: #000000;
  font-weight: 900;
}

/* Paragraph */
.premier-para {
  font-size: 17px;
  line-height: 1.6;
  color: #555555;
  max-width: 520px;
  margin-bottom: 24px;
}

/* Bullet points */
.premier-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.premier-points li {
  font-size: 17px;
  color: #333333;
  margin-bottom: 12px;
}

/* CTA */
.premier-cta {
  margin-bottom: 26px;
}

.btn-primary {
  background: #d4af37;
  color: #000000;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #bfa132;
}

/* Trust logos */
.trust-logos {
  display: flex;
  gap: 22px;
  align-items: center;
}

.trust-logos img {
  height: 28px;
  opacity: 0.85;
  filter: grayscale(100%);
}

/* Trust note */
.trust-note {
  font-size: 14px;
  color: #777777;
  margin-top: 8px;
}

/* Image */
.premier-visual img {
  width: 100%;
  max-width: 540px;
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
}

/* Mobile */
@media (max-width: 768px) {
  .premier-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premier-content h2 {
    font-size: 30px;
  }

  .premier-para {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-logos {
    justify-content: center;
    flex-wrap: wrap;
  }

  .premier-visual img {
    margin: 35px auto 0;
  }
}

/* SERVICE AREA BASE */
.service-area {
  position: relative;
  background: url('/lp/assets/images/4th_sectionbg.png') center / cover no-repeat;
  padding: 110px 0;
}

/* LIGHT OVERLAY — image readable rahe */
.service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(212 175 56) 0%, rgb(0 0 0 / 82%) 100%);
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.service-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
}


/* CONTENT BOX */
.service-box {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.service-box h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
  color: #fafafa;
  margin-bottom: 18px;
}

/* PARAGRAPH */
.service-para {
  font-size: 18px;
  color: #fcfcfc;
  margin-bottom: 34px;
}

/* CTA WRAP */
.service-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* CALL BUTTON */
.call-btn {
  background: #d4af37;
  color: #ffffff;
  padding: 16px 46px;
  border-radius: 50px;
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.call-btn:hover {
  background: #bfa132;
  transform: translateY(-2px);
}

/* MICRO COPY */
.service-cta span {
  font-size: 14px;
  color: #ffffff;
}

/* TRUST LINE */
.service-trust {
  margin-top: 24px;
  font-size: 14px;
  color: #ffffff;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .service-box h2 {
    font-size: 28px;
  }

  .service-para {
    font-size: 16px;
  }

  .call-btn {
    font-size: 18px;
    padding: 14px 34px;
  }
}


/* ===============================
   SERVICES SECTION (LP FINAL)
================================ */

.lp-services {
  background: #fafafa;
  padding: 100px 0;
}

/* SECTION TITLE */
.lp-sec-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.lp-sec-title h2 {
  font-size: 38px;
  font-weight: 900;
  color: #111;
  line-height: 1.25;
}

.lp-sec-title h2 span {
  color: #d4af37;
}

.lp-sec-title p {
  margin-top: 14px;
  font-size: 17px;
  color: #555;
}

/* GRID / SLIDER */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARD */
.lp-service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.lp-service-img {
  position: relative;
  overflow: hidden;
}

.lp-service-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lp-service-card:hover img {
  transform: scale(1.08);
}

/* NUMBER */
.lp-service-img .count {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d4af37;
  color: #000;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* RATING BADGE */
.lp-service-img .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
}

/* TEXT */
.lp-service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 22px 22px 10px;
  color: #111;
}

.lp-service-card p {
  font-size: 15px;
  color: #555;
  margin: 0 22px 20px;
  line-height: 1.6;
  flex-grow: 1;
}

/* CTA BUTTON */
.card-cta {
  margin: 0 22px 26px;
  margin-top: auto;
  display: block;
  text-align: center;
  background: #d4af37;
  color: #000;
  font-weight: 800;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.card-cta:hover {
  background: #bfa132;
  transform: translateY(-2px);
}

/* MOBILE SLIDER */
@media (max-width: 992px) {
  .lp-services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
  }

  .lp-service-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
}

/* MOBILE TEXT */
@media (max-width: 768px) {
  .lp-sec-title h2 {
    font-size: 28px;
  }

  .lp-services {
    padding: 70px 0;
  }
}


.fleet-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 0%, #ffffff 0%, #f4f4f4 50%, #ededed 100%);
}

.fleet-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.fleet-title {
  text-align: center;
  margin-bottom: 80px;
  color: #000000;
}

.fleet-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f4b011;
  margin-bottom: 12px;
}

.fleet-title h2 {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #000;
}

.fleet-title p {
  font-size: 16px;
  color: #666;
}

/* GRID */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* CARD */
.fleet-card {
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  border-radius: 26px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
  transition: all 0.45s ease;
}

.fleet-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.22);
}

/* Highlight */
.fleet-highlight {
  border: 2px solid rgba(244, 176, 17, 0.4);
}

/* Badge */
.fleet-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f4b011, #ffd56a);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 16px;
  border-radius: 20px;
}

/* Image */
.fleet-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.fleet-img img {
  max-width: 100%;
  max-height: 190px;
  transition: transform 0.4s ease;
}

.fleet-card:hover img {
  transform: scale(1.08);
}

/* Heading */
.fleet-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #000;
}

/* Specs */
.fleet-specs {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.fleet-specs div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 15px;
  color: #333;
}

.fleet-specs i {
  color: #f4b011;
  font-size: 18px;
}

/* Button */
.fleet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #111, #333);
  color: #fff;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.35s ease;
}

.fleet-btn:hover {
  background: linear-gradient(135deg, #f4b011, #ffda77);
  color: #111;
}

/* TRUST BADGES */
.fleet-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 22px;
}

.fleet-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  background: #f7f7f7;
  padding: 8px 14px;
  border-radius: 20px;
}

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

  .fleet-section {
    padding: 80px 0;
  }

  .fleet-title h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .fleet-title p {
    font-size: 15px;
  }

  .fleet-grid {
    gap: 26px;
  }

  .fleet-card {
    padding: 28px 22px 32px;
    border-radius: 22px;
  }

  .fleet-img {
    height: 150px;
    margin-bottom: 20px;
  }

  .fleet-img img {
    max-height: 150px;
  }

  .fleet-card h3 {
    font-size: 21px;
  }

  .fleet-specs {
    gap: 12px;
    margin-bottom: 22px;
  }

  .fleet-specs div {
    font-size: 14px;
  }

  .fleet-trust {
    gap: 10px;
    margin-bottom: 18px;
  }

  .fleet-trust span {
    font-size: 12px;
    padding: 7px 12px;
  }

  .fleet-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }
}

/* EXTRA SMALL */
@media (max-width: 480px) {

  .fleet-title h2 {
    font-size: 28px;
  }

  .fleet-sub {
    font-size: 12px;
  }

  .fleet-img {
    height: 130px;
  }

  .fleet-img img {
    max-height: 130px;
  }

  .fleet-card {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  }
}


/* ===== COMPACT HEADER – MOBILE (NON-STICKY) ===== */
@media (max-width: 768px) {

  .lp-header {
    position: static !important;
    /* 🔥 sticky / fixed disable */
    top: auto !important;
    padding: 10px 0;
    box-shadow: none;
  }

  .header-flex {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .logo img {
    max-height: 98px;
    width: 120px;
  }

  .header-cta {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 6px;
  }

  .header-cta a {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
    width: auto;
  }

  .phone {
    background: transparent;
    padding: 0;
    font-weight: 600;
    font-size: 14px;
  }

  .btn-book {
    font-weight: 700;
  }


  /* ===== MOBILE STICKY CALL BAR ===== */

  /* ===== MOBILE STICKY CALL BAR ===== */

  /* Default (Desktop + Tablet) */
  .mobile-call-bar {
    display: none !important;
  }

  /* Only Mobile */
  @media (max-width: 768px) {

    .mobile-call-bar {
      display: block !important;
      position: fixed;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 24px);
      max-width: 420px;
      z-index: 9999;
    }

    .call-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(180deg, #111, #000);
      padding: 16px 20px;
      border-radius: 18px;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    }

    .call-icon {
      font-size: 18px;
    }

    .call-number {
      font-size: 20px;
      font-weight: 800;
    }

    .call-arrow {
      font-size: 18px;
    }

  }