:root {
  --themeColor: #F9B610;
  --linearGradient1: #F9B610;
  --linearGradient2: #F8860C;
  --primaryColor: #0F3250;
  --linearColor1: #066567;
  --linearColor2: #023857;
  --blackColor: #000;
  --whiteColor: #fff;
  --textcolor: #000;
  --textLightColor: rgba(232, 232, 232, 0.85);
  --gradientTheme: linear-gradient(135deg, #F9B610 0%, #F8860C 100%);
  --gradientPrimary: linear-gradient(135deg, #066567 0%, #023857 100%);
}

/* CUSTOM CSS HERE */
* {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}


body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--whiteColor) !important;
}

/* Custom Scrollbar */
.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

/* FONT SIZE */

.font-36 {
  font-size: clamp(1.5rem, 0.5625rem + 3vw, 2.25rem) !important;
}

.font-30 {
  font-size: 30px !important;
}

.font-24 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem) !important;
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem) !important;
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-13 {
  font-size: clamp(0.6875rem, 0.5313rem + 0.5vw, 0.8125rem);
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) !important;
}

.font-10 {
  font-size: 10px;
}

.max-w-100 {
  max-width: 100% !important;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.secondaryColor {
  color: var(--secondaryColor);
}

.textColor {
  color: var(--textcolor);
}

.textLightColor {
  color: var(--textLightColor);
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-28 {
  line-height: 28px !important;
}


.line-height-22 {
  line-height: 22px !important;
}


.line-height-20 {
  line-height: 20px !important;
}

.cursor-pointer {
  cursor: pointer;
}


/* ---------------- NAVBAR GLOBAL ---------------- */
/* Top Header */
.top-header {
  background: var(--gradientPrimary);
  padding: clamp(0.5rem, 0.4rem + 0.4vw, 0.825rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes slideText {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.top-header-banner {
  animation: slideText 40s linear infinite;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.top-header-banner span {
  display: inline-block;
  flex-shrink: 0;
}

/* Navbar  */
.navbar-container {
  width: 100%;
  background: var(--whiteColor);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1040;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--gradientTheme);
  overflow: visible;
}

.nav-logo img {
  transition: all 0.3s ease;
  height: clamp(50px, 4vw, 70px);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-toggle {
  width: 1.5rem;
  height: 1.125rem;
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  width: 100%;
  height: 0.1875rem;
  background: var(--primaryColor);
  border-radius: 0.125rem;
  transition: all 0.4s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.nav-menu {
  gap: clamp(0.5rem, 0.3rem + 1vw, 1.5rem);
  overflow: visible;
}

@media (max-width: 991px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--whiteColor);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu.active {
    max-height: 500px;
    opacity: 1;
  }
}

.nav-link-item {
  color: var(--primaryColor);
  text-decoration: none;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--gradientTheme);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--themeColor);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gradientTheme);
  transition: width 0.3s ease;
}

.dropdown-toggle:hover::after,
.dropdown-toggle.active::after {
  width: 100%;
}

.dropdown-arrow {
  stroke: var(--themeColor);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle:focus,
.dropdown-toggle:focus-visible,
.dropdown-toggle.show {
  outline: none !important;
  box-shadow: none !important;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  stroke: var(--primaryColor);
  transition: transform 0.3s ease, stroke 0.3s ease;
  flex-shrink: 0;
}

.dropdown-toggle:hover .dropdown-arrow {
  stroke: var(--themeColor);
}

.dropdown-toggle.active .dropdown-arrow {
  stroke: var(--themeColor);
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-menu {
  .dropdown-menu {
    background: var(--whiteColor);
    /* border: 2px solid var(--gradientTheme); */
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(249, 182, 16, 0.25), 0 0 0 1px rgba(249, 182, 16, 0.1);
    min-width: 240px;
    margin-top: 0.75rem;
  }


  .dropdown-item {
    color: var(--primaryColor);
    font-size: 14px;
    font-weight: 500;
    padding: 0.575rem 1rem;
    transition: all 0.3s ease;
    position: relative;
  }

  .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--gradientTheme);
    border-radius: 2px;
    transition: height 0.3s ease;
  }

  .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(249, 182, 16, 0.12) 0%, rgba(248, 134, 12, 0.08) 100%);
    color: var(--themeColor);
    border-left-color: var(--gradientTheme);
    padding-left: 1rem;
  }

  .dropdown-item:hover::before {
    height: 100%;
  }

  .dropdown-item:active {
    background: rgba(249, 182, 16, 0.15);
  }

}

.nav-btn {
  border-radius: 8px;
  background: linear-gradient(135deg, #F9B610 0%, #F8860C 50%, #F9B610 100%);
  background-size: 200% 200%;
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(249, 182, 16, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: gradientShift 3s ease infinite;
}

.cursor-pointer {
  cursor: pointer;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.nav-btn svg {
  width: clamp(16px, 1.2vw, 20px);
  height: clamp(16px, 1.2vw, 20px);
  stroke: var(--whiteColor);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.nav-btn span {
  white-space: nowrap;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.nav-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(249, 182, 16, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-btn:active {
  transform: translateY(-2px) scale(0.98);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a1f2e 0%, #0d2a3d 50%, #0a1f2e 100%);
  color: var(--textLightColor);
  padding: clamp(3.75rem, 3rem + 3vw, 4rem) 0 10px;
  margin-top: clamp(3rem, 2rem + 3vw, 5rem);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradientTheme);
  opacity: 0.8;
  box-shadow: 0 0 20px rgba(249, 182, 16, 0.5);
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(249, 182, 16, 0.3) 50%, transparent 100%);
}

.footer-logo {
  width: clamp(8.75rem, 8rem + 3vw, 10rem);
  transition: all 0.3s ease;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(249, 182, 16, 0.2));
}

.footer-logo:hover {
  transform: scale(1.08) translateY(-2px);
  filter: brightness(1.2) drop-shadow(0 4px 12px rgba(249, 182, 16, 0.4));
}

.footer-desc {
  color: rgba(232, 232, 232, 0.75);
  line-height: 1.7;
  font-size: clamp(0.875rem, 0.8rem + 0.2vw, 1rem);
}

.footer-title {
  margin-bottom: clamp(1.25rem, 1rem + 1vw, 1.25rem);
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: "";
  width: clamp(2.5rem, 2rem + 2vw, 3.125rem);
  height: 3px;
  background: var(--gradientTheme);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(249, 182, 16, 0.4);
}

.footer-links {
  gap: 12px;
}

.footer-link {
  color: rgba(232, 232, 232, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-link::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--themeColor);
  transition: all 0.3s ease;
  font-weight: bold;
}

.footer-link:hover {
  color: var(--themeColor);
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-link:hover::before {
  left: 0;
  opacity: 1;
}

.footer-icon {
  width: clamp(2.5rem, 2.25rem + 1vw, 2.8rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 2.8rem);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(249, 182, 16, 0.08);
  border: 1.5px solid rgba(249, 182, 16, 0.3);
  backdrop-filter: blur(10px);
  aspect-ratio: 1;
}

.footer-icon img {
  filter: brightness(0) invert(1);
  width: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  height: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: var(--gradientTheme);
  border-color: var(--themeColor);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px rgba(249, 182, 16, 0.4);
}

.footer-icon:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(249, 182, 16, 0.2) 20%, rgba(249, 182, 16, 0.2) 80%, transparent 100%);
}

.footer-bottom {
  border-top: 1px solid rgba(249, 182, 16, 0.1);
}

.footer-info-box {
  border: 1px solid rgba(249, 182, 16, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.08) 0%, rgba(248, 134, 12, 0.04) 100%);
  transition: all 0.3s ease;
  min-width: 250px;
  color: var(--textLightColor);
}

.footer-info-box:hover {
  border-color: var(--themeColor);
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.15) 0%, rgba(248, 134, 12, 0.08) 100%);
  box-shadow: 0 8px 24px rgba(249, 182, 16, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 24px;
    margin-top: 0;
  }


  .nav-link-item::after {
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
  }

  .nav-link-item:hover,
  .nav-link-item.active {
    background: transparent;
  }

  .nav-link-item:hover::after,
  .nav-link-item.active::after {
    width: 100%;
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-btn {
    margin-left: clamp(0.5rem, 0.3rem + 1vw, 1.5rem);
  }
}

@media (max-width: 991px) {
  .nav-menu {
    align-items: flex-start;
  }
}



/* Logos Section */
.logos-section {
  background: var(--whiteColor);
  border-top: 2px solid var(--gradientTheme);
  border-bottom: 2px solid var(--gradientTheme);
  padding: clamp(2.5rem, 2rem + 2vw, 3.5rem) 0;
}

.logos-wrapper {
  overflow: hidden;
}

.logos-track {
  animation: slideLogos 20s linear infinite;
  width: fit-content;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  min-width: clamp(120px, 10vw, 180px);
  height: clamp(60px, 5vw, 120px);
  background: var(--whiteColor);
  border: 1px solid var(--themeColor);
  border-radius: 10px;
  padding: 6px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.08) 0%, rgba(248, 134, 12, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.logo-item:hover::before {
  opacity: 1;
}

.logo-item:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 6px 25px rgba(249, 182, 16, 0.25);
  border: 1px solid var(--themeColor);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  z-index: 1;
}

.logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .logos-section {
    padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem) 0;
  }

  .logo-item {
    min-width: clamp(100px, 8vw, 140px);
    height: clamp(70px, 6vw, 100px);
  }
}


/* Corporate Travel Section */
.corporate-travel {
  background: linear-gradient(135deg, #2d4a6f 0%, #1f3a52 50%, #2d4a6f 100%);
}

.corporate-travel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249, 182, 16, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
}

.corporate-travel::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 182, 16, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 30s ease-in-out infinite reverse;
}

.corporate-content {
  z-index: 2;
}

.corporate-label {
  color: var(--themeColor);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.corporate-title {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: clamp(1.875rem, 1.6725rem + 1.0127vw, 2.875rem);
}

.corporate-image-wrapper {
  z-index: 2;
}

.corporate-image {
  width: clamp(280px, 70vw, 380px);
  height: clamp(240px, 60vw, 320px);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(249, 182, 16, 0.2);
  border: 3px solid var(--themeColor);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.corporate-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.15) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.corporate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.corporate-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(249, 182, 16, 0.3);
}

.corporate-image:hover img {
  transform: scale(1.08);
}


/* Primary Button Base Class - Rectangular Shape */
.primary-button {
  padding: 10px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible;
  color: var(--whiteColor);
  background-color: var(--themeColor);
  box-shadow: 0 8px 25px rgb(248 177 17 / 44%);
}

.arrow-icon {
  z-index: 1;
  animation: neonArrowPulse 1.5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px #b66900;
  border-radius: 10px;
}

.primary-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(249, 182, 16, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}


.primary-button:hover .arrow-icon {
  transform: scale(1.1);
}

.primary-button:active .arrow-icon {
  transform: scale(0.95);
}

.arrow-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--linearGradient2);
  stroke-width: 2.5;
}

@keyframes neonArrowPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}


/* <!-- Rental Fleet Section --> */
.rental-fleet-premium {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 50%, #f0f4f8 100%);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.fleet-label {
  letter-spacing: 2px;
}


/* Fleet Vehicle Card */
.fleet-vehicle-card-premium {
  background: linear-gradient(135deg, var(--linearGradient1) 0%, var(--linearGradient2) 50%, var(--linearGradient1) 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(249, 182, 16, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.fleet-vehicle-card-premium:hover {
  transform: translateY(-16px);
  box-shadow: 0 20px 60px rgba(249, 182, 16, 0.5);
}

.fleet-card-image {
  width: 100%;
  height: 200px;
  padding: 12px;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.fleet-vehicle-card-premium:hover .fleet-card-image img {
  transform: scale(1.08);
}

.fleet-card-header {
  padding: 1.5rem 1.5rem 0.5rem;
}

.fleet-card-label {
  color: var(--whiteColor);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fleet-card-sublabel {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fleet-card-features {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
}

.feature-item {
  color: var(--whiteColor);
}

.feature-item i {
  opacity: 0.95;
  transition: all 0.3s ease;
}

.fleet-vehicle-card-premium:hover .feature-item i {
  transform: scale(1.1);
}

.fleet-card-btn {
  padding: 14px 24px;
  border-radius: 50px;
  background: var(--whiteColor);
  color: var(--linearGradient2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fleet-card-btn i {
  transition: all 0.3s ease;
}

.fleet-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.fleet-card-btn:hover i {
  transform: translateX(3px);
}

.fleet-card-btn:active {
  transform: translateY(-1px);
}

/* Fleet Card Arrow Button */
.fleet-card-arrow-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--themeColor);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-decoration: none !important;
}

.fleet-card-arrow-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(249, 182, 16, 0.4);
}

.fleet-card-arrow-btn svg {
  transition: transform 0.3s ease;
}

.fleet-card-arrow-btn:hover svg {
  transform: translateX(2px);
}


/* Top Travel Destinations Section */
.destinations-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
}

.destination-card {
  border-radius: clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
  height: clamp(16rem, 14rem + 8vw, 20rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.destination-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 48px rgba(249, 182, 16, 0.35);
}

.destination-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
}

.destination-image img {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destination-card:hover .destination-image img {
  transform: scale(1.15);
}

.destination-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.85) 100%);
  transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(180deg, rgba(249, 182, 16, 0.15) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.destination-content {
  z-index: 2;
  transition: all 0.3s ease;
}

.destination-card:hover .destination-content {
  transform: translateY(-8px);
}

.destination-icon {
  top: clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
  right: clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
  width: clamp(2.25rem, 2rem + 1vw, 2.75rem);
  height: clamp(2.25rem, 2rem + 1vw, 2.75rem);
  background: rgba(249, 182, 16, 0.95);
  border-radius: 50%;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 16px rgba(249, 182, 16, 0.4);
}

.destination-icon svg {
  stroke: var(--whiteColor);
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-icon {
  background: var(--gradientTheme);
  transform: rotate(45deg) scale(1.15);
  box-shadow: 0 2px 18px rgba(249, 182, 16, 0.6);
}

.destination-card:hover .destination-icon svg {
  transform: rotate(-45deg);
}

/* Blogs & Travel Tips Section - Vertical Polaroid Cards */
.blogs-section {
  background: var(--whiteColor);
}

.blog-polaroid-card {
  background: #f0f9ff;
  border-radius: clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
  padding: clamp(1rem, 0.8rem + 0.8vw, 1.25rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.2);
  cursor: pointer;
}

.blog-polaroid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
}

/* Card Theme 2 - Green */
.card-theme-2 {
  background: #f0fdf4;
  border-color: rgba(34, 197, 94, 0.2);
}

.card-theme-2:hover {
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.25);
}

/* Card Theme 3 - Purple */
.card-theme-3 {
  background: #faf5ff;
  border-color: rgba(168, 85, 247, 0.2);
}

.card-theme-3:hover {
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.25);
}

/* Card Theme 4 - Orange */
.card-theme-4 {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.2);
}

.card-theme-4:hover {
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.25);
}

/* Card Theme 5 - Pink */
.card-theme-5 {
  background: #fdf2f8;
  border-color: rgba(236, 72, 153, 0.2);
}

.card-theme-5:hover {
  box-shadow: 0 12px 35px rgba(236, 72, 153, 0.25);
}

/* Card Theme 6 - Cyan */
.card-theme-6 {
  background: #ecfeff;
  border-color: rgba(6, 182, 212, 0.2);
}

.card-theme-6:hover {
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.25);
}

.polaroid-thumbnail {
  border-radius: clamp(0.5rem, 0.4rem + 0.4vw, 0.75rem);
  height: clamp(6.25rem, 5.0854rem + 5.8228vw, 12rem);
}

.polaroid-thumbnail img {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-polaroid-card:hover .polaroid-thumbnail img {
  transform: scale(1.1);
}

.polaroid-details {
  padding: 0.5rem 0;
}

.polaroid-heading {
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8rem;
}

.polaroid-date {
  color: rgba(0, 0, 0, 0.6);
}

/* Polaroid Buttons */
.polaroid-btn {
  background: rgba(59, 130, 246, 0.9);
  color: var(--whiteColor);
  padding: clamp(0.4375rem, 0.3995rem + 0.1899vw, 0.625rem) clamp(1.25rem, 1.0981rem + 0.7595vw, 2rem);
  border-radius: 2rem;
  transition: all 0.3s ease;
  width: auto;
  display: inline-block;
}

.polaroid-btn:hover {
  background: rgb(59, 130, 246);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.btn-theme-2 {
  background: rgba(34, 197, 94, 0.9);
}

.btn-theme-2:hover {
  background: rgb(34, 197, 94);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.btn-theme-3 {
  background: rgba(168, 85, 247, 0.9);
}

.btn-theme-3:hover {
  background: rgb(168, 85, 247);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.4);
}

.btn-theme-4 {
  background: rgba(249, 115, 22, 0.9);
}

.btn-theme-4:hover {
  background: rgb(249, 115, 22);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.btn-theme-5 {
  background: rgba(236, 72, 153, 0.9);
}

.btn-theme-5:hover {
  background: rgb(236, 72, 153);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.btn-theme-6 {
  background: rgba(6, 182, 212, 0.9);
}

.btn-theme-6:hover {
  background: rgb(6, 182, 212);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}



/* Customer Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--whiteColor) 50%, #f0f4f8 100%);
}

.reviews-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews-slider {
  animation: slideReviews 15s linear infinite;
  width: max-content;
}

@keyframes slideReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reviews-slider:hover {
  animation-play-state: paused;
}

.review-card {
  width: clamp(18rem, 16rem + 8vw, 22rem);
  background: var(--whiteColor);
  border-radius: clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
  transition: all 0.3s ease;
  border: 1px solid rgba(249, 182, 16, 0.2);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 26px rgba(249, 182, 16, 0.2);
}

.review-video-wrapper {
  height: clamp(10rem, 8rem + 6vw, 12rem);
  border-radius: clamp(0.75rem, 0.6rem + 0.6vw, 1rem) clamp(0.75rem, 0.6rem + 0.6vw, 1rem) 0 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.review-video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: clamp(0.75rem, 0.6rem + 0.6vw, 1rem) clamp(0.75rem, 0.6rem + 0.6vw, 1rem) 0 0;
  z-index: 1;
  pointer-events: none;
}

.video-play-btn {
  width: clamp(3rem, 2.5rem + 2vw, 4rem);
  height: clamp(3rem, 2.5rem + 2vw, 4rem);
  background: var(--themeColor);
  border-radius: 50%;
  color: var(--whiteColor);
  transition: all 0.3s ease;
  animation: videoPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(249, 182, 16, 0.7);
  z-index: 2;
}

.video-play-btn:hover {
  background: var(--primaryColor);
  transform: translate(-50%, -50%) scale(1.2);
  animation-play-state: paused;
  box-shadow: 0 8px 25px rgba(15, 50, 80, 0.4);
}

.video-play-btn svg {
  animation: playIconBounce 1s ease-in-out infinite;
}

@keyframes videoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 182, 16, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(249, 182, 16, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 182, 16, 0);
  }
}

@keyframes playIconBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.review-content {
  background: var(--whiteColor);
  border-radius: 0 0 clamp(0.75rem, 0.6rem + 0.6vw, 1rem) clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
}

.review-badge {
  background: #fbbd101a;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  color: #f9b610;
  width: fit-content;
}

.review-text {
  color: var(--textColor);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
}

.reviewer-avatar-orange {
  width: 40px;
  height: 40px;
  background-color: var(--themeColor);
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.reviewer-name {
  color: var(--primaryColor);
}

.reviewer-location {
  color: rgba(0, 0, 0, 0.6);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .reviews-slider {
    animation-duration: 15s;
  }

  .review-card {
    width: clamp(16rem, 14rem + 8vw, 18rem);
  }
}

/* Video Functionality - Pure CSS */
.review-video-wrapper:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.2);
  background: var(--primaryColor);
  animation-play-state: paused;
}

.review-video-wrapper:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 0.6rem + 0.6vw, 1rem) clamp(0.75rem, 0.6rem + 0.6vw, 1rem) 0 0;
  display: none;
}

.video-element.playing {
  display: block;
}

.review-video-wrapper.playing .video-play-btn {
  display: none;
}

.review-video-wrapper.playing img {
  display: none;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--whiteColor) 50%, #f0f4f8 100%);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--whiteColor);
  border: 1px solid rgba(249, 182, 16, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
  border-color: var(--themeColor);
  box-shadow: 0 8px 25px rgba(249, 182, 16, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.05) 0%, rgba(248, 134, 12, 0.02) 100%);
  padding: 1.2rem;
  width: 100%;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.1) 0%, rgba(248, 134, 12, 0.05) 100%);
}

.faq-question.active,
.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.15) 0%, rgba(248, 134, 12, 0.08) 100%);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--themeColor);
  color: var(--whiteColor);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.faq-question.active .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--primaryColor);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  background: var(--whiteColor);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer.collapsing {
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer.active,
.faq-answer.show {
  /* Bootstrap handles the height automatically - no additional styles needed */
}

.faq-answer-content {
  padding: 12px 24px 24px;
  color: rgba(0, 0, 0, 0.7);
}

/* Custom Bootstrap Collapse Animation Override */
.faq-accordion .collapse {
  transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-accordion .collapsing {
  transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Modal Benefit Numbers */
.benefit-number {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--themeColor);
  flex-shrink: 0;
}

.benefits-list {
  gap: 10px;
}

.modal-xl {
  max-width: 1200px;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--linearColor2) 50%, var(--primaryColor) 100%);
}

/* Corner Design Elements */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, var(--themeColor) 0%, transparent 80%);
  clip-path: polygon(0 0, 70% 0, 30% 50%, 0 100%);
  opacity: 0.15;
  z-index: 1;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 100px;
  background: linear-gradient(315deg, var(--primaryColor) 0%, var(--themeColor) 60%, transparent 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 70% 100%);
  opacity: 0.2;
  z-index: 1;
}

/* Additional accent elements */
.about-section .container-fluid::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: var(--themeColor);
  opacity: 0.1;
  border-radius: 0 50% 0 50%;
  z-index: 1;
}

.about-section .container-fluid::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primaryColor);
  opacity: 0.15;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: 1;
}

.about-content {
  z-index: 2;
}

.about-image-card {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.about-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-image-tall {
  height: 180px;
}

.about-image-wide {
  height: 120px;
}

.about-images-wrapper {
  position: relative;
  z-index: 2;
}

/* Why Choose Our Rentals Section */
.why-choose-section {
  background: linear-gradient(135deg, var(--whiteColor) 0%, #f8f9fa 50%, #f0f4f8 100%);
}

.feature-card {
  background: var(--whiteColor);
  border-radius: 16px;
  border: 1px solid rgba(249, 182, 16, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(249, 182, 16, 0.15);
  border-color: var(--themeColor);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--linearGradient2) 100%);
  border-radius: 50%;
}

.why-choose-image-wrapper {
  height: 450px;
}

.main-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--linearColor2) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(15, 50, 80, 0.3);
  z-index: 2;
}

@media (max-width: 575px) {
  .why-choose-image-wrapper {
    height: auto;
  }
}

/* Best Cars Section */
.best-cars-section {
  background: var(--whiteColor);
}

.cars-content-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--whiteColor) 50%, #f0f4f8 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.car-image-card {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.car-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.highlight-text {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.1) 0%, rgba(248, 134, 12, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--themeColor);
}

.action-btn-primary {
  background: var(--themeColor);
  color: var(--whiteColor);
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(249, 182, 16, 0.3);
}

.action-btn-primary:hover {
  background: var(--linearGradient2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249, 182, 16, 0.4);
}

.action-btn-outline {
  background: transparent;
  color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.action-btn-outline:hover {
  background: var(--primaryColor);
  color: var(--whiteColor);
  transform: translateY(-3px);
}

/* Popular Tour Packages Section */
.tour-packages-section {
  background: linear-gradient(135deg, #2d4a6f 0%, #1f3a52 50%, #2d4a6f 100%);
}

/* .packages-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
} */

.slider-arrow {
  width: 50px;
  height: 50px;
  background: var(--whiteColor);
  border: none;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
  background: var(--themeColor);
  box-shadow: 0 8px 25px rgba(249, 182, 16, 0.3);
}

.slider-arrow:hover i {
  color: var(--whiteColor);
}

.slider-arrow-prev {
  left: -25px;
}

.slider-arrow-next {
  right: -25px;
}

.slider-arrow i {
  font-size: 18px;
  color: var(--primaryColor);
  transition: color 0.3s ease;
}

.packages-track {
  transition: transform 0.5s ease;
}

.package-card {
  width: 320px;
  background: var(--whiteColor);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.package-image {
  height: 200px;
}

.package-image::after {
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.package-image img {
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-content {
  background: var(--whiteColor);
}

.package-btn {
  background: var(--primaryColor);
  color: var(--whiteColor);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background: var(--linearColor2);
  transform: translateY(-2px);
}

.explore-all-btn {
  padding: 10px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--whiteColor);
  background-color: var(--themeColor);
  box-shadow: 0 8px 25px rgb(248 177 17 / 44%);
}

.explore-all-btn .arrow-icon {
  z-index: 1;
  animation: neonArrowPulse 1.5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px #b66900;
  border-radius: 10px;
}

.explore-all-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(249, 182, 16, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.explore-all-btn:hover .arrow-icon {
  transform: scale(1.1);
}

.explore-all-btn:active .arrow-icon {
  transform: scale(0.95);
}

.explore-all-btn .arrow-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--linearGradient2);
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }

  .packages-container {
    padding: 0 20px;
  }

  .package-card {
    width: 280px;
  }
}

/* CTA Section Styles */


.cta-wrapper {
  background: var(--gradientPrimary);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.cta-title {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Items */
.cta-contact-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.cta-contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(249, 182, 16, 0.3);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradientTheme);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-link {
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--themeColor) !important;
  text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .cta-contact-item {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .cta-contact-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .contact-details {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .cta-wrapper {
    padding: 1.5rem 1rem;
  }

  .cta-contact-item {
    padding: 1rem;
  }
}

/* Enquiry Modal  */
.modal-content {
  border: none !important;
  border-radius: clamp(12px, 1.5vw, 20px) !important;
  box-shadow: 0 clamp(15px, 2vw, 20px) clamp(40px, 5vw, 60px) rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Modal Header - Dark and attractive design */
.modal-header {
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3a52 50%, #0f2a3d 100%);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
  border-bottom: 2px solid var(--themeColor);
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modalGrid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(249,182,16,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23modalGrid)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradientTheme);
  box-shadow: 0 0 15px rgba(249, 182, 16, 0.5);
  z-index: 2;
}

.modal-title {
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Close Button - Using Font Awesome icon */
.modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: clamp(35px, 4vw, 45px);
  height: clamp(35px, 4vw, 45px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.modal-close-btn i {
  color: white;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: rgba(249, 182, 16, 0.2);
  border-color: var(--themeColor);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 15px rgba(249, 182, 16, 0.3);
}

.modal-close-btn:hover i {
  color: var(--themeColor);
  transform: rotate(-90deg);
}

.modal-close-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(249, 182, 16, 0.25);
}

.input-field {
  border: 1px solid rgba(15, 50, 80, 0.15);
  border-radius: clamp(8px, 1vw, 10px);
  padding: clamp(0.75rem, 1.5vw, 0.675rem) clamp(1rem, 2vw, 1.25rem);
  background: rgba(248, 249, 250, 0.8);
  color: var(--primaryColor);
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  font-size: clamp(13px, 1.2vw, 14px);
}

.input-field:focus {
  border-color: var(--themeColor);
  background: var(--whiteColor);
  box-shadow: 0 0 0 clamp(0.15rem, 0.5vw, 0.25rem) rgba(249, 182, 16, 0.15);
  transform: translateY(-2px);
}

.input-field::placeholder {
  color: rgba(15, 50, 80, 0.5);
  font-size: clamp(13px, 1.2vw, 14px);
}

select.input-field {
  padding-right: clamp(1rem, 2vw, 1.25rem);
}

.modal-send-btn {
  background: var(--gradientTheme);
  color: var(--whiteColor);
  border-radius: clamp(25px, 4vw, 50px);
  padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(2rem, 3vw, 2.5rem);
  transition: all 0.3s ease;
  box-shadow: 0 clamp(4px, 1vw, 6px) clamp(15px, 2.5vw, 20px) rgba(249, 182, 16, 0.3);
  font-family: "Outfit", sans-serif;
}

.modal-send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 clamp(8px, 1.5vw, 10px) clamp(20px, 3vw, 30px) rgba(249, 182, 16, 0.4);
}

.modal-footer {
  background: rgba(248, 249, 250, 0.8);
  border-top: 1px solid rgba(15, 50, 80, 0.1) !important;
}

.modal.fade .modal-dialog {
  transform: scale(0.8) translateY(clamp(-30px, -5vw, -50px));
  transition: all 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-dialog {
  margin: clamp(0.5rem, 2vw, 1rem);
}

/* Rent Car Modal Benefits Section */
.rent-benefits-card {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.1) 0%, rgba(248, 134, 12, 0.05) 100%);
  height: 100%;
  border: 1px solid rgba(249, 182, 16, 0.2);
  transition: all 0.3s ease;
}

.rent-benefits-card:hover {
  border-color: var(--themeColor);
  box-shadow: 0 4px 15px rgba(249, 182, 16, 0.1);
}

.rent-benefits-title {
  color: var(--themeColor);
}

.rent-car-image {
  right: -10px;
  bottom: -10px;
}

.rent-car-image img {
  max-width: 240px;
  opacity: 0.7;
  transition: all 0.3s ease;

}

.rent-stats-badge {
  transition: all 0.3s ease;
  line-height: 0px !important;
}

.rent-stats-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(249, 182, 16, 0.2);
}

/* Fleet Enquiry Modal Styles */
.fleet-modal-car-section {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.1) 0%, rgba(248, 134, 12, 0.05) 100%);
  border: 1px solid rgba(249, 182, 16, 0.2);
}

.fleet-car-images img {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
}

.fleet-phone-number:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.captcha-display {
  background: #f8f9fa !important;
  color: var(--primaryColor);
  font-weight: 600;
  letter-spacing: 2px;
}

/* About Page css */


/* Our Mission Section */
.mission-section {
  background: var(--whiteColor);
}

.mission-card {
  background: var(--whiteColor);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--linearGradient2) 100%);
  border-radius: 50%;
  color: var(--whiteColor);
  transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1);
}

.mission-card-title {
  color: var(--primaryColor);
}

.mission-card-text {
  color: var(--textcolor);
  margin-bottom: 0;
}

/* Message from Founder Section */
.founder-message-section {
  background: var(--whiteColor);
}

.founder-message-card {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image-side {
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.founder-image-side::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--linearColor1) 0%, var(--linearColor2) 100%);
  opacity: 0.1;
  border-radius: 50%;
}

.founder-image-side::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--linearGradient2) 100%);
  opacity: 0.08;
  border-radius: 50%;
}

.founder-image-container {
  position: relative;
  z-index: 2;
}

.founder-image-container::before {
  content: '';
  position: absolute;
  top: clamp(-0.9375rem, -0.7476rem + -0.9494vw, -1.875rem);
  left: clamp(-0.9375rem, -0.7476rem + -0.9494vw, -1.875rem);
  right: clamp(-0.9375rem, -0.7476rem + -0.9494vw, -1.875rem);
  bottom: clamp(-0.9375rem, -0.7476rem + -0.9494vw, -1.875rem);
  border: 2px dashed var(--themeColor);
  border-radius: 50%;
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.founder-image {
  width: clamp(18.125rem, 17.7453rem + 1.8987vw, 20rem);
  height: clamp(18.125rem, 17.7453rem + 1.8987vw, 20rem);
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--whiteColor);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.founder-image-container:hover .founder-image {
  transform: scale(1.05);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.founder-content-side {
  background: var(--whiteColor);
  height: 100%;
  min-height: 400px;
}

.founder-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--themeColor);
  border-radius: 2px;
}

.founder-message {
  color: var(--textcolor);
}

.founder-signature {
  margin-top: clamp(1rem, 0.7975rem + 1.0127vw, 2rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {

  .founder-content-side {
    min-height: auto;
  }
}

/* Meet the Team Section */
.meet-team-section {
  background: var(--whiteColor);
}

.team-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: clamp(15.625rem, 14.3592rem + 6.3291vw, 21.875rem);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-image-card:hover .team-image {
  transform: scale(1.05);
}

/* About Company Section */
.about-company-section {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.03) 0%, rgba(248, 134, 12, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.about-company-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(249,182,16,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.3;
  z-index: 1;
}

.about-company-section .container-fluid {
  position: relative;
  z-index: 2;
}

.about-badge {
  color: var(--themeColor);
  background: rgba(249, 182, 16, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(249, 182, 16, 0.2);
  display: inline-block;
}

.about-description {
  color: var(--textcolor);
  opacity: 0.8;
}

.about-highlight {
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.about-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradientTheme);
  border-radius: 2px;
}

.about-buttons {
  margin-top: 2rem;
}

/* About Images Container */
.about-images-container {
  padding: clamp(0rem, -0.2532rem + 1.2658vw, 1.25rem);
}

.about-images-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 400px;
}

.about-main-image {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-right: clamp(0rem, -0.2532rem + 1.2658vw, 1.25rem);
}

.about-small-images {
  gap: 20px;
}

.about-small-image {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-main-image:hover .about-image,
.about-small-image:hover .about-image {
  transform: scale(1.05);
}

.floating-badge-content {
  background: var(--whiteColor);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(249, 182, 16, 0.1);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradientTheme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-number {
  color: var(--primaryColor);
  line-height: 1;
}

.badge-label {
  color: var(--textcolor);
  opacity: 0.7;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-images-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 250px auto;
    height: auto;
  }

  .about-main-image {
    grid-row: 1;
  }

  .about-small-images {
    flex-direction: row;
  }

  .about-floating-badge {
    position: static;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .about-small-images {
    flex-direction: column;
  }
}

/* About Hero Section */
.about-hero-section {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.car-rental-hero {
  /* bg image set inline on section */
}

.about-hero-overlay {
  background: linear-gradient(135deg, rgba(15, 50, 80, 0.85) 0%, rgba(6, 101, 103, 0.75) 50%, rgba(249, 182, 16, 0.15) 100%);
  z-index: 1;
}

.about-hero-section .container-fluid {
  z-index: 2;
}

.about-hero-title {
  font-size: clamp(2rem, 0.125rem + 6vw, 3.5rem) !important;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  position: relative;
}

.about-hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradientTheme);
  border-radius: 2px;
}

.about-breadcrumb {
  margin-top: 2rem;
}

.breadcrumb-link {
  transition: color 0.3s ease;
  opacity: 0.9;
}

.breadcrumb-link:hover {
  color: var(--themeColor) !important;
  opacity: 1;
}

.breadcrumb-separator {
  opacity: 0.7;
  margin: 0 8px;
}

.breadcrumb-current {
  color: var(--themeColor);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-hero-section {
    height: 50vh;
    min-height: 350px;
    background-attachment: scroll;
  }

  .about-hero-title {
    letter-spacing: 1px;
  }

  .about-breadcrumb {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    height: 45vh;
    min-height: 300px;
  }

  .about-hero-title::after {
    width: 60px;
    height: 3px;
  }
}

@media (max-width: 575px) {
  .about-small-image {
    display: none;
  }

  .floating-badge-content {
    position: absolute;
    top: -25px;
  }
}


/* =============================================
   TRUSTED SECTION - car-on-rent.html
   ============================================= */
.trusted-section {
  background: #fff;
}

.trusted-intro-text {
  max-width: 860px;
}

.ta-feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fa;
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  padding: 10px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.ta-feature-chip svg,
.ta-feature-chip i {
  color: var(--themeColor);
  flex-shrink: 0;
}

.ta-feature-chip:hover {
  border-color: var(--themeColor);
  background: #fffbf0;
}

.ta-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.ta-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 40px rgba(15, 50, 80, 0.12);
}

.ta-stat-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--gradientTheme);
  border-radius: 50px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(249, 182, 16, 0.4);
}

@media (max-width: 991px) {
  .ta-main-img {
    height: 300px;
  }
}

/* =============================================
   HOW IT WORKS SECTION - car-on-rent.html
   ============================================= */
.how-it-works-section {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.08) 0%, rgba(6, 101, 103, 0.08) 100%);
}

.hiw-card {
  background: var(--whiteColor);
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.hiw-card:hover {
  box-shadow: 0 12px 36px rgba(15, 50, 80, 0.1);
  transform: translateY(-4px);
}

.hiw-icon-wrap {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.1) 0%, rgba(6, 101, 103, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(249, 182, 16, 0.25);
}

.hiw-step-num {
  letter-spacing: 1.5px;
}

/* =============================================
   RATES SECTION - car-on-rent.html
   ============================================= */
.rates-section {
  background: var(--whiteColor);
}

.rates-tab-btn {
  background: transparent;
  border: 1.5px solid #e0e6ed;
  border-radius: 8px;
  padding: 8px 20px;
  color: var(--primaryColor);
  cursor: pointer;
  transition: all 0.2s ease;
}

.rates-tab-btn:hover {
  border-color: var(--themeColor);
  color: var(--themeColor);
}

.rates-tab-btn.active {
  background: var(--gradientTheme);
  border-color: transparent;
  color: var(--whiteColor);
}

.rates-table-wrap {
  border-radius: 12px;
  overflow-x: auto;
  border: 1px solid #e8ecf0;
  -webkit-overflow-scrolling: touch;
}

.rates-table {
  border-collapse: collapse;
}

.rates-table thead tr {
  background: var(--gradientPrimary);
}

.rates-table thead th {
  padding: 14px 18px;
  color: var(--whiteColor);
  text-align: left;
  white-space: nowrap;
}

.rates-table tbody tr {
  border-bottom: 1px solid #f0f3f6;
  transition: background 0.15s;
}

.rates-table tbody tr:last-child {
  border-bottom: none;
}

.rates-table tbody tr:hover {
  background: rgba(249, 182, 16, 0.05);
}

.rates-table tbody td {
  padding: 12px 18px;
  color: var(--primaryColor);
  white-space: nowrap;
}

.rates-table tbody td:first-child {
  color: #444;
}

.rates-note {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.06) 0%, rgba(6, 101, 103, 0.05) 100%);
  border-left: 3px solid var(--themeColor);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
}

.rates-note-list {
  padding-left: 18px;
  list-style: disc;
  color: #5a6a7a;
}

.rates-note-list li {
  margin-bottom: 4px;
}

/* Contact Hero */
.contact-hero {
  /* bg image set inline on section */
}

/* =============================================
   CONTACT SECTION - contact.html
   ============================================= */
.contact-section {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.05) 0%, rgba(6, 101, 103, 0.05) 100%);
}

.contact-label {
  color: var(--themeColor);
  letter-spacing: 1px;
}

.contact-info-card {
  background: var(--whiteColor);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 18px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-info-card:hover {
  border-color: var(--themeColor);
  box-shadow: 0 4px 20px rgba(249, 182, 16, 0.12);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.12) 0%, rgba(6, 101, 103, 0.08) 100%);
  border-radius: 10px;
  color: var(--primaryColor);
}

.contact-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.12) 0%, rgba(6, 101, 103, 0.08) 100%);
  border: 1.5px solid rgba(249, 182, 16, 0.3);
  color: var(--primaryColor);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.contact-social-btn:hover {
  background: var(--gradientTheme);
  border-color: transparent;
  color: var(--whiteColor);
  transform: translateY(-2px);
}

.contact-form-card {
  background: var(--whiteColor);
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 24px 30px;
  height: 100%;
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 24px 18px;
  }
}

/* Captcha & Checkbox */
.captcha-box {
  min-width: 100px;
  padding: 10px 14px;
  background: #f0f3f6;
  border: 1.5px solid #e0e6ed;
  border-radius: 10px;
  letter-spacing: 4px;
  user-select: none;
  cursor: pointer;
  text-align: center;
}

.contact-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--themeColor);
  cursor: pointer;
  flex-shrink: 0;
}

/* =============================================
   BRANCH SECTION - contact.html
   ============================================= */
.branch-section {
  background: var(--whiteColor);
}

.branch-card {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.06) 0%, rgba(6, 101, 103, 0.04) 100%);
  border: 1px solid #e8ecf0;
  border-left: 4px solid var(--themeColor);
  border-radius: 12px;
  padding: 16px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.branch-card:hover {
  box-shadow: 0 6px 24px rgba(249, 182, 16, 0.15);
  transform: translateY(-2px);
}

.branch-team-img {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 4px 16px rgba(15, 50, 80, 0.1);
}

.branch-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 50, 80, 0.12);
}

@media (max-width: 768px) {
  .branch-team-img {
    height: 140px;
  }
}

/* Gallery Hero */
.gallery-hero {
  /* bg image set inline on section */
}

/* =============================================
   GALLERY SECTION - gallery.html
   ============================================= */
.gallery-section {
  background: #f8fafc;
}

.gallery-grid {
  columns: 4;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 50, 80, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}

@media (max-width: 991px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
}


/* ---- T&C Page Specific Styles ---- */
.tnc-content-bg {
  background: #f4f6f9;
}

.tnc-hero-bg {
  /* bg image set inline on section */
}

.pp-hero-bg {
  /* bg image set inline on section */
}

/* Sidebar TOC */
.tnc-sidebar {
  position: sticky;
  top: 90px;
}

.tnc-toc {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(249, 182, 16, 0.25);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tnc-toc-header {
  background: var(--gradientPrimary);
  padding: 16px 20px;
}

.tnc-toc ul {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

.tnc-toc ul li a {
  padding: 9px 20px;
  color: #444;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.tnc-toc ul li a:hover,
.tnc-toc ul li a.active {
  color: var(--themeColor);
  background: rgba(249, 182, 16, 0.07);
  border-left-color: var(--themeColor);
  padding-left: 24px;
}

.tnc-toc ul li a .toc-num {
  width: 22px;
  height: 22px;
  background: rgba(249, 182, 16, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Content Cards */
.tnc-section-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef0f3;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
  scroll-margin-top: 100px;
}

.tnc-section-card:hover {
  box-shadow: 0 6px 24px rgba(249, 182, 16, 0.12);
}

.tnc-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.15) 0%, rgba(248, 134, 12, 0.1) 100%);
  flex-shrink: 0;
}

.tnc-section-title {
  margin: 0;
}

.tnc-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor) 0%, rgba(249, 182, 16, 0.1) 100%);
  border-radius: 2px;
  margin: 14px 0 18px;
}

.tnc-section-card ul {
  padding-left: 0;
  list-style: none;
}

.tnc-section-card ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  line-height: 26px !important;
}

.tnc-section-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--themeColor);
}

/* Highlight box */
.tnc-highlight {
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.08) 0%, rgba(248, 134, 12, 0.05) 100%);
  border-left: 4px solid var(--themeColor);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 14px 0;
}

/* Cancellation table */
.tnc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-top: 14px;
}

.tnc-table thead tr {
  background: var(--gradientPrimary);
}

.tnc-table thead th {
  padding: 12px 16px;
  text-align: left;
}

.tnc-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.tnc-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
}

/* Last updated bar */
.tnc-meta-bar {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 20px;
  border: 1px solid #eee;
}

@media (max-width: 991px) {
  .tnc-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
}

.tnc-contact-card {
  background: var(--gradientPrimary);
}

.tnc-contact-icon {
  display: block;
}

.tnc-call-btn {
  background: var(--themeColor);
}

/* Darjeeling Page Hero */
.darjeeling-hero-bg {
  /* bg image set inline on section */
}


/* ---- Darjeeling Page Sections ---- */

/* About Section */
.darj-about-section {
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.darj-label {
  color: var(--themeColor);
  letter-spacing: 2px;
}


.darj-about-desc {
  color: #4a5568;
}

.darj-stat-box {
  background: var(--whiteColor);
  border-radius: 12px;
  border: 1px solid rgba(249, 182, 16, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  padding: 12px;
}

.darj-stat-box:hover {
  border-color: var(--themeColor);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249, 182, 16, 0.2);
}

.darj-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradientTheme);
  color: var(--whiteColor);
  flex-shrink: 0;
}

.darj-stat-num {
  color: var(--primaryColor);
}

.darj-stat-label {
  color: #718096;
}

.darj-img-main {
  border-radius: 20px;
  height: clamp(280px, 40vw, 440px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  border: 3px solid var(--themeColor);
  margin: 10px;
}

.darj-img-main img {
  transition: transform 0.5s ease;
}

.darj-img-main:hover img {
  transform: scale(1.04);
}

.darj-img-badge {
  bottom: 28px;
  left: 28px;
  background: var(--gradientTheme);
  color: var(--whiteColor);
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(249, 182, 16, 0.45);
}

/* Places Section */
.darj-places-section {
  background: var(--whiteColor);
}

.darj-places-subtitle {
  max-width: 560px;
  color: #4a5568;
}

.darj-place-card {
  background: var(--whiteColor);
  border-radius: 16px;
  border: 1px solid rgba(249, 182, 16, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.darj-place-card:hover {
  transform: translateY(-8px);
  border-color: var(--themeColor);
  box-shadow: 0 16px 40px rgba(249, 182, 16, 0.22);
}

.darj-place-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 182, 16, 0.15) 0%, rgba(248, 134, 12, 0.08) 100%);
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.darj-place-card:hover .darj-place-icon {
  background: var(--gradientTheme);
  color: var(--whiteColor);
}

.darj-place-card h3 {
  color: var(--primaryColor);
}

.darj-place-card p {
  color: #4a5568;
}


/* Places List */


.darj-place-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.darj-place-item:last-child {
  border-bottom: none;
}

.darj-dot-icon {
  color: var(--themeColor);
  font-size: 10px;
}


/* ---- Travel Guide Section ---- */
.darj-guide-section {
  background: #f8fafb;
}

.darj-guide-img {
  border-radius: 14px;
  max-height: 280px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.darj-guide-img img {
  object-fit: cover;
  height: 280px;
  transition: transform 0.4s ease;
}

.darj-guide-img:hover img {
  transform: scale(1.04);
}

.darj-guide-block {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding-bottom: 1.25rem;
}

.darj-guide-block:last-child {
  border-bottom: none;
}

/* Booking Form */
.darj-form-sticky {
  position: sticky;
  top: 90px;
}

.darj-form-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,50,80,0.15);
  border: 1px solid rgba(249,182,16,0.2);
}

.darj-form-header {
  background: var(--gradientPrimary);
}

.darj-trust-box {
  background: var(--whiteColor);
  border-radius: 14px;
  border: 1px solid rgba(249,182,16,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.darj-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249,182,16,0.15) 0%, rgba(248,134,12,0.08) 100%);
  color: var(--themeColor);
  flex-shrink: 0;
}

/* ---- Tour Packages Section ---- */
.darj-packages-section {
  background: var(--whiteColor);
}

.darj-pkg-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
  background: var(--whiteColor);
  height: 100%;
}

.darj-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(15,50,80,0.15);
  border-color: var(--themeColor);
}

.darj-pkg-img {
  height:  clamp(8.125rem, 4.2188rem + 12.5vw, 11.25rem);
}

.darj-pkg-img img {
  transition: transform 0.4s ease;
}

.darj-pkg-card:hover .darj-pkg-img img {
  transform: scale(1.07);
}

.darj-pkg-btn {
  background: var(--primaryColor);
  color: var(--whiteColor);
  padding:  clamp(0.375rem, 0.2969rem + 0.25vw, 0.4375rem) clamp(0.625rem, 0.3125rem + 1vw, 0.875rem);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.darj-pkg-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
}

.darj-pkg-btn-wa {
  background: #25D366;
  color: var(--whiteColor);
  padding: clamp(0.375rem, 0.2969rem + 0.25vw, 0.4375rem) clamp(0.625rem, 0.3125rem + 1vw, 0.875rem);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.darj-pkg-btn-wa:hover {
  background: #1ebe5d;
  color: var(--whiteColor);
}

/* ---- Why Choose Us Section ---- */
.darj-why-section {
  background: #f8fafb;
}

.darj-why-card {
  background: var(--whiteColor);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.darj-pkg-body{
  padding: 12px;
  min-height: clamp(8.4375rem, 7.6563rem + 2.5vw, 9.0625rem);
}
.darj-why-card:hover {
  border-color: var(--themeColor);
  box-shadow: 0 4px 16px rgba(249,182,16,0.15);
}

.darj-why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249,182,16,0.15) 0%, rgba(248,134,12,0.08) 100%);
  color: var(--themeColor);
  font-size: 18px;
  flex-shrink: 0;
}


.textMutedColor {
  color: #718096;
}

.textBodyColor {
  color: #4a5568;
}


/* Captcha */
.darj-captcha-box {
  background: #e8ecf0;
  border-radius: 8px;
  padding: 10px 16px;
  letter-spacing: 4px;
  font-size: 16px;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid #d0d7de;
}

.darj-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--themeColor);
  flex-shrink: 0;
  cursor: pointer;
}


/* Destinations Page Hero */
.destinations-hero-bg {
  /* bg image set inline on section */
}


/* ---- Destination Details Section ---- */
.dest-details-section {
  background: #f8fafb;
}

.dest-info-card {
  background: var(--whiteColor);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.dest-info-card:hover {
  border-color: var(--themeColor);
  box-shadow: 0 6px 24px rgba(249, 182, 16, 0.15);
}

.dest-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,182,16,0.15) 0%, rgba(248,134,12,0.08) 100%);
  color: var(--themeColor);
  font-size: 20px;
}

.dest-info-row {
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f8;
}

.dest-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* =============================================
   SILIGURI INFO SECTION - car-rental-siliguri.html
   ============================================= */

.siliguri-feature-item {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

.siliguri-feature-item:hover {
  border-color: #f9b610;
  box-shadow: 0 4px 12px rgba(249, 182, 16, 0.15);
}

.siliguri-grid-img {
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.siliguri-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 576px) {
  .siliguri-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.siliguri-highlight-box {
  background: #fff;
  border-left: 4px solid var(--themeColor);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* =============================================
   BAGDOGRA PAGE
   ============================================= */
.bagdogra-intro-section {
  background: #f0f4f8;
}

.bagdogra-intro-box {
  background: #fff;
  border-radius: 12px;
  border-left: 5px solid var(--themeColor);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.bagdogra-intro-icon {
  font-size: 2.5rem;
  color: var(--themeColor);
}

.bagdogra-feature-item {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.bagdogra-feature-item:hover {
  border-bottom-color: var(--themeColor);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.bagdogra-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(249, 182, 16, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bagdogra-feature-icon i {
  font-size: 1.4rem;
  color: var(--themeColor);
}

.bagdogra-car-item {
  font-size: 14px;
  line-height: 22px;
  color: #555;
  padding: 12px 16px;
  border-left: 3px solid var(--themeColor);
  background: #fffbf0;
  border-radius: 0 6px 6px 0;
}

/* =============================================
   BAGDOGRA NEARBY PLACES
   ============================================= */
.bagdogra-nearby-section {
  background: #fff;
}

.bdg-place-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.bdg-place-lg img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bdg-place-sm img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bdg-place-card:hover img {
  transform: scale(1.06);
}

.bdg-place-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .bdg-place-lg img { min-height: 220px; }
}

/* =============================================
   DARJEELING PLACES SECTION
   ============================================= */
.darj-places-section {
  background: #f0f4f8;
}

.darj-main-img-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.darj-main-img {
  border-radius: 16px;
  height: clamp(220px, 40vw, 380px);
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.darj-main-img-wrap:hover .darj-main-img {
  transform: scale(1.05);
}

.darj-stat-badge {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: clamp(6px, 1.5vw, 10px) clamp(10px, 2vw, 16px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  line-height: 1.3;
}

.darj-stat-1 {
  bottom: clamp(10px, 3vw, 30px);
  left: clamp(-10px, -2vw, -20px);
}

.darj-stat-2 {
  top: clamp(10px, 3vw, 30px);
  right: clamp(-10px, -2vw, -20px);
}

.darj-places-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.darj-place-tag {
  padding: 7px 14px;
  background: #fff;
  border-radius: 20px;
  color: var(--primaryColor);
  border: 1px solid #e0e7ef;
  transition: all 0.25s ease;
}

.darj-place-tag i {
  color: var(--themeColor);
}

.darj-place-tag:hover {
  background: var(--themeColor);
  color: #fff;
  border-color: var(--themeColor);
}

.darj-place-tag:hover i {
  color: #fff;
}

.darj-info-strip {
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--themeColor);
  width: max-content;
}

/* =============================================
   DARJEELING FACILITIES SECTION
   ============================================= */
.darj-facilities-section {
  background: #fff;
}

.darj-facility-item {
  border-left: 3px solid var(--themeColor);
  background: #fffbf0;
  border-radius: 0 8px 8px 0;
  height: 100%;
}

/* ===== Darjeeling Packages Filter Panel ===== */
.darj-filter-panel {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 100px;
}

.darj-filter-header .darj-filter-clear {
  background: none;
  border: none;
  color: var(--themeColor);
  cursor: pointer;
  padding: 0;
  font-size: 13px;
}

.darj-filter-divider {
  border-color: #e8edf2;
  margin: 12px 0;
}

.darj-check-label {
  cursor: pointer;
  color: var(--textColor);
}

.darj-check-label input[type="checkbox"] {
  accent-color: var(--primaryColor);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.darj-filter-btn {
  background: var(--themeColor);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  letter-spacing: 0.5px;
}

.darj-filter-btn:hover {
  background: var(--primaryColor);
}

.darj-results-count {
  color: var(--primaryColor);
}

.darj-sort-select {
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--textColor);
  background: #fff;
  outline: none;
  cursor: pointer;
  min-width: 130px;
}

.darj-sort-select:focus {
  border-color: var(--primaryColor);
}


/* Related Holidays Slider - Auto Slide Animation */
.related-holidays-slider {
    overflow: hidden;
    position: relative;
}

.related-holidays-slider .row {
    display: flex;
    flex-wrap: nowrap;
    animation: slideCards 15s linear infinite;
}

.related-holidays-slider .row > div {
    flex: 0 0 auto;
    width: 300px;
}

@keyframes slideCards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.related-holidays-slider:hover .row {
    animation-play-state: paused;
}

@media (max-width: 991px) {
    .related-holidays-slider .row {
        animation-duration: 15s;
    }
    .related-holidays-slider .row > div {
        width: 280px;
    }
}

@media (max-width: 767px) {
    .related-holidays-slider .row {
        animation-duration: 15s;
    }
    .related-holidays-slider .row > div {
        width: 260px;
    }
}
.text-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}