:root {
  --primary-red: #e11d48;
  --primary-red-dark: #be123c;
  --primary-blue: #2563eb;
  --primary-blue-dark: #1d4ed8;

  --gradient-main: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(37, 99, 235, 0.18));
  --gradient-nav: linear-gradient(90deg, rgba(225, 29, 72, 0.92), rgba(37, 99, 235, 0.92));

  --bg-main: #f4f7ff;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.82);

  --text-main: #111827;
  --text-muted: #64748b;
  --border-color: rgba(15, 23, 42, 0.08);

  --shadow-main: 0 18px 50px rgba(37, 99, 235, 0.18);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);

  --nav-bg: rgba(10, 16, 40, 0.82);
  --nav-bg-solid: linear-gradient(90deg, #0f172a 0%, #1e3a8a 50%, #9f1239 100%);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.24);
}

[data-theme="dark"] {
  --bg-main: #050816;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.82);

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --border-color: rgba(255, 255, 255, 0.08);

  --shadow-main: 0 18px 50px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);

  --nav-bg: rgba(2, 6, 23, 0.92);
  --nav-bg-solid: linear-gradient(90deg, #111827 0%, #1e3a8a 50%, #9f1239 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

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

a {
  text-decoration: none;
}

.section-space {
  padding: 100px 0;
}

.bg-blur {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  pointer-events: none;
}

.bg-blur-1 {
  width: 280px;
  height: 280px;
  background: var(--primary-red);
  top: 90px;
  left: -80px;
}

.bg-blur-2 {
  width: 320px;
  height: 320px;
  background: var(--primary-blue);
  right: -90px;
  top: 220px;
}

/* NAVBAR */
.custom-navbar {
  background: var(--nav-bg-solid);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: #dbeafe;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
  padding: 8px 14px !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 50px;
  background: #fff;
  transition: width 0.35s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: calc(100% - 28px);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 12px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.theme-toggle-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

/* BUTTONS */
.btn-theme {
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  padding: 12px 24px;
  box-shadow: var(--shadow-main);
  transition: 0.35s ease;
}

.btn-theme:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-theme {
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: var(--text-main);
  border-radius: 14px;
  font-weight: 600;
  padding: 12px 24px;
  transition: 0.35s ease;
}

.btn-outline-theme:hover {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
}



.navbar-brand{
  padding: 0;
}

.brand-logo{
  height: auto;
  object-fit: contain;
  display: block;
}


.brand-logo{
  width: 100px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}

/* NAVBAR */
.custom-navbar {
  background: var(--nav-bg-solid);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.custom-navbar.navbar-shrink {
  padding: 3px 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

/* BRAND */
.navbar-brand {
  padding: 0;
  margin-right: 14px;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 102px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
  transition: width 0.35s ease, transform 0.35s ease;
}

.custom-navbar.navbar-shrink .brand-logo {
  width: 62px;
}

/* NAV LINKS */
.navbar-nav {
  gap: 2px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 10px !important;
  white-space: nowrap;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
  transition: width 0.35s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: calc(100% - 20px);
}

/* TOGGLER */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 10px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* RIGHT ACTIONS */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
  padding: 0;
}

.theme-toggle-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.btn-theme {
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  padding: 10px 20px;
  line-height: 1.2;
  box-shadow: var(--shadow-main);
  transition: 0.35s ease;
  white-space: nowrap;
}

.btn-theme:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-theme {
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: var(--text-main);
  border-radius: 12px;
  font-weight: 600;
  padding: 10px 20px;
  transition: 0.35s ease;
}

.btn-outline-theme:hover {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
}

/* MOBILE GLASS MENU */
@media (max-width: 991.98px) {
  .custom-navbar {
    padding: 7px 0;
  }

  .custom-navbar.navbar-shrink {
    padding: 5px 0;
  }

  .brand-logo {
    width: 64px;
  }

  .custom-navbar.navbar-shrink .brand-logo {
    width: 58px;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  }

  [data-theme="dark"] .navbar-collapse {
    background: rgba(2, 6, 23, 0.88);
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
    font-size: 1rem;
  }

  .navbar .nav-link::after {
    left: 0;
    bottom: 4px;
  }

  .navbar .nav-link:hover::after,
  .navbar .nav-link.active::after {
    width: 42px;
  }

  .theme-toggle-btn {
    width: 40px;
    height: 40px;
  }

  .btn-theme {
    padding: 10px 18px;
  }
}
/* HERO */
.hero-section {
  position: relative;
  padding-top: 110px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  margin-top: 24px;
}

.hero-stats .stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.stat-card h3 {
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-main);
  font-size: 1.4rem;
}

.stat-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--gradient-soft);
  filter: blur(8px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-car {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.25));
}

.floating-car {
  animation: floatCar 4s ease-in-out infinite;
}

.glass-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  color: var(--text-main);
  font-weight: 600;
  max-width: 220px;
}

.glass-card i {
  color: var(--primary-blue);
}

.glass-card-1 {
  top: 90px;
  left: 0;
}

.glass-card-2 {
  bottom: 90px;
  right: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-indicator span {
  width: 5px;
  height: 10px;
  background: var(--gradient-main);
  border-radius: 999px;
  animation: scrollDown 1.6s infinite;
}

.booking-wrapper,
.car-card,
.service-card,
.contact-info-card,
.contact-form-card,
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
}

.booking-section {
  margin-top: -20px;
  position: relative;
  z-index: 4;
}

.booking-wrapper {
  padding: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.section-heading.text-start p {
  margin: 0;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.custom-input {
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  min-height: 54px;
  padding: 12px 16px;
}

.custom-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
  background: var(--bg-secondary);
  color: var(--text-main);
}

/* CARDS */
.car-card {
  overflow: hidden;
  transition: 0.35s ease;
  height: 100%;
}

.car-card:hover {
  transform: translateY(-10px);
}

.car-img-wrap {
  overflow: hidden;
  height: 240px;
}

.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

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

.car-card-body {
  padding: 24px;
}

.price-tag {
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.car-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.car-features li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.car-features i {
  color: var(--primary-red);
  margin-right: 6px;
}

.service-card {
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-main);
}

.service-card p {
  color: var(--text-muted);
  margin: 0;
}


/* =========================
   TOUR & TRAVEL SERVICES
========================= */
.tt-services-section {
  position: relative;
}

.tt-services-heading {
  max-width: 760px;
  margin: 0 auto;
}

.tt-services-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  transition: all 0.35s ease;
}

.tt-services-heading:hover .tt-services-tag {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.tt-services-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  color: var(--text-main);
}

.tt-heading-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tt-services-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-main);
  transition: width 0.35s ease;
}

.tt-services-heading:hover h2::after {
  width: 130px;
}

.tt-services-heading p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* cards */
.tt-service-card {
  position: relative;
  padding: 34px 24px;
  text-align: center;
  height: 100%;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  animation: ttServiceFloat 4.5s ease-in-out infinite;
}

.tt-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.10),
    rgba(37, 99, 235, 0.10)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.tt-service-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0%;
  height: 4px;
  border-radius: 999px;
  background: var(--gradient-main);
  transition: width 0.35s ease;
}

.tt-service-card:hover::before {
  opacity: 1;
}

.tt-service-card:hover::after {
  width: 100%;
}

.tt-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  border-color: rgba(37, 99, 235, 0.18);
  animation-play-state: paused;
}

.tt-service-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: #fff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-main);
  transition: all 0.4s ease;
  position: relative;
}

.tt-service-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.35s ease;
}

.tt-service-card:hover .tt-service-icon {
  transform: translateY(-6px) rotate(-6deg) scale(1.06);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.tt-service-card:hover .tt-service-icon::before {
  opacity: 1;
  transform: scale(1.08);
}

.tt-service-icon i {
  transition: transform 0.35s ease;
}

.tt-service-card:hover .tt-service-icon i {
  transform: scale(1.08);
}

.tt-service-card h5 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.tt-service-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.tt-service-card:hover h5 {
  color: var(--primary-blue);
}

.tt-service-card:hover p {
  color: var(--text-main);
}

/* floating delay */
.tt-services-section .row > div:nth-child(2) .tt-service-card {
  animation-delay: 0.2s;
}

.tt-services-section .row > div:nth-child(3) .tt-service-card {
  animation-delay: 0.4s;
}

.tt-services-section .row > div:nth-child(4) .tt-service-card {
  animation-delay: 0.6s;
}

@keyframes ttServiceFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* responsive */
@media (max-width: 767.98px) {
  .tt-service-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .tt-service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    border-radius: 18px;
  }

  .tt-service-card h5 {
    font-size: 1.08rem;
  }

  .tt-services-heading p {
    font-size: 0.95rem;
  }
}




/* =========================
   MP TOUR DESTINATIONS
========================= */
.mt-tour-section {
  position: relative;
  overflow: hidden;
}

.mt-tour-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mt-tour-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  transition: all 0.35s ease;
}

.mt-tour-heading:hover .mt-tour-tag {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
}

.mt-tour-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-main);
  line-height: 1.2;
}

.mt-tour-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-tour-heading p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* slider wrap */
.mt-tour-slider-wrap {
  position: relative;
  margin: 42px auto 0;
  width: 100%;
  max-width: 100%;
}

.mt-tour-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 6px 18px;
}

.mt-tour-slider::-webkit-scrollbar {
  display: none;
}

.mt-tour-card {
  position: relative;
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  height: 460px;
  border-radius: 26px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #0b1120;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: mtTourFloat 5s ease-in-out infinite;
}

.mt-tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.mt-tour-card:nth-child(2n) {
  animation-delay: 0.25s;
}

.mt-tour-card:nth-child(3n) {
  animation-delay: 0.45s;
}

.mt-tour-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mt-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mt-tour-card:hover .mt-tour-image img {
  transform: scale(1.1);
}

.mt-tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 8, 22, 0.92) 0%,
    rgba(5, 8, 22, 0.44) 44%,
    rgba(5, 8, 22, 0.12) 100%
  );
  z-index: 1;
}

.mt-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(225, 29, 72, 0.10),
    rgba(37, 99, 235, 0.08)
  );
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.mt-tour-card:hover::before {
  opacity: 1;
}

.mt-tour-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--gradient-main);
  transition: width 0.35s ease;
  z-index: 4;
}

.mt-tour-card:hover::after {
  width: 100%;
}

.mt-tour-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
}

.mt-tour-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mt-tour-content h3 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mt-tour-content p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 16px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.mt-tour-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.mt-tour-card:hover .mt-tour-link {
  gap: 16px;
}

.mt-tour-link i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

/* navigation buttons */
.mt-tour-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(5, 8, 22, 0.82);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 5;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}

.mt-tour-btn:hover {
  background: var(--gradient-main);
  transform: translateY(-50%) scale(1.07);
}

.mt-tour-prev {
  left: -22px;
}

.mt-tour-next {
  right: -22px;
}

/* fade sides */
.mt-tour-slider-wrap::before,
.mt-tour-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 4;
}

.mt-tour-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main), rgba(255,255,255,0));
}

.mt-tour-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main), rgba(255,255,255,0));
}

[data-theme="dark"] .mt-tour-slider-wrap::before {
  background: linear-gradient(to right, var(--bg-main), rgba(5,8,22,0));
}

[data-theme="dark"] .mt-tour-slider-wrap::after {
  background: linear-gradient(to left, var(--bg-main), rgba(5,8,22,0));
}

/* view all button */
.mt-tour-action {
  margin-top: 26px;
}

.mt-tour-view-btn {
  min-width: 220px;
  padding: 14px 26px;
  border-radius: 999px;
}

/* floating animation */
@keyframes mtTourFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .mt-tour-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    height: 420px;
  }

  .mt-tour-prev {
    left: -10px;
  }

  .mt-tour-next {
    right: -10px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .mt-tour-slider-wrap {
    margin-top: 28px;
  }

  .mt-tour-card {
    flex: 0 0 86%;
    min-width: 86%;
    height: 390px;
    border-radius: 22px;
  }

  .mt-tour-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .mt-tour-content h3 {
    font-size: 1.4rem;
  }

  .mt-tour-btn {
    display: none;
  }

  .mt-tour-slider-wrap::before,
  .mt-tour-slider-wrap::after {
    display: none;
  }

  .mt-tour-view-btn {
    min-width: auto;
    width: 100%;
  }
}
/* =========================
   FLEET SLIDER
========================= */
.fleet-slider-wrapper {
  position: relative;
  margin-top: 40px;
}

.fleet-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 6px 14px;
  scrollbar-width: none;
}

.fleet-slider::-webkit-scrollbar {
  display: none;
}

.fleet-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  scroll-snap-align: start;
}

/* same old card feel */
.fleet-item .car-card {
  height: 100%;
}

/* arrow buttons */
.fleet-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 5;
  transition: all 0.3s ease;
}

.fleet-btn:hover {
  background: var(--gradient-main);
  transform: translateY(-50%) scale(1.06);
}

.fleet-prev {
  left: -22px;
}

.fleet-next {
  right: -22px;
}

/* optional subtle edge fade */
.fleet-slider-wrapper::before,
.fleet-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.fleet-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main), rgba(255,255,255,0));
}

.fleet-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main), rgba(255,255,255,0));
}

[data-theme="dark"] .fleet-slider-wrapper::before {
  background: linear-gradient(to right, var(--bg-main), rgba(5,8,22,0));
}

[data-theme="dark"] .fleet-slider-wrapper::after {
  background: linear-gradient(to left, var(--bg-main), rgba(5,8,22,0));
}

/* tablet */
@media (max-width: 991.98px) {
  .fleet-item {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .fleet-prev {
    left: -10px;
  }

  .fleet-next {
    right: -10px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .fleet-slider-wrapper {
    margin-top: 28px;
  }

  .fleet-item {
    flex: 0 0 84%;
    min-width: 84%;
  }

  .fleet-btn {
    display: none;
  }

  .fleet-slider-wrapper::before,
  .fleet-slider-wrapper::after {
    display: none;
  }
}
/* =========================
   FLEET CARD IMPROVED UI
========================= */
.car-card {
  overflow: hidden;
  transition: 0.35s ease;
  height: 100%;
  position: relative;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.car-img-wrap {
  overflow: hidden;
  height: 240px;
  position: relative;
}

.car-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.22), rgba(0,0,0,0.02));
}

.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

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

.car-card-body {
  padding: 24px;
}

.car-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.car-type-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.car-name {
  font-size: 1.28rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: var(--text-main);
}

.price-tag {
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: var(--shadow-main);
}

.car-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.car-features li {
  color: var(--text-muted);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 12px;
}

.car-features i {
  color: var(--primary-red);
  margin-right: 6px;
}

/* button improve */
.btn-outline-theme {
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--text-main);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 700;
  transition: 0.3s ease;
  background: transparent;
}

.btn-outline-theme:hover {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* mobile title balance */
@media (max-width: 767.98px) {
  .car-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-tag {
    margin-top: 4px;
  }

  .car-name {
    font-size: 1.1rem;
  }

  .car-img-wrap {
    height: 220px;
  }
}
.car-tag-popular {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: #e11d48;
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}


/* =========================
   VIDEO CTA SECTION
========================= */
.mt-video-cta-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 28px;
  margin: 0 12px;
  isolation: isolate;
}

.mt-video-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.mt-video-cta-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-video-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 22, 0.52) 0%,
      rgba(5, 8, 22, 0.64) 40%,
      rgba(5, 8, 22, 0.78) 100%
    );
}

.mt-video-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 34%);
}

.mt-video-cta-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.mt-video-cta-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: mtVideoTagFloat 3.5s ease-in-out infinite;
}

.mt-video-cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.mt-video-cta-highlight {
  background: linear-gradient(135deg, #e11d48 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-video-cta-content p {
  max-width: 860px;
  margin: 0 auto 26px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.90);
}

.mt-video-cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.mt-video-cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.mt-video-cta-points span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.mt-video-cta-points i {
  color: #fff;
}

.mt-video-cta-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mt-video-outline-btn {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 14px;
  font-weight: 600;
  padding: 12px 24px;
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
}

.mt-video-outline-btn:hover {
  background: #fff;
  color: #111827;
  transform: translateY(-3px);
}

/* hover animation on whole content */
.mt-video-cta-content h2,
.mt-video-cta-content p,
.mt-video-cta-action,
.mt-video-cta-points {
  animation: mtVideoFadeUp 1s ease both;
}

.mt-video-cta-content p {
  animation-delay: 0.15s;
}

.mt-video-cta-points {
  animation-delay: 0.25s;
}

.mt-video-cta-action {
  animation-delay: 0.35s;
}

@keyframes mtVideoFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mtVideoTagFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* optional dark mode enhancement */
[data-theme="dark"] .mt-video-cta-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(3, 6, 18, 0.52) 0%,
      rgba(3, 6, 18, 0.66) 40%,
      rgba(3, 6, 18, 0.82) 100%
    );
}

/* responsive */
@media (max-width: 991.98px) {
  .mt-video-cta-section {
    min-height: 68vh;
    border-radius: 24px;
  }

  .mt-video-cta-content {
    padding: 70px 18px;
  }

  .mt-video-cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .mt-video-cta-section {
    min-height: 62vh;
    border-radius: 20px;
    margin: 0;
  }

  .mt-video-cta-content {
    padding: 60px 14px;
  }

  .mt-video-cta-content h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .mt-video-cta-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .mt-video-cta-points {
    gap: 10px;
  }

  .mt-video-cta-points span {
    font-size: 0.86rem;
    padding: 9px 14px;
  }

  .mt-video-outline-btn,
  .mt-video-cta-action .btn-theme {
    width: 100%;
  }
}

/* =========================
   FIND CAR BY TYPE
========================= */
.car-type-section {
  position: relative;
}

.car-type-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.car-type-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.car-type-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.car-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.car-type-img-wrap {
  position: absolute;
  inset: 0;
}

.car-type-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.car-type-card:hover .car-type-img-wrap img {
  transform: scale(1.08);
}

.car-type-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 8, 22, 0.82) 0%,
      rgba(5, 8, 22, 0.28) 45%,
      rgba(5, 8, 22, 0.08) 100%
    );
  z-index: 1;
}

.car-type-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gradient-main);
  z-index: 3;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.car-type-card:hover::after {
  transform: scaleX(1);
}

.car-type-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.car-type-content h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.car-type-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.92;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.car-type-card:hover .car-type-link {
  gap: 16px;
  opacity: 1;
}

.car-type-link i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

/* subtle floating animation */
.car-type-card {
  animation: cardFloat 5s ease-in-out infinite;
}

.car-type-card:nth-child(2) {
  animation-delay: 0.2s;
}

.car-type-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

.car-type-card:hover {
  animation-play-state: paused;
}

/* responsive */
@media (max-width: 991.98px) {
  .car-type-card {
    min-height: 360px;
  }

  .car-type-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .car-type-heading p {
    font-size: 0.96rem;
  }

  .car-type-card {
    min-height: 320px;
    border-radius: 18px;
  }

  .car-type-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .car-type-content h3 {
    font-size: 1.6rem;
  }

  .car-type-link {
    font-size: 0.9rem;
  }
}

.car-type-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 22px;
}

.car-type-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* BEST FIT */
  object-position: center; /* important */
  transition: transform 0.6s ease;
}
.car-type-img-wrap img {
  object-fit: cover;
  object-position: center top; /* ya try: center bottom */
}

/* =========================
   FIND CAR BY TYPE
========================= */
.car-type-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  min-height: 430px;
  background: linear-gradient(180deg, #0f172a, #111827);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.car-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.car-type-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 90px; /* neeche content ke liye space */
}

.car-type-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;      /* poori image dikh jayegi */
  object-position: center;  /* center me rahegi */
  transition: transform 0.6s ease;
}

.car-type-card:hover .car-type-img-wrap img {
  transform: scale(1.06);
}

.car-type-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(5, 8, 22, 0.88) 0%,
      rgba(5, 8, 22, 0.22) 45%,
      rgba(5, 8, 22, 0.04) 100%
    );
  z-index: 1;
}

.car-type-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.car-type-content h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.car-type-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.92;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.car-type-card:hover .car-type-link {
  gap: 16px;
  opacity: 1;
}

.car-type-link i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}


/* =========================
   ABOUT SECTION
========================= */
.mt-about-section {
  position: relative;
}

.mt-about-heading {
  max-width: 520px;
}

.mt-about-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.mt-about-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.mt-about-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-about-heading p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* IMAGE */
.mt-about-image-wrap {
  position: relative;
}

.mt-about-image {
  border-radius: 28px;
  width: 100%;
  box-shadow: var(--shadow-main);
  transition: transform 0.5s ease;
}

.mt-about-image-wrap:hover .mt-about-image {
  transform: scale(1.04);
}

/* floating badge */
.mt-about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gradient-main);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-main);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* LIST */
.mt-about-list {
  display: grid;
  gap: 16px;
}

.mt-about-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: 0.35s ease;
}

.mt-about-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
}

.mt-about-item i {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-top: 4px;
}

.mt-about-item h6 {
  margin: 0;
  font-weight: 700;
}

.mt-about-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* BUTTONS */
.mt-about-action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mt-about-outline-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 14px;
  padding: 12px 22px;
  transition: 0.3s ease;
}

.mt-about-outline-btn:hover {
  background: var(--gradient-main);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .mt-about-action {
    flex-direction: column;
  }

  .mt-about-outline-btn,
  .mt-about-action .btn-theme {
    width: 100%;
  }
}



/* =========================
   TEMPLE TOUR PACKAGES
========================= */
.mt-temple-section {
  position: relative;
  overflow: hidden;
}

.mt-temple-heading {
  max-width: 780px;
  margin: 0 auto;
}

.mt-temple-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.mt-temple-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--text-main);
}

.mt-temple-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-temple-heading p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* screenshot-like layout */
.mt-temple-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  grid-template-rows: 190px 220px 220px;
  gap: 16px;
  grid-template-areas:
    "small1 small2 wide"
    "tall1 tall2 stack1"
    "tall1 tall2 stack2";
}

/* areas */
.mt-card-small:nth-child(1) { grid-area: small1; }
.mt-card-small:nth-child(2) { grid-area: small2; }
.mt-card-wide { grid-area: wide; }
.mt-card-tall:nth-of-type(4) { grid-area: tall1; }
.mt-card-tall:nth-of-type(5) { grid-area: tall2; }

/* safer explicit targeting if order changes not desired; current HTML order supports above */
.mt-temple-masonry > :nth-child(6) { grid-area: stack1; }
.mt-temple-masonry > :nth-child(7) { grid-area: stack2; }

.mt-temple-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  animation: mtTempleFloat 5s ease-in-out infinite;
}

.mt-temple-card:nth-child(2n) {
  animation-delay: 0.2s;
}

.mt-temple-card:nth-child(3n) {
  animation-delay: 0.4s;
}

.mt-temple-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mt-temple-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 8, 22, 0.92) 0%,
    rgba(5, 8, 22, 0.34) 48%,
    rgba(5, 8, 22, 0.08) 100%
  );
}

.mt-temple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(225, 29, 72, 0.10),
    rgba(37, 99, 235, 0.10)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.mt-temple-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 3;
}

.mt-temple-card:hover::before {
  opacity: 1;
}

.mt-temple-card:hover::after {
  transform: scaleX(1);
}

.mt-temple-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
}

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

/* badge */
.mt-temple-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--gradient-main);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

/* content */
.mt-temple-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.mt-temple-content h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.mt-card-wide .mt-temple-content h3,
.mt-card-tall .mt-temple-content h3 {
  font-size: 1.45rem;
}

.mt-temple-days {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.mt-temple-content span {
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 500;
}

.mt-temple-content strong {
  color: #fbbf24;
  font-size: 1rem;
  margin-left: 4px;
}

/* action */
.mt-temple-action {
  margin-top: 30px;
}

.mt-temple-btn {
  min-width: 240px;
  border-radius: 999px;
  padding: 14px 26px;
}

/* float animation */
@keyframes mtTempleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

/* tablet */
@media (max-width: 991.98px) {
  .mt-temple-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: none;
  }

  .mt-temple-masonry > * {
    grid-area: auto !important;
    min-height: 240px;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .mt-temple-masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mt-temple-masonry > * {
    min-height: 240px;
  }

  .mt-temple-content h3 {
    font-size: 1.2rem !important;
  }

  .mt-temple-btn {
    width: 100%;
    min-width: auto;
  }
}




/* =========================
   OFFER / SERVICES SHOWCASE
========================= */
.mt-offer-section {
  position: relative;
}

.mt-offer-wrap {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 58, 138, 0.94) 55%, rgba(159, 18, 57, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  padding: 48px 34px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mt-offer-wrap::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.16);
  filter: blur(12px);
}

.mt-offer-wrap::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.14);
  filter: blur(10px);
}

/* LEFT VISUAL */
.mt-offer-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.mt-offer-visual-glow {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.30), rgba(225, 29, 72, 0.20), transparent 70%);
  filter: blur(18px);
  z-index: 1;
}

.mt-offer-traveler {
  position: relative;
  z-index: 3;
  max-width: 88%;
  width: 100%;
  max-height: 500px;
  height: auto;
  display: block;
  object-fit: contain;
  animation: mtOfferFloat 4.5s ease-in-out infinite;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
}

.mt-offer-mini-landmarks {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  z-index: 4;
}

.mt-landmark-card {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.mt-landmark-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

/* RIGHT CONTENT */
.mt-offer-content {
  color: #fff;
  max-width: 100%;
}

.mt-offer-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mt-offer-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.mt-offer-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.mt-offer-content > p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 8px;
}

/* CARDS */
.mt-offer-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 26px 22px 52px;
  height: 100%;
  min-height: 205px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.mt-offer-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 58px;
  background: var(--gradient-main);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.mt-offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
}

.mt-offer-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-size: 1.55rem;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.mt-offer-card:hover .mt-offer-card-icon {
  transform: scale(1.08) rotate(-6deg);
}

.mt-offer-card h5 {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.mt-offer-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.mt-offer-card-number {
  position: absolute;
  left: 14px;
  bottom: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  z-index: 2;
}

/* BOTTOM BANNER */
.mt-offer-bottom-banner {
  position: relative;
  height: 170px;
  border-radius: 999px 999px 40px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mt-offer-bottom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mt-offer-bottom-banner:hover .mt-offer-bottom-img {
  transform: scale(1.06);
}

.mt-offer-bottom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 8, 22, 0.68),
    rgba(5, 8, 22, 0.24)
  );
}

.mt-offer-bottom-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff;
}

.mt-offer-bottom-content h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.mt-offer-bottom-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

/* ANIMATION */
@keyframes mtOfferFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .mt-offer-wrap {
    padding: 38px 24px 24px;
  }

  .mt-offer-visual {
    min-height: 420px;
  }

  .mt-offer-traveler {
    max-width: 90%;
    max-height: 390px;
  }
}

@media (max-width: 767.98px) {
  .mt-offer-wrap {
    border-radius: 24px;
    padding: 28px 16px 18px;
  }

  .mt-offer-visual {
    min-height: 320px;
  }

  .mt-offer-traveler {
    max-width: 92%;
    max-height: 300px;
  }

  .mt-offer-bottom-banner {
    height: 190px;
    border-radius: 28px;
  }

  .mt-offer-bottom-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .mt-offer-bottom-content h4 {
    font-size: 1.1rem;
  }
}
/* =========================
   HOW TO BOOK (THEME VERSION)
========================= */

.mt-steps-section {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.05),
    rgba(37, 99, 235, 0.05)
  );
  overflow: hidden;
}

/* heading */

.mt-steps-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-steps-tag {
   display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.mt-steps-heading p {
  color: var(--text-muted);
  max-width: 650px;
  margin: auto;
}

/* =========================
   STEP CARDS
========================= */

.mt-step-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 34px 26px 60px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: 0.35s ease;
  backdrop-filter: blur(16px);
  overflow: visible;
}

.mt-step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
}

/* gradient hover overlay */

.mt-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: 0.35s ease;
  border-radius: 24px;
}

.mt-step-card:hover::before {
  opacity: 1;
}

/* icon */

.mt-step-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: var(--gradient-main);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--shadow-main);
  transition: 0.35s ease;
}

.mt-step-card:hover .mt-step-icon {
  transform: scale(1.08) rotate(-6deg);
}

/* title */

.mt-step-card h4 {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

/* text */

.mt-step-card p {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* number circle */

.mt-step-number {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-main);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: var(--shadow-main);
}

/* =========================
   FLOATING ANIMATION
========================= */

.mt-step-card {
  animation: mtStepFloat 5s ease-in-out infinite;
}

.mt-step-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mt-step-card:nth-child(3) {
  animation-delay: 0.4s;
}

.mt-step-card:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes mtStepFloat {
  0%,100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

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

@media (max-width: 991px) {

  .mt-step-card {
    padding: 30px 22px 55px;
  }

  .mt-step-icon {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
  }

}

@media (max-width: 767px) {

  .mt-step-card {
    padding: 26px 20px 55px;
  }

  .mt-step-number {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }

  .mt-step-card h4 {
    font-size: 1.15rem;
  }

}

/* =========================
   TESTIMONIAL SECTION
========================= */
.mt-testimonial-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.mt-testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.mt-testimonial-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay on bg image */
.mt-testimonial-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 22, 0.42) 0%,
      rgba(5, 8, 22, 0.56) 42%,
      rgba(5, 8, 22, 0.74) 100%
    );
}

/* extra theme glow */
.mt-testimonial-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.16), transparent 34%);
}

.mt-testimonial-wrap {
  padding: 30px 0;
}

/* =========================
   HEADING
========================= */
.mt-testimonial-heading {
  max-width: 760px;
  color: #fff;
}

.mt-testimonial-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(225, 29, 72, 0.22),
    rgba(37, 99, 235, 0.22)
  );
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.mt-testimonial-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  color: #fff;
}

.mt-testimonial-highlight {
  background: linear-gradient(90deg, #e11d48, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-testimonial-heading p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 760px;
  margin: 0;
}

/* =========================
   FLOATING AVATAR
========================= */
.mt-testimonial-floating-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(225, 29, 72, 0.16),
    0 0 20px rgba(37, 99, 235, 0.16);
  animation: mtTestimonialFloat 4.5s ease-in-out infinite;
  margin-top: 12px;
}

.mt-testimonial-floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   SLIDER
========================= */
.mt-testimonial-slider {
  margin-top: 42px;
  position: relative;
}

.mt-testimonial-track {
  position: relative;
}

.mt-testimonial-slide {
  display: none;
  animation: mtTestimonialFade 0.6s ease;
}

.mt-testimonial-slide.active {
  display: block;
}

/* =========================
   CARD
========================= */
.mt-testimonial-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.92),
    rgba(37, 99, 235, 0.92)
  );
  border-radius: 26px;
  padding: 40px 34px;
  min-height: 285px;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(10px);
}

/* shine effect */
.mt-testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-25deg);
}

.mt-testimonial-card:hover::before {
  animation: mtTestimonialShine 0.8s ease forwards;
}

.mt-testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.mt-testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(225, 29, 72, 0.22),
    0 0 22px rgba(37, 99, 235, 0.22);
}

.mt-testimonial-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 34px;
}

.mt-testimonial-user {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mt-testimonial-user img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.mt-testimonial-user h5 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 2px;
}

.mt-testimonial-user span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

/* =========================
   DOTS
========================= */
.mt-testimonial-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mt-testimonial-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.mt-testimonial-dot.active {
  background: linear-gradient(90deg, #e11d48, #2563eb);
  transform: scale(1.28);
  box-shadow:
    0 0 12px rgba(225, 29, 72, 0.3),
    0 0 12px rgba(37, 99, 235, 0.3);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes mtTestimonialFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mtTestimonialFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes mtTestimonialShine {
  100% {
    left: 120%;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .mt-testimonial-section {
    min-height: auto;
    padding: 80px 0;
  }

  .mt-testimonial-heading h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .mt-testimonial-card {
    min-height: 240px;
  }

  .mt-testimonial-floating-avatar {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 767.98px) {
  .mt-testimonial-section {
    padding: 70px 0;
  }

  .mt-testimonial-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .mt-testimonial-heading p {
    font-size: 0.96rem;
  }

  .mt-testimonial-card {
    padding: 28px 22px;
    min-height: auto;
    border-radius: 22px;
  }

  .mt-testimonial-text {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }

  .mt-testimonial-floating-avatar {
    width: 96px;
    height: 96px;
    margin-top: 0;
  }
}

.cta-box {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.14), rgba(37, 99, 235, 0.16));
}

.cta-box p {
  color: var(--text-muted);
  margin: 14px 0 24px;
}

.contact-info-card,
.contact-form-card {
  padding: 32px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--text-main);
  word-break: break-word;
}

.contact-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  transition: 0.35s ease;
}

.social-links a:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-3px);
}

.footer-section {
  padding: 28px 0;
  border-top: 1px solid var(--border-color);
  background: transparent;
}

.footer-section p {
  color: var(--text-muted);
  margin-bottom: 0;
}

@keyframes floatCar {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* LARGE TABLET */
@media (max-width: 991.98px) {
  .custom-navbar {
    padding: 10px 0;
  }


  
  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(7, 12, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  [data-theme="light"] .navbar-collapse {
    background: rgba(15, 23, 42, 0.94);
  }

  .navbar-nav {
    gap: 4px;
  }

  .navbar .nav-link {
    padding: 12px 10px !important;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .hero-section {
    padding-top: 140px;
    min-height: auto;
  }

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

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    min-height: 380px;
    margin-top: 20px;
  }

  .hero-circle {
    width: 320px;
    height: 320px;
  }

  .glass-card-1,
  .glass-card-2 {
    position: static;
    margin-top: 14px;
    max-width: 100%;
    justify-content: center;
  }

  .booking-section {
    margin-top: 24px;
  }
}

/* MOBILE */
@media (max-width: 767.98px) {
  .section-space {
    padding: 70px 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .hero-section {
    padding-top: 125px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-theme,
  .hero-actions .btn-outline-theme {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-circle {
    width: 240px;
    height: 240px;
  }

  .hero-car {
    width: 100%;
  }

  .booking-wrapper,
  .contact-info-card,
  .contact-form-card,
  .cta-box {
    padding: 22px 16px;
  }

  .hero-stats .stat-card {
    padding: 14px 10px;
  }

  .car-img-wrap {
    height: 210px;
  }

  .car-card-body {
    padding: 18px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .scroll-indicator {
    display: none;
  }

  .price-tag {
    font-size: 0.82rem;
    padding: 7px 12px;
  }
}

/* SMALL MOBILE */
@media (max-width: 575.98px) {
  .container,
  .container-sm {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-badge {
    font-size: 0.84rem;
    padding: 9px 14px;
  }

  .stat-card h3 {
    font-size: 1.1rem;
  }

  .stat-card p {
    font-size: 0.8rem;
  }

  .car-features {
    gap: 10px;
    flex-direction: column;
  }

  .contact-item {
    align-items: flex-start;
  }
}



.btn-theme {
  position: relative;
  overflow: hidden;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  padding: 12px 24px;
  box-shadow: var(--shadow-main);
  transition: 0.35s ease;
}

/* Shine effect */
.btn-theme::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
}

/* On hover slide */
.btn-theme:hover::before {
  animation: shine 0.8s ease forwards;
}

.btn-theme:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Animation */
@keyframes shine {
  100% {
    left: 125%;
  }
}
.custom-navbar {
  background: #000; /* pure black */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  position: relative;
}
.custom-navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e11d48, #2563eb);
  opacity: 0.6;
}

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: #000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}
body {
  padding-top: 80px; /* navbar height ke according adjust karo */
}
.custom-navbar.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}


/* quick booking */

.booking-wrapper {
  padding: 38px 32px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
}

.input-icon-wrap .custom-input,
.input-icon-wrap .form-select {
  padding-left: 46px;
}

.booking-section .form-label {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
}

.booking-btn {
  min-height: 56px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.otp-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.otp-row .custom-input {
  flex: 1 1 auto;
}

.otp-verify-btn {
  min-width: 140px;
  min-height: 56px;
}

.otp-message {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.otp-message.success {
  color: #16a34a;
}

.otp-message.error {
  color: #dc2626;
}

[data-theme="dark"] .booking-section .form-label {
  color: var(--text-main);
}

[data-theme="dark"] .input-icon-wrap i {
  color: #cbd5e1;
}

[data-theme="dark"] .custom-input,
[data-theme="dark"] .form-select.custom-input {
  background: #020617;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .custom-input::placeholder {
  color: #94a3b8;
}

[data-theme="dark"] .form-select.custom-input {
  color: #fff;
}

[data-theme="dark"] .form-select.custom-input option {
  background: #0f172a;
  color: #fff;
}

@media (max-width: 991.98px) {
  .booking-wrapper {
    padding: 28px 22px;
  }
}

@media (max-width: 767.98px) {
  .otp-row {
    flex-direction: column;
  }

  .otp-verify-btn,
  .booking-btn {
    width: 100%;
  }
}




/* from section */
/* =========================
   CONTACT SECTION
========================= */
.mt-contact-section {
  position: relative;
}

.mt-contact-heading {
  max-width: 760px;
  margin: 0 auto;
}

.mt-contact-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.mt-contact-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--text-main);
}

.mt-contact-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-contact-heading p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* cards */
.mt-contact-info-card,
.mt-contact-form-card {
  padding: 32px;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

/* left info */
.mt-contact-info-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.mt-contact-info-card > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.mt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  color: var(--text-main);
  word-break: break-word;
}

.mt-contact-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-main);
}

.mt-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mt-contact-item strong {
  font-size: 1rem;
  color: var(--text-main);
}

.mt-contact-item span {
  color: var(--text-muted);
  line-height: 1.6;
}

/* small points */
.mt-contact-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mt-contact-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.35s ease;
}

.mt-contact-mini-points span:hover {
  transform: translateY(-3px);
  background: var(--gradient-soft);
}

.mt-contact-mini-points i {
  color: var(--primary-red);
}

/* social */
.mt-contact-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mt-contact-social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  transition: 0.35s ease;
}

.mt-contact-social-links a:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-main);
}

/* form */
.mt-contact-form-card form .custom-input,
.mt-contact-form-card form select.custom-input,
.mt-contact-form-card form textarea.custom-input {
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  min-height: 54px;
  padding: 12px 16px;
  box-shadow: none;
}

.mt-contact-form-card textarea.custom-input {
  min-height: 130px;
  resize: vertical;
}

.mt-contact-form-card .custom-input:focus,
.mt-contact-form-card select.custom-input:focus,
.mt-contact-form-card textarea.custom-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
  background: var(--bg-secondary);
  color: var(--text-main);
}

.mt-contact-form-card select.custom-input {
  appearance: none;
  cursor: pointer;
}

/* button */
.mt-contact-form-card .btn-theme {
  min-width: 180px;
  border-radius: 14px;
}

/* responsive */
@media (max-width: 991.98px) {
  .mt-contact-info-card,
  .mt-contact-form-card {
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .mt-contact-info-card,
  .mt-contact-form-card {
    padding: 22px;
    border-radius: 20px;
  }

  .mt-contact-mini-points {
    gap: 8px;
  }

  .mt-contact-mini-points span {
    font-size: 0.84rem;
    padding: 9px 12px;
  }

  .mt-contact-form-card .btn-theme {
    width: 100%;
  }
}



/* =========================
   BLOG SECTION
========================= */
.mt-blog-section {
  position: relative;
}

.mt-blog-heading {
  max-width: 880px;
  margin: 0 auto;
}

.mt-blog-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.mt-blog-heading h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.18;
  margin-bottom: 0;
}

.mt-blog-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   FEATURED BLOG
========================= */
.mt-blog-featured {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  min-height: 545px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.mt-blog-featured-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mt-blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.mt-blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 8, 22, 0.92) 0%,
    rgba(5, 8, 22, 0.34) 48%,
    rgba(5, 8, 22, 0.08) 100%
  );
}

/* shine */
.mt-blog-featured-img-wrap::before,
.mt-blog-item-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

.mt-blog-featured:hover .mt-blog-featured-img-wrap::before,
.mt-blog-item:hover .mt-blog-item-img-wrap::before {
  animation: mtBlogShine 0.9s ease forwards;
}

.mt-blog-featured:hover .mt-blog-featured-img {
  transform: scale(1.08);
}

.mt-blog-featured-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
}

.mt-blog-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.mt-blog-date.light {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.mt-blog-date i {
  color: var(--primary-red);
}

.mt-blog-featured h3 {
  font-size: 2rem;
  line-height: 1.28;
  font-weight: 800;
  color: #fff;
  max-width: 560px;
  margin-bottom: 0;
}

.mt-blog-arrow {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-main);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-main);
  transform: translateY(88px);
  transition: transform 0.35s ease;
}

.mt-blog-featured:hover .mt-blog-arrow {
  transform: translateY(0);
}

/* =========================
   BLOG LIST
========================= */
.mt-blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mt-blog-item {
  display: flex;
  gap: 20px;
  align-items: stretch;
  text-decoration: none;
  transition: transform 0.35s ease;
}

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

.mt-blog-item-img-wrap {
  position: relative;
  width: 205px;
  min-width: 205px;
  height: 160px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.mt-blog-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.mt-blog-item:hover .mt-blog-item-img {
  transform: scale(1.08);
}

.mt-blog-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mt-blog-item-content h4 {
  font-size: 1.85rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.mt-blog-item:hover .mt-blog-item-content h4 {
  color: var(--primary-blue);
}

.mt-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-red);
  transition: gap 0.3s ease;
}

.mt-blog-item:hover .mt-blog-read-more {
  gap: 12px;
}

.mt-blog-read-more i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.8rem;
}

/* animation */
@keyframes mtBlogShine {
  100% {
    left: 125%;
  }
}

/* responsive */
@media (max-width: 991.98px) {
  .mt-blog-featured {
    min-height: 460px;
  }

  .mt-blog-featured h3 {
    font-size: 1.7rem;
    max-width: 100%;
  }

  .mt-blog-item-content h4 {
    font-size: 1.25rem;
  }

  .mt-blog-item-img-wrap {
    width: 180px;
    min-width: 180px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .mt-blog-featured {
    min-height: 380px;
    border-radius: 24px;
  }

  .mt-blog-featured-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .mt-blog-featured h3 {
    font-size: 1.35rem;
  }

  .mt-blog-item {
    flex-direction: column;
    gap: 14px;
  }

  .mt-blog-item-img-wrap {
    width: 100%;
    min-width: 100%;
    height: 220px;
    border-radius: 18px;
  }

  .mt-blog-item-content h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .mt-blog-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
}



/* footer */
/* =========================
   FOOTER
========================= */
.mt-footer-section {
  background: #050816;
  color: #fff;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

/* gradient glow */
.mt-footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(225,29,72,0.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(37,99,235,0.12), transparent 40%);
  pointer-events: none;
}

/* LOGO */
.mt-footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.mt-footer-brand p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SOCIAL */
.mt-footer-social {
  display: flex;
  gap: 12px;
}

.mt-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: 0.35s ease;
  border: 1px solid rgba(255,255,255,0.12);
}

.mt-footer-social a:hover {
  background: linear-gradient(90deg, #e11d48, #2563eb);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* LINKS */
.mt-footer-links h5,
.mt-footer-contact h5 {
  font-weight: 700;
  margin-bottom: 18px;
}

.mt-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mt-footer-links li {
  margin-bottom: 10px;
}

.mt-footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.3s ease;
}

.mt-footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* CONTACT */
.mt-footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.mt-footer-contact-item i {
  color: #fff;
  background: linear-gradient(90deg, #e11d48, #2563eb);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.mt-footer-contact-item span {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* BOTTOM */
.mt-footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.65);
}

.mt-footer-dev a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(90deg, #e11d48, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* responsive */
@media (max-width: 767px) {
  .mt-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mt-footer-logo {
    width: 150px;
  }
}

/* WHATSAPP FLOAT BUTTON */

.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all .35s ease;
}

.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
}

/* pulse animation */

.whatsapp-float::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#25D366;
  opacity:.6;
  animation:whatsappPulse 1.8s infinite;
  z-index:-1;
}

@keyframes whatsappPulse{
  0%{
    transform:scale(1);
    opacity:.6;
  }
  70%{
    transform:scale(1.6);
    opacity:0;
  }
  100%{
    transform:scale(1);
    opacity:0;
  }
}

/* mobile size */

@media(max-width:768px){

.whatsapp-float{
  width:55px;
  height:55px;
  font-size:26px;
  right:16px;
  bottom:16px;
}

}

/* contract page hero */
/* =========================
   CONTACT HERO
========================= */
.mt-contact-hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* bg image */
.mt-contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.mt-contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.mt-contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(5,8,22,0.6),
    rgba(5,8,22,0.8)
  );
}

/* theme glow */
.mt-contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(225,29,72,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(37,99,235,0.15), transparent 40%);
}

/* content */
.mt-contact-hero-content {
  max-width: 700px;
  color: #fff;
}

.mt-contact-hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.mt-contact-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.mt-contact-hero-content h1 span {
  background: linear-gradient(90deg, #e11d48, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-contact-hero-content p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 26px;
}

/* buttons */
.mt-contact-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mt-contact-hero-buttons .btn-outline-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.mt-contact-hero-buttons .btn-outline-light:hover {
  background: #fff;
  color: #000;
}

/* responsive */
@media (max-width: 767px) {
  .mt-contact-hero {
    height: auto;
    padding: 100px 0;
  }

  .mt-contact-hero-content h1 {
    font-size: 2.2rem;
  }

  .mt-contact-hero-content p {
    font-size: 0.95rem;
  }
}


/* contract page from */
/* =========================
   CONTACT US PAGE SECTION
========================= */
.cu-contact-section {
  position: relative;
}

.cu-contact-head {
  max-width: 760px;
  margin: 0 auto;
}

.cu-contact-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.cu-contact-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cu-contact-head p {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

/* shared boxes */
.cu-info-box,
.cu-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.cu-info-box h3,
.cu-form-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.cu-info-text,
.cu-form-text {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* left info */
.cu-info-list {
  display: grid;
  gap: 18px;
}

.cu-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cu-info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.cu-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-main);
}

.cu-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cu-info-content span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.cu-info-content a,
.cu-info-content p {
  margin: 0;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.6;
  word-break: break-word;
}

.cu-info-content a:hover {
  color: var(--primary-blue);
}

/* social */
.cu-social-wrap {
  margin-top: 26px;
}

.cu-social-wrap h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.cu-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cu-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  transition: all 0.35s ease;
}

.cu-social-links a:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-main);
}

/* form */
.cu-input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-main);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cu-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.14);
}

.cu-input::placeholder {
  color: var(--text-muted);
}

select.cu-input {
  appearance: none;
  cursor: pointer;
}

.cu-textarea {
  min-height: 140px;
  resize: vertical;
}

.cu-submit-btn {
  border: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cu-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

/* responsive */
@media (max-width: 991.98px) {
  .cu-info-box,
  .cu-form-box {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .cu-info-box,
  .cu-form-box {
    padding: 22px;
    border-radius: 22px;
  }

  .cu-submit-btn {
    width: 100%;
  }
}


/* =========================
   NEWSLETTER SUBSCRIPTION
========================= */
.ns-subscribe-section {
  position: relative;
}

.ns-subscribe-wrap {
  position: relative;
  overflow: hidden;
  padding: 44px 38px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.08),
    rgba(37, 99, 235, 0.08)
  );
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.ns-subscribe-wrap::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.08);
  filter: blur(20px);
}

.ns-subscribe-wrap::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(20px);
}

.ns-subscribe-content,
.ns-subscribe-form-box {
  position: relative;
  z-index: 2;
}

.ns-subscribe-tag {
   display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.ns-subscribe-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 14px;
}

.ns-subscribe-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ns-subscribe-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 680px;
}

.ns-subscribe-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ns-subscribe-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
}

.ns-subscribe-points i {
  color: var(--primary-blue);
}

/* form box */
.ns-subscribe-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.ns-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ns-subscribe-input-wrap {
  position: relative;
}

.ns-subscribe-input-wrap i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-size: 1rem;
}

.ns-subscribe-input {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-main);
  padding: 14px 16px 14px 46px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ns-subscribe-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.14);
}

.ns-subscribe-input::placeholder {
  color: var(--text-muted);
}

.ns-subscribe-btn {
  border: none;
  min-height: 56px;
  border-radius: 16px;
  padding: 14px 24px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ns-subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.ns-subscribe-note {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

/* responsive */
@media (max-width: 991.98px) {
  .ns-subscribe-wrap {
    padding: 34px 26px;
  }
}

@media (max-width: 767.98px) {
  .ns-subscribe-wrap {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .ns-subscribe-form-box {
    padding: 18px;
    border-radius: 20px;
  }

  .ns-subscribe-btn {
    width: 100%;
  }
}


/* =========================
   GOOGLE MAP SECTION - UPGRADED
========================= */
.cu-map-section {
  position: relative;
}

.cu-map-heading {
  max-width: 760px;
  margin: 0 auto 30px;
}

.cu-map-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.cu-map-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
}

.cu-map-heading p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* wrapper */
.cu-map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  background: var(--bg-card);
}

.cu-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* overlay gradient */
.cu-map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 8, 22, 0.18),
    rgba(5, 8, 22, 0.02)
  );
  pointer-events: none;
}

/* info card */
.cu-map-info-card {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  width: 370px;
  max-width: calc(100% - 48px);
  padding: 24px;
  border-radius: 24px;
  background: rgba(5, 8, 22, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(37, 99, 235, 0.08);
  color: #fff;
}

.cu-map-info-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(225, 29, 72, 0.24),
    rgba(37, 99, 235, 0.24)
  );
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cu-map-info-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.cu-map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.cu-map-info-item i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow-main);
}

.cu-map-info-item span,
.cu-map-info-item a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  line-height: 1.6;
  margin-top: 6px;
}

.cu-map-info-item a:hover {
  color: #fff;
}

/* actions */
.cu-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cu-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.35s ease;
}

.cu-map-btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-main);
}

.cu-map-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
}

.cu-map-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cu-map-btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-3px);
}

/* responsive */
@media (max-width: 991.98px) {
  .cu-map-wrapper {
    height: 480px;
  }

  .cu-map-info-card {
    width: 340px;
  }
}

@media (max-width: 767.98px) {
  .cu-map-wrapper {
    height: 560px;
    border-radius: 22px;
  }

  .cu-map-info-card {
    top: auto;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
    padding: 18px;
    border-radius: 18px;
  }

  .cu-map-info-card h3 {
    font-size: 1.2rem;
  }

  .cu-map-actions {
    flex-direction: column;
  }

  .cu-map-btn {
    justify-content: center;
    width: 100%;
  }
}





/* =========================
   ABOUT PAGE SECTION V2
========================= */
.abt2-section {
  position: relative;
  overflow: hidden;
}

/* LEFT SIDE */
.abt2-visual {
  position: relative;
  min-height: 700px;
}

.abt2-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: abt2FloatShape 6s ease-in-out infinite;
}

.abt2-shape-one {
  width: 380px;
  height: 380px;
  left: 10px;
  top: 130px;
  background: rgba(225, 29, 72, 0.08);
}

.abt2-shape-two {
  width: 420px;
  height: 420px;
  left: 230px;
  bottom: 30px;
  background: rgba(37, 99, 235, 0.08);
  animation-delay: 0.8s;
}

.abt2-shape-three {
  width: 120px;
  height: 120px;
  top: 30px;
  right: 80px;
  background: rgba(37, 99, 235, 0.1);
  filter: blur(4px);
  animation-delay: 1.2s;
}

.abt2-traveler-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 360px;
  z-index: 3;
  animation: abt2FloatMain 4.5s ease-in-out infinite;
}

.abt2-traveler {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.14));
}

.abt2-circle {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  z-index: 4;
  border: 10px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.1);
}

.abt2-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(225, 29, 72, 0.06),
    rgba(37, 99, 235, 0.06)
  );
  pointer-events: none;
}

.abt2-circle-sm {
  width: 180px;
  height: 180px;
  top: 55px;
  left: 320px;
  animation: abt2FloatCircle 5s ease-in-out infinite;
}

.abt2-circle-lg {
  width: 360px;
  height: 360px;
  left: 230px;
  bottom: 35px;
  animation: abt2FloatCircle 5.5s ease-in-out infinite;
  animation-delay: 0.4s;
}

.abt2-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.abt2-circle:hover img {
  transform: scale(1.08);
}

/* RIGHT SIDE */
.abt2-content {
  position: relative;
  z-index: 2;
}

.abt2-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.abt2-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 18px;
}

.abt2-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt2-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 28px;
}

/* FEATURE LIST */
.abt2-feature-list {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.abt2-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.abt2-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-main);
  border-color: rgba(37, 99, 235, 0.16);
}

.abt2-feature-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  color: #fff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-main);
  transition: transform 0.35s ease;
}

.abt2-feature-card:hover .abt2-feature-icon {
  transform: scale(1.08) rotate(-5deg);
}

.abt2-feature-text h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-main);
}

.abt2-feature-text p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* BOTTOM */
.abt2-bottom-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.abt2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: var(--gradient-main);
  box-shadow: var(--shadow-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abt2-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.abt2-customer-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.abt2-avatar-group {
  display: flex;
  align-items: center;
}

.abt2-avatar-group img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.abt2-avatar-group img:first-child {
  margin-left: 0;
}

.abt2-customer-text {
  display: flex;
  flex-direction: column;
}

.abt2-customer-text strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt2-customer-text span {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
}

/* HORIZONTAL EXPERIENCE */
.abt2-experience-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.abt2-experience-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-main);
}

.abt2-exp-number {
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt2-exp-line {
  width: 2px;
  height: 58px;
  background: var(--gradient-main);
  border-radius: 999px;
}

.abt2-exp-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt2-exp-content span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.abt2-exp-content strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

/* ANIMATIONS */
@keyframes abt2FloatMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes abt2FloatCircle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes abt2FloatShape {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .abt2-visual {
    min-height: 620px;
  }

  .abt2-traveler-wrap {
    width: 300px;
  }

  .abt2-circle-sm {
    width: 150px;
    height: 150px;
    left: 260px;
  }

  .abt2-circle-lg {
    width: 300px;
    height: 300px;
    left: 190px;
  }
}

@media (max-width: 991.98px) {
  .abt2-visual {
    min-height: 560px;
    margin-bottom: 10px;
  }

  .abt2-traveler-wrap {
    width: 260px;
  }

  .abt2-circle-sm {
    left: 220px;
    top: 35px;
  }

  .abt2-circle-lg {
    left: 160px;
    bottom: 20px;
  }

  .abt2-content h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .abt2-exp-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 767.98px) {
  .abt2-visual {
    min-height: 470px;
  }

  .abt2-shape-one {
    width: 250px;
    height: 250px;
    left: 0;
    top: 120px;
  }

  .abt2-shape-two {
    width: 260px;
    height: 260px;
    left: 120px;
    bottom: 20px;
  }

  .abt2-shape-three {
    width: 80px;
    height: 80px;
    right: 20px;
    top: 20px;
  }

  .abt2-traveler-wrap {
    width: 190px;
  }

  .abt2-circle-sm {
    width: 115px;
    height: 115px;
    left: 145px;
    top: 25px;
    border-width: 7px;
  }

  .abt2-circle-lg {
    width: 220px;
    height: 220px;
    left: 95px;
    bottom: 18px;
    border-width: 7px;
  }

  .abt2-feature-card {
    padding: 18px;
    border-radius: 18px;
  }

  .abt2-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    font-size: 1.2rem;
  }

  .abt2-bottom-wrap {
    gap: 18px;
  }

  .abt2-btn {
    width: 100%;
  }

  .abt2-customer-box {
    width: 100%;
  }

  .abt2-experience-box {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .abt2-exp-number {
    font-size: 3rem;
  }

  .abt2-exp-line {
    height: 48px;
  }

  .abt2-exp-content strong {
    font-size: 1.15rem;
  }
}



/* =========================
   SERVICES GALLERY SECTION
========================= */
.srvx-section {
  position: relative;
  overflow: hidden;
  background: #0b6b74;
}

/* top heading */
.srvx-top-head {
  max-width: 760px;
  margin: 0 auto 34px;
}

.srvx-top-tag {
   display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.srvx-top-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.srvx-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.srvx-top-head p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 680px;
}

/* big panel */
.srvx-panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
}

.srvx-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.05), transparent 30%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.05), transparent 30%);
  pointer-events: none;
}

/* cards */
.srvx-card {
  display: block;
  text-decoration: none;
  background: #f7f9fb;
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  animation: srvxFloat 5s ease-in-out infinite;
}

.srvx-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 42px rgba(15, 23, 42, 0.14),
    0 0 18px rgba(225, 29, 72, 0.08),
    0 0 18px rgba(37, 99, 235, 0.08);
}

.srvx-card:nth-child(2n) {
  animation-delay: 0.2s;
}

.srvx-card:nth-child(3n) {
  animation-delay: 0.4s;
}

.srvx-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 180px;
}

.srvx-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

/* shine effect */
.srvx-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

.srvx-card:hover .srvx-img-wrap::before {
  animation: srvxShine 0.9s ease forwards;
}

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

.srvx-card-body {
  padding: 14px 8px 6px;
  text-align: center;
}

.srvx-card-body h4 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0b6b74;
  transition: color 0.3s ease;
}

.srvx-card-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5b6b7b;
}

.srvx-card:hover .srvx-card-body h4 {
  color: var(--primary-red);
}

/* bottom heading */
.srvx-bottom-head {
  margin-top: 30px;
}

.srvx-bottom-sub {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 600;
}

.srvx-bottom-head h3 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

/* animations */
@keyframes srvxShine {
  100% {
    left: 125%;
  }
}

@keyframes srvxFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* responsive */
@media (max-width: 991.98px) {
  .srvx-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .srvx-img-wrap {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .srvx-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .srvx-img-wrap {
    height: 220px;
  }

  .srvx-card {
    border-radius: 18px;
  }

  .srvx-card-body h4 {
    font-size: 1rem;
  }

  .srvx-bottom-head h3 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }
}

.srvx-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.08),
    rgba(37, 99, 235, 0.08)
  );
}
.srvx-panel {
  background: var(--bg-card); /* theme follow karega */
  border-radius: 34px;
  padding: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}
.srvx-top-head h2 {
  color: var(--text-main); /* ❌ #fff hata diya */
}

.srvx-top-head p {
  color: var(--text-muted);
}
.srvx-bottom-sub {
  color: var(--text-muted);
}

.srvx-bottom-head h3 {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.srvx-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(225, 29, 72, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}

.srvx-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(40px);
}




/* =========================
   FLEET PAGE SECTION
========================= */
.fpfleet-section {
  position: relative;
}

.fpfleet-heading {
  max-width: 820px;
  margin: 0 auto 36px;
}

.fpfleet-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.fpfleet-heading h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.18;
  color: var(--text-main);
}

.fpfleet-highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fpfleet-heading p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

/* grid */
.fpfleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* card */
.fpfleet-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fpfleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  border-color: rgba(37, 99, 235, 0.16);
}

.fpfleet-img-wrap {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(225, 29, 72, 0.05),
    rgba(37, 99, 235, 0.05)
  );
}

.fpfleet-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.18), rgba(5, 8, 22, 0.02));
}

.fpfleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.55s ease;
}

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

.fpfleet-card-body {
  padding: 24px;
}

.fpfleet-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.fpfleet-type-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.fpfleet-name {
  font-size: 1.28rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: var(--text-main);
}

.fpfleet-price {
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: var(--shadow-main);
}

.fpfleet-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fpfleet-features li {
  color: var(--text-muted);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 12px;
}

.fpfleet-features i {
  color: var(--primary-red);
  margin-right: 6px;
}

.fpfleet-btn-outline {
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--text-main);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 700;
  transition: 0.3s ease;
  background: transparent;
}

.fpfleet-btn-outline:hover {
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.fpfleet-badge-popular {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--gradient-main);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-main);
}

/* responsive */
@media (max-width: 991.98px) {
  .fpfleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .fpfleet-img-wrap {
    height: 235px;
  }
}

@media (max-width: 767.98px) {
  .fpfleet-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fpfleet-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .fpfleet-price {
    margin-top: 4px;
  }

  .fpfleet-name {
    font-size: 1.1rem;
  }

  .fpfleet-img-wrap {
    height: 220px;
  }

  .fpfleet-card {
    border-radius: 22px;
  }

  .fpfleet-card-body {
    padding: 20px;
  }
}



/* BLOG SECTION */
.kt-blog-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 32%),
    var(--bg-main);
}

.kt-blog-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}

.kt-blog-blur-1 {
  width: 280px;
  height: 280px;
  background: var(--primary-red);
  top: 40px;
  left: -90px;
}

.kt-blog-blur-2 {
  width: 320px;
  height: 320px;
  background: var(--primary-blue);
  right: -110px;
  top: 140px;
}

.kt-blog-section .container {
  position: relative;
  z-index: 2;
}

.kt-blog-head {
  max-width: 820px;
  margin: 0 auto 56px;
}

.kt-blog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  border: 1px solid var(--glass-border);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kt-blog-title {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 22px 0 14px;
  color: var(--text-main);
}

.kt-blog-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kt-blog-line {
  width: 105px;
  height: 4px;
  border-radius: 999px;
  margin: 0 auto 22px;
  background: var(--gradient-main);
}

.kt-blog-subtitle {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

.kt-blog-card {
  position: relative;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.kt-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-main);
  border-color: rgba(37, 99, 235, 0.18);
}

.kt-blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.04), rgba(37, 99, 235, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.kt-blog-card:hover::before {
  opacity: 1;
}

.kt-blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.kt-blog-img {
  display: block;
  overflow: hidden;
}

.kt-blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

.kt-blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.18), transparent 55%);
  pointer-events: none;
}

.kt-blog-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--gradient-main);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.20);
}

.kt-blog-content {
  padding: 24px 24px 26px;
}

.kt-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.kt-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1;
}

.kt-blog-meta i {
  font-size: 0.92rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kt-blog-card-title {
  margin: 0 0 14px;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.4;
}

.kt-blog-card-title a {
  color: var(--text-main);
  transition: color 0.3s ease;
}

.kt-blog-card:hover .kt-blog-card-title a {
  color: var(--primary-blue);
}

.kt-blog-text {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.kt-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.kt-blog-btn i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.kt-blog-card:hover .kt-blog-btn {
  color: var(--primary-red);
}

.kt-blog-card:hover .kt-blog-btn i {
  transform: translateX(4px);
  background: var(--gradient-main);
  color: #fff;
}

@media (max-width: 991.98px) {
  .kt-blog-title {
    font-size: 2.5rem;
  }

  .kt-blog-img img {
    height: 230px;
  }
}

@media (max-width: 767.98px) {
  .kt-blog-section {
    padding: 80px 0;
  }

  .kt-blog-head {
    margin-bottom: 42px;
  }

  .kt-blog-title {
    font-size: 2rem;
  }

  .kt-blog-subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .kt-blog-content {
    padding: 20px 18px 22px;
  }

  .kt-blog-card-title {
    font-size: 1.2rem;
  }

  .kt-blog-img img {
    height: 220px;
  }

  .kt-blog-meta {
    gap: 10px 14px;
  }
}
/* IMAGE SHINE EFFECT */

.kt-blog-img-wrap::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transform:skewX(-25deg);
  transition:0.8s;
  z-index:2;
}

.kt-blog-card:hover .kt-blog-img-wrap::before{
  left:120%;
}
.kt-blog-img-wrap{
position:relative;
overflow:hidden;
}





/* blog destils */


/* BLOG DETAILS PAGE */
.kt-blog-details-hero{
  position: relative;
  overflow: hidden;
  padding: 120px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 30%),
    var(--bg-main);
}

.kt-blog-details-top{
  max-width: 980px;
  margin: 0 auto 42px;
}

.kt-blog-details-title{
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 22px 0 18px;
  color: var(--text-main);
}

.kt-blog-details-title span{
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kt-blog-details-meta{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px 18px;
  margin-bottom:22px;
}

.kt-blog-details-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background: var(--bg-card);
  border:1px solid var(--border-color);
  color: var(--text-muted);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kt-blog-details-meta i{
  background: var(--gradient-main);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.kt-blog-details-intro{
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--text-muted);
}

.kt-blog-featured-image{
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-main);
}

.kt-blog-featured-image img{
  width:100%;
  height:560px;
  object-fit:cover;
}

.kt-blog-featured-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.18), transparent 45%);
  pointer-events:none;
}

.kt-blog-details-content{
  background: var(--bg-main);
}

.kt-article-wrapper{
  position: relative;
}

.kt-article-block{
  position: relative;
  margin-bottom: 34px;
  padding: 34px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.kt-article-block::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(225,29,72,0.04), rgba(37,99,235,0.05));
  opacity: 0;
  transition: 0.35s ease;
  pointer-events:none;
}

.kt-article-block:hover::before{
  opacity: 1;
}

.kt-article-heading{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.kt-article-count{
  min-width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  font-size:1.05rem;
  font-weight:800;
  color:#fff;
  background: var(--gradient-main);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.18);
}

.kt-article-heading h2{
  flex:1;
  margin:0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
}

.kt-article-block p{
  margin: 0 0 22px;
  font-size: 1.04rem;
  line-height: 1.95;
  color: var(--text-muted);
}

.kt-article-image{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.kt-article-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition: transform 0.7s ease;
}

.kt-article-block:hover .kt-article-image img{
  transform: scale(1.05);
}

.kt-article-image::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:55%;
  height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.9s;
  z-index:2;
}

.kt-article-block:hover .kt-article-image::before{
  left:130%;
}

.kt-article-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.12), transparent 50%);
  pointer-events:none;
}

.kt-blog-cta-box{
  margin-top: 24px;
  padding: 42px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(37, 99, 235, 0.14));
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-main);
}

.kt-blog-cta-box h3{
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: var(--text-main);
}

.kt-blog-cta-box p{
  max-width: 700px;
  margin: 0 auto 22px;
  color: var(--text-muted);
  line-height: 1.9;
}

.kt-blog-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--gradient-main);
  color:#fff;
  font-weight:700;
  box-shadow: var(--shadow-main);
  transition: 0.35s ease;
}

.kt-blog-cta-btn:hover{
  transform: translateY(-4px);
  color:#fff;
}

@media (max-width: 991.98px){
  .kt-blog-featured-image img{
    height: 430px;
  }

  .kt-article-image img{
    height: 320px;
  }

  .kt-article-block{
    padding: 26px;
  }
}

@media (max-width: 767.98px){
  .kt-blog-details-hero{
    padding: 95px 0 50px;
  }

  .kt-blog-details-title{
    font-size: 2rem;
  }

  .kt-blog-details-intro{
    font-size: 1rem;
    line-height: 1.85;
  }

  .kt-blog-featured-image img{
    height: 260px;
  }

  .kt-article-block{
    padding: 20px;
    border-radius: 22px;
  }

  .kt-article-heading{
    gap: 12px;
  }

  .kt-article-count{
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .kt-article-heading h2{
    font-size: 1.2rem;
  }

  .kt-article-block p{
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .kt-article-image img{
    height: 220px;
  }

  .kt-blog-cta-box{
    padding: 28px 18px;
  }
}
/* BLOG DETAILS PAGE */

.kt-blog-featured img{
width:100%;
height:520px;
object-fit:cover;
border-radius:20px;
box-shadow:var(--shadow-main);
}

.kt-blog-meta{
display:flex;
justify-content:center;
gap:20px;
margin-top:15px;
color:var(--text-muted);
}

.kt-blog-meta i{
color:var(--primary-red);
}

.kt-article{
background:var(--bg-card);
padding:40px;
border-radius:25px;
box-shadow:var(--shadow-soft);
}

.kt-article h2{
margin-top:35px;
font-weight:700;
}

.kt-article p{
line-height:1.8;
color:var(--text-muted);
}

.kt-article-img{
margin:25px 0;
overflow:hidden;
border-radius:20px;
}

.kt-article-img img{
width:100%;
height:420px;
object-fit:cover;
transition:0.6s;
}

.kt-article-img:hover img{
transform:scale(1.05);
}


/* PAGE HERO SECTION */
.kt-page-hero{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-main);
}

.kt-page-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kt-page-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.kt-page-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.28) 45%, rgba(15, 23, 42, 0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.38) 100%);
}

.kt-page-hero .container{
  position: relative;
  z-index: 3;
}

.kt-page-hero-content{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 0 90px;
}

.kt-page-hero-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  margin-bottom: 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kt-page-hero-content h1{
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.kt-page-hero-content p{
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

@media (max-width: 991.98px){
  .kt-page-hero{
    min-height: 430px;
  }

  .kt-page-hero-content{
    padding: 110px 0 75px;
  }
}

@media (max-width: 767.98px){
  .kt-page-hero{
    min-height: 360px;
  }

  .kt-page-hero-content{
    padding: 95px 0 60px;
  }

  .kt-page-hero-tag{
    padding: 8px 18px;
    font-size: 0.76rem;
  }

  .kt-page-hero-content p{
    font-size: 1rem;
  }
}









/* DESTINATION EXTRA SECTIONS */
.kt-destination-categories{
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.kt-destination-head{
  max-width: 820px;
  margin: 0 auto 10px;
}

.kt-destination-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.kt-destination-head h2{
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 20px 0 14px;
  color: var(--text-main);
}

.kt-destination-head h2 span{
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kt-destination-head p{
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.kt-destination-type-card{
  display: block;
  height: 100%;
  padding: 30px 24px;
  border-radius: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.kt-destination-type-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-main);
}

.kt-destination-type-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-main);
}

.kt-destination-type-card h4{
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.kt-destination-type-card p{
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.kt-all-destinations{
  background: var(--bg-main);
}

.kt-destination-card{
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: 0.35s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.kt-destination-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-main);
}

.kt-destination-card-img{
  overflow: hidden;
  position: relative;
}

.kt-destination-card-img img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.kt-destination-card-body{
  padding: 24px 22px 24px;
}

.kt-destination-label{
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-red);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.kt-destination-card-body h3{
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.kt-destination-card-body p{
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

.kt-destination-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-blue);
  transition: 0.3s ease;
}

.kt-destination-btn:hover{
  color: var(--primary-red);
}

@media (max-width: 767.98px){
  .kt-destination-type-card{
    padding: 24px 18px;
    border-radius: 22px;
  }

  .kt-destination-card-img img{
    height: 220px;
  }

  .kt-destination-card-body{
    padding: 20px 18px 20px;
  }

  .kt-destination-card-body h3{
    font-size: 1.25rem;
  }
}



/* tour page */
/* TOUR HERO */
.kt-tour-hero{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-main);
}

.kt-tour-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kt-tour-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kt-tour-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.30), rgba(15, 23, 42, 0.62)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
}

.kt-tour-hero .container{
  position: relative;
  z-index: 3;
}

.kt-tour-hero-content{
  text-align: center;
  color: #fff;
  padding: 120px 0 90px;
}

.kt-tour-badge-circle{
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  animation: ktSpin 14s linear infinite;
}

.kt-tour-badge-circle span{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: 50%;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 20px;
}

.kt-tour-badge-inner{
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-main);
  animation: ktSpinReverse 14s linear infinite;
}

.kt-tour-badge-inner i{
  font-size: 2rem;
  color: #fff;
}

.kt-tour-hero-content h1{
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

.kt-tour-hero-content p{
  font-size: clamp(1rem, 2vw, 2rem);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.96);
  margin-bottom: 28px;
}

.kt-tour-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-main);
  transition: 0.35s ease;
}

.kt-tour-hero-btn:hover{
  transform: translateY(-4px);
  color: #fff;
}

/* PACKAGES SECTION */
.kt-tour-packages{
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 32%),
    var(--bg-main);
  position: relative;
  overflow: hidden;
}

.kt-tour-packages-head{
  max-width: 760px;
  margin: 0 auto;
}

.kt-tour-packages-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--gradient-soft);
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
}

.kt-tour-packages-head h2{
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-main);
}

.kt-tour-packages-head h2 span{
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kt-tour-packages-head p{
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.kt-package-card{
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.35s ease;
  height: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.kt-package-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-main);
}

.kt-package-image{
  position: relative;
  overflow: hidden;
}

.kt-package-image img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.kt-package-card:hover .kt-package-image img{
  transform: scale(1.08);
}

.kt-package-days{
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.kt-package-image-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 20px 18px;
  background: linear-gradient(to top, rgba(5, 19, 28, 0.88), rgba(5, 19, 28, 0.15));
}

.kt-package-image-overlay h4{
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.kt-package-body{
  padding: 22px 20px 22px;
}

.kt-package-price-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.kt-package-price-row h3{
  margin: 0 0 2px;
  color: var(--primary-red);
  font-size: 1.9rem;
  font-weight: 800;
}

.kt-package-price-row span{
  color: var(--text-muted);
  font-size: 0.9rem;
}

.kt-package-rating{
  text-align: right;
}

.kt-package-rating small{
  display: block;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.kt-package-rating i{
  color: #ffb31a;
  font-size: 0.88rem;
}

.kt-package-body p{
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.kt-package-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--gradient-soft);
  color: var(--text-main);
  font-weight: 700;
  transition: 0.35s ease;
}

.kt-package-btn:hover{
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
}

.kt-package-item{
  display: none;
}

.kt-package-item.kt-active-page{
  display: block;
}

.kt-package-pagination{
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.kt-page-nav,
.kt-page-link{
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text-main);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: 0.3s ease;
}

.kt-page-link.active,
.kt-page-nav:hover,
.kt-page-link:hover{
  background: var(--gradient-main);
  color: #fff;
  border-color: transparent;
}

.kt-page-nav:disabled{
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

@keyframes ktSpin{
  from{transform: rotate(0deg);}
  to{transform: rotate(360deg);}
}

@keyframes ktSpinReverse{
  from{transform: rotate(360deg);}
  to{transform: rotate(0deg);}
}

@media (max-width: 991.98px){
  .kt-tour-hero{
    min-height: 560px;
  }

  .kt-package-image img{
    height: 250px;
  }
}

@media (max-width: 767.98px){
  .kt-tour-hero{
    min-height: 500px;
  }

  .kt-tour-badge-circle{
    width: 120px;
    height: 120px;
  }

  .kt-tour-badge-inner{
    inset: 18px;
  }

  .kt-tour-hero-content{
    padding: 100px 0 70px;
  }

  .kt-package-image img{
    height: 220px;
  }

  .kt-package-price-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .kt-package-rating{
    text-align: left;
  }
}


/* MOBILE MENU FAST OPEN */
@media (max-width: 991.98px){

  .navbar-collapse{
    transition: none !important;
  }

  .collapsing{
    transition: none !important;
    height: auto !important;
  }

}
.navbar-toggler{
  transition: none !important;
}
@media (max-width: 991.98px) {
  .custom-navbar {
    padding: 7px 0;
  }

  .custom-navbar.navbar-shrink {
    padding: 5px 0;
  }

  .brand-logo {
    width: 64px;
  }

  .custom-navbar.navbar-shrink .brand-logo {
    width: 58px;
  }

  .navbar-collapse {
    display: none;
    margin-top: 12px;
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  }

  .navbar-collapse.show {
    display: block;
  }

  [data-theme="dark"] .navbar-collapse {
    background: rgba(2, 6, 23, 0.94);
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
    font-size: 1rem;
  }

  .navbar .nav-link::after {
    left: 0;
    bottom: 4px;
  }

  .navbar .nav-link:hover::after,
  .navbar .nav-link.active::after {
    width: 42px;
  }

  .theme-toggle-btn {
    width: 40px;
    height: 40px;
  }

  .btn-theme {
    padding: 10px 18px;
  }

  .collapsing {
    height: auto !important;
    overflow: hidden !important;
    transition: none !important;
  }
}




/* new navbar */
/* =========================
   NAVBAR
========================= */
.custom-navbar {
  width: 100%;
  background: rgba(8, 10, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 999;
}

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

.navbar-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}

.brand-logo {
  width: 96px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e11d48, #3b82f6);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 24px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  padding: 11px 22px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #e11d48, #3b82f6);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.22);
  transition: all 0.3s ease;
}

.btn-theme:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* mobile toggle */
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  display: block;
  transition: 0.3s ease;
}

/* mobile menu */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9998;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88%);
  height: 100vh;
  background: rgba(10, 14, 28, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.24);
  z-index: 9999;
  padding: 20px 18px 24px;
  transition: right 0.35s ease;
  overflow-y: auto;
}

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

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobile-brand-logo {
  width: 82px;
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-links .nav-link {
  width: 100%;
  padding: 14px 2px;
  font-size: 1rem;
}

.mobile-nav-links .nav-link::after {
  left: 2px;
  bottom: 10px;
}

.mobile-nav-links .nav-link:hover::after,
.mobile-nav-links .nav-link.active::after {
  width: 42px;
}

.mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.mobile-book-btn {
  flex: 1;
}

/* responsive */
@media (max-width: 991.98px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 78px;
  }
}

@media (min-width: 992px) {
  .mobile-nav,
  .mobile-nav-overlay {
    display: none !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

.main-header {
  width: 100%;
  overflow-x: clip;
}



/* hero */
/* =========================
   HERO RESPONSIVE FIX
========================= */

.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-section .container,
.hero-section .row {
  min-width: 0;
}

.hero-content,
.hero-visual {
  width: 100%;
  min-width: 0;
}

.hero-title,
.hero-text,
.hero-badge,
.hero-actions,
.hero-stats {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* laptop / tablet */
@media (max-width: 1199.98px) {
  .hero-visual {
    min-height: 460px;
  }

  .hero-circle {
    width: 380px;
    height: 380px;
  }

  .hero-car {
    width: min(100%, 540px);
  }

  .glass-card-1 {
    top: 70px;
    left: 10px;
  }

  .glass-card-2 {
    bottom: 70px;
    right: 10px;
  }
}

/* tablet */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 120px;
    min-height: auto;
  }

  .hero-section .row {
    min-height: auto !important;
  }

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

  .hero-badge {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7vw, 3.6rem);
    line-height: 1.12;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    min-width: 200px;
  }

  .hero-stats {
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 10px;
  }

  .hero-circle {
    width: 320px;
    height: 320px;
  }

  .hero-car {
    width: min(100%, 500px);
  }

  .glass-card {
    padding: 12px 14px;
    font-size: 0.92rem;
    max-width: 190px;
  }

  .glass-card-1 {
    top: 50px;
    left: 10px;
  }

  .glass-card-2 {
    bottom: 45px;
    right: 10px;
  }

  .scroll-indicator {
    display: none;
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

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

  .hero-badge {
    font-size: 0.88rem;
    padding: 9px 14px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    margin-top: 22px;
  }

  .hero-stats .col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .hero-stats .stat-card {
    border-radius: 16px;
    padding: 16px 10px;
  }

  .stat-card h3 {
    font-size: 1.1rem;
  }

  .stat-card p {
    font-size: 0.8rem;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 6px;
  }

  .hero-circle {
    width: 240px;
    height: 240px;
    filter: blur(6px);
  }

  .hero-car {
    width: 100%;
    max-width: 100%;
  }

  .glass-card {
    max-width: 150px;
    padding: 10px 12px;
    border-radius: 14px;
    gap: 8px;
    font-size: 0.8rem;
  }

  .glass-card i {
    font-size: 0.9rem;
  }

  .glass-card-1 {
    top: 10px;
    left: 0;
  }

  .glass-card-2 {
    bottom: 10px;
    right: 0;
  }
}

/* extra small mobile */
@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .hero-stats {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }

  .hero-stats .col-4 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .hero-stats .stat-card {
    padding: 14px 8px;
  }

  .stat-card h3 {
    font-size: 1rem;
  }

  .stat-card p {
    font-size: 0.74rem;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-circle {
    width: 210px;
    height: 210px;
  }

  .glass-card {
    position: static;
    max-width: 100%;
    width: fit-content;
    margin: 10px auto 0;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
  }
}
.hero-row {
  min-height: 100vh;
}

@media (max-width: 991.98px) {
  .hero-row {
    min-height: auto;
  }
}


/* blog section */
.kt-blog-section .row {
  display: flex;
  flex-wrap: wrap;
}

.kt-blog-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

.kt-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

.kt-blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.kt-blog-img {
  display: block;
  width: 100%;
  height: 260px;
}

.kt-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kt-blog-card:hover .kt-blog-img img {
  transform: scale(1.06);
}

.kt-blog-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  z-index: 2;
}

.kt-blog-content {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kt-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  color: #64748b;
  font-size: 0.95rem;
}

.kt-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.kt-blog-meta i {
  color: #a855f7;
}

.kt-blog-card-title {
  font-size: 1.7rem;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 14px;
}

.kt-blog-card-title a {
  color: #0f172a;
  text-decoration: none;
}

.kt-blog-text {
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.kt-blog-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111827;
  font-weight: 700;
}

.kt-blog-btn i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9a8d4, #60a5fa);
  color: #fff;
}

@media (max-width: 991.98px) {
  .kt-blog-img {
    height: 240px;
  }

  .kt-blog-card-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 575.98px) {
  .kt-blog-content {
    padding: 20px;
  }

  .kt-blog-img {
    height: 220px;
  }

  .kt-blog-card-title {
    font-size: 1.28rem;
  }

  .kt-blog-meta {
    gap: 10px;
    font-size: 0.88rem;
  }
}
