/* === header.css === */
:root {
  --primary-color: #FF8500;
  --secondary-color: #FECE00;
  --text-black: #000;
  --white-color: #fff;
  --nav-bg-color: #242526;
  --hover-bg-color: #3A3B3C;
  --shadow-color: hsla(207, 24%, 35%, 0.1);
  --hover-shadow: rgba(0, 0, 0, 0.15);
  --font-family-main: "Inter", sans-serif;
  --bs-heading-color: #000;
  --nav-link-color: #000;
  --nav-link-hover-bg: var(--hover-bg-color);
  --dropdown-link-color: #d9d9d9;
  --dropdown-link-hover-color: var(--white-color);
  --dropdown-bg-color: var(--nav-bg-color);
  --mega-border-color: rgba(255, 255, 255, 0.09);
  --row-border-color: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-main);
  /* overflow-x: hidden; */
}

@media (min-width: 1920px) {
  .container {
    max-width: 1500px;
  }
}

/* .themeBtn {
    background: linear-gradient(270deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white-color);
    height: 40px;
    border: 1px solid var(--secondary-color);
    text-wrap: nowrap;
} */

.langBtn {
  background: transparent;
  color: var(--white-color);
  height: 40px;
}

nav {
  z-index: 99;
  width: 100%;
}

nav .wrapper {
  position: relative;
  padding: 0px 30px;
  height: 70px;
  /* line-height: 70px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: var(--white-color);
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .nav-links {
  display: inline-flex;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--nav-link-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  padding: 9px 15px;
  transition: all 0.3s ease;
  text-wrap: nowrap;
}

ul {
  margin-bottom: 0rem;
}



.active_class {
  border-bottom: 2px solid var(--primary-color);
  border-radius: 0px;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: var(--dropdown-bg-color);
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px var(--hover-shadow);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
  color: var(--dropdown-link-color);
}

.drop-menu li a:hover {
  color: var(--dropdown-link-hover-color);
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: var(--dropdown-bg-color);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px var(--hover-shadow);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  box-shadow: 0 0 10px;
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white-color);

}

.content .row header {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid var(--mega-border-color);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0 20px;
  color: var(--dropdown-link-color);
  font-size: 17px;
  display: block;
}

.row .mega-links li a:hover {
  color: var(--dropdown-link-hover-color);
}

.wrapper .btn {
  color: var(--white-color);
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

.whatsappDiv {
  position: fixed;
  right: 5px;
  top: 45vh;
  z-index: 999;
}

.callDiv {
  position: fixed;
  right: 0px;
  top: 55vh;
  z-index: 999;
}

.dropdown-menu.two-columns {
  column-count: 2;
  column-gap: 20px;
  min-width: 580px;
  max-width: 650px;
  background: var(--nav-bg-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 12px;
}

.dropdown-menu.two-columns li {
  break-inside: avoid;
  page-break-inside: avoid;
}

.dropdown-menu.two-columns .dropdown-item {
  white-space: normal;
  word-wrap: break-word;
  height: auto;
  line-height: 1.35;
  padding: 6px 10px;
  color: var(--dropdown-link-color);
  font-size: 0.92rem;
  border-radius: 4px;
}

.dropdown-menu.two-columns .dropdown-item:hover {
  background-color: var(--hover-bg-color);
  color: var(--dropdown-link-hover-color);
}

.whatsappIcon {
  font-size: 36px;
  color: #ffffff;
  background: #03c362;
  border-radius: 35px;
  padding: 8px;
}

.callIcon {
  margin-right: 0.4rem;
  font-size: 26px;
  color: #ffffff;
  background: #00a8eb;
  border-radius: 35px;
  padding: 10px;
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0deg);
    transform: translateY(0);
    transform: translateX(0px);
  }

  25% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-5deg);
    transform: translateY(-8px);
    transform: translateX(-8px);
  }
}

.whatsappIcon,
.callIcon {
  animation: wiggle 1s 5;
}


.whatsappIcon:hover {
  transform: scale(1.15);
  transition: all 0.3s ease;
  margin-right: 0.1rem;
}

@media screen and (max-width: 1200px) {

  .ps-mini {
    padding-left: 20px !important;
  }

  .dropdown-toggle {
    color: #fff !important;
    font-size: 20px;
  }

  ul.dropdown-menu.show {
    background: #242526;
  }

  .wrapper .btn {
    display: block;
    color: var(--text-black);
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: var(--nav-bg-color);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px var(--hover-shadow);
    transition: all 0.3s ease;
  }

  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: var(--nav-bg-color);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--hover-bg-color);
  }

  #menu-btn:checked~.nav-links {
    left: 0%;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
    color: var(--white-color);
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: var(--hover-bg-color);
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid var(--row-border-color);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }

  /* Override global li margin inside mobile dropdown */
  .wrapper .nav-links .dropdown-menu li,
  .wrapper .nav-links ul.dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Responsive Services Dropdown Menu Fixes */

  .wrapper .nav-links .dropdown-menu:not(.show) {
    display: none !important;
  }

  .wrapper .nav-links .dropdown-menu.show,
  .wrapper .nav-links ul.dropdown-menu.show {
    position: static !important;
    float: none !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    column-count: initial !important;
    columns: initial !important;
    column-width: auto !important;
    column-gap: normal !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #1c1d1e !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    padding: 8px 6px !important;
    margin: 8px 0 12px 0 !important;
  }

  .wrapper .nav-links .dropdown-menu.show.two-columns {
    display: flex !important;
    flex-direction: column !important;
    column-count: initial !important;
    columns: initial !important;
    column-width: auto !important;
    column-gap: normal !important;
    min-width: 0 !important;
    width: 100% !important;
    max-height: 320px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .wrapper .nav-links .dropdown-menu.two-columns li {
    break-inside: auto !important;
    display: block !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .wrapper .nav-links .dropdown-menu .dropdown-item,
  .wrapper .nav-links .dropdown-menu.two-columns .dropdown-item {
    white-space: normal !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    height: auto !important;
    min-height: auto !important;
    line-height: 1.3 !important;
    padding: 6px 10px !important;
    font-size: 0.88rem !important;
    color: #e0e0e0 !important;
    display: block !important;
    border-radius: 4px !important;
    margin: 0 !important;
  }

  .wrapper .nav-links .dropdown-menu .dropdown-item:hover,
  .wrapper .nav-links .dropdown-menu .dropdown-item:focus {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
  }

  .wrapper .nav-links .dropdown-menu .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 4px 0 !important;
  }
}

@media screen and (max-width: 768px) {
  nav .wrapper {
    padding: 0px 0px;
  }

  .dropdown-menu.show {
    background-color: var(--nav-bg-color);
  }
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}

.dropdown-toggle,
.dropdown-item {
  background-color: transparent;
  border: none;
  height: auto;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
  }

  50% {
    box-shadow: 0 0 0 0.4rem rgba(13, 110, 253, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
  }
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  animation: pulse-shadow 2s infinite;
}

/* ul.dropdown-menu.show {
    border: 1px solid #fff;
} */
/* === commonStyles.css === */
:root {
  --primary-color: #ff8500;
  --secondary-color: #fece00;
  --text-black: #000;
  --white-color: #fff;
  --primary--bg-color: #f2f2f2;
  --font-family-main: "Inter", sans-serif;
}

a.btn.explore-btn {
  display: none;
}

.cards_div {
  background-color: var(--primary--bg-color);
}

.card {
  background-color: var(--white-color);
  padding: 1.5rem;
  border-radius: 12px;
  border: none;
}

.card2 {
  background-color: var(--white-color);
  padding: 1.5rem;
  border: none;
}

.heading_2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white-color);
}

.heading_3 {
  font-size: 2rem;
  font-weight: 400;
}

.heading_4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 1rem;
}

.themeText {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
}

.para {
  font-size: 1rem;
  margin-bottom: 0rem;
  color: #00000070;
}

.para1 {
  font-size: 1.2rem;
  margin-bottom: 0rem;
  color: #000000;
}

.para2 {
  font-size: 1rem;
  margin-bottom: 0rem;
  color: #000;
}

.banner-text h1 {
  font-size: 1.8rem;
}

.para3 {
  font-size: 1rem;
  margin-bottom: 0rem;
  color: #fff;
  font-weight: 400;
}

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

.cards_main2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footer_grid_menu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /* align-items: center; */
  justify-content: space-between;
}

.footer_grid a {
  text-wrap: nowrap;
  font-weight: 700;
}

.border_bottom {
  border-bottom: 2px solid var(--primary-color);
}

.footer {
  background-color: #2f2e2d;
  color: #fff;
}

.booking-form {
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.6));
  padding: 30px;
  border-radius: 20px;
  width: 80%;
  margin: 50px auto;
  position: relative;
  z-index: 1;
}

.nav-tabs .nav-link {
  color: black;
  font-weight: bold;
}

.nav-tabs .nav-link.active {
  color: #000;
  border: none;
  border-bottom: 3px solid orange;
  background: none;
}

.btn-custom {
  background-color: orange;
  border: none;
  font-weight: bold;
  color: #000;
  padding: 0.8rem 0rem;
}

.btn-custom:hover {
  background-color: #e69500;
  color: white;
}

.right-text {
  width: 100%;
  color: white;
  padding: 50px;
}

.right-text p {
  font-size: 1rem;
  letter-spacing: 0.8px;
  font-weight: 400;
}

.explore-btn {
  background: white;
  color: black;
  font-weight: bold;
  padding: 0.9rem 1.5rem;
}

.explore-btn:hover {
  background: #000;
  color: #fff;
}

.Banner_section {
  position: relative;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.treviso_bg {
  min-height: 50vh;
  background: url("../assets/Images/Bg_Home.webp") no-repeat center center;
  background-size: cover;
}

.dolomites-bg {
  min-height: 50vh;
  background: url("../assets/Images/dolomites-bg.png") no-repeat center center;
  background-size: cover;
}

.altabadia-bg {
  min-height: 50vh;
  background: url("../assets/Images/altabadia-bg.png") no-repeat center center;
  background-size: cover;
}

.road-trips-bg {
  min-height: 50vh;
  background: url("../assets/Images/road-trip-bg.webp") no-repeat center center;
  background-size: cover;
}

.cassiano-bg {
  min-height: 50vh;
  background: url("../assets/Images/cassiano-bg.webp") no-repeat center center;
  background-size: cover;
}

.skiseason-bg {
  min-height: 50vh;
  background: url("../assets/Images/skiseason-bg.webp") no-repeat center center;
  background-size: cover;
}

.valdifassa-bg {
  min-height: 50vh;
  background: url("../assets/Images/val-di-fassa-bg.webp") no-repeat center center;
  background-size: cover;
}

.ravenna-bg {
  min-height: 50vh;
  background: url("../assets/Images/ravenna-bg.webp") no-repeat center center;
  background-size: cover;
}

.marina-bg {
  min-height: 50vh;
  background: url("../assets/Images/marina-bg.webp") no-repeat center center;
  background-size: cover;
}

.lido-bg {
  min-height: 50vh;
  background: url("../assets/Images/lido-bg.jpeg") no-repeat center center;
  background-size: cover;
}

.caorle-bg {
  min-height: 50vh;
  background: url("../assets/Images/caorle-bg.webp") no-repeat center center;
  background-size: cover;
}

.venice-bg {
  min-height: 50vh;
  background: url("../assets/Images/venice-bg.webp") no-repeat center center;
  background-size: cover;
}

.trieste_bg {
  min-height: 50vh;
  background: url("../assets/Images/trieste-bg.webp") no-repeat center center;
  background-size: cover;
}

.scenic-bg {
  min-height: 50vh;
  background: url("../assets/Images/scenic-bg.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;

}

.vhotel-bg {
  min-height: 50vh;
  background: url("../assets/Images/venice-to-hote.jpeg") no-repeat center center;
  background-size: cover;

}

.prosecco-bg {
  min-height: 50vh;
  background: url("../assets/Images/prosecco-bg.jpeg") no-repeat center center;
  background-size: cover;

}

.unionlido-bg::before,
.pradelle-bg::before,
.jesolo-bg::before,
.marina-bg::before,
.campitello-bg::before,
.lido-bg::before,
.caorle-bg::before,
.venice-bg::before,
.trieste_bg::before,
.scenic-bg::before,
.ravenna-bg::before,
.vhotel-bg::before,
.prosecco-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* adjust 0.35–0.6 */
  /* z-index: 1; */
}


.banner-text {
  position: relative;
  z-index: 2;
}


.unionlido-bg {
  min-height: 50vh;
  background: url("../assets/Images/unionlido-bg.webp") no-repeat center center;
  background-size: cover;
}

.cortina-bg {
  min-height: 50vh;
  background: url("../assets/Images/cortina-bg.webp") no-repeat center center;
  background-size: cover;
}

.pradelle-bg {
  min-height: 50vh;
  background: url("../assets/Images/pradelle-bg.webp") no-repeat center center;
  background-size: cover;
}

.jesolo-bg {
  min-height: 50vh;
  background: url("../assets/Images/jesolo-bg.webp") no-repeat center center;
  background-size: cover;
}

.campitello-bg {
  min-height: 50vh;
  background: url("../assets/Images/campitello-bg.webp") no-repeat center center;
  background-size: cover;
}

.error {
  color: red;
  font-size: 0.9rem;
}

.vehicleImg {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.muteText {
  color: #00000050;
  font-size: 1rem;
}

.muteText2 {
  color: #00000050;
  font-size: 0.85rem;
}

.infoText {
  color: #309eb5;
  font-size: 0.85rem;
}

@media print {
  body * {
    visibility: hidden;
  }

  .print-area,
  .print-area * {
    visibility: visible;
  }

  .print-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  .no-print {
    display: none !important;
  }

  .print-area {
    box-shadow: none !important;
    border: none !important;
  }
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.text-yellow-500 {
  color: #eab308;
}

.bg-yellow-500 {
  background-color: #eab308;
}

.bg-yellow-500:hover {
  background-color: #ca8a04;
}

.route-line {
  width: 3px;
  height: 96px;
  background-color: #9ca3af;
  position: absolute;
  top: 16px;
  left: 18px;
}

.start-point,
.end-point {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 8px;
}

.start-point {
  background-color: #22c55e;
  top: 12px;
}

.end-point {
  background-color: #ef4444;
  bottom: 12px;
}

.point-inner {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.map-container {
  height: 128px;
  background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.select2-container .select2-selection--single {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem !important;
  height: 40px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 7px;
  right: 10px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #000;
}

.blog-card {
  background: #ff850014;
  box-shadow: 0px 2px 5px !important;
}

.blog-title {
  font-weight: 600;
}

.blog-head {
  font-size: 2rem;
}

.recent-posts {
  max-height: calc(5 * 120px);
  /* ~5 items tall */
  overflow-y: auto;
}

.recent-posts h5 {
  font-weight: bold;
  color: var(--color-primary);
}

@media screen and (max-width: 970px) {
  .footer_grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .footer_grid_menu {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cards_main {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }

  .booking-form {
    width: 95%;
    margin: 20px auto;
  }

  .right-text {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .dolomites-bg {
    background: url("../assets/Images/dolomites-mbg.png") no-repeat center center;
    background-size: cover;
  }

  .altabadia-bg {
    background: url("../assets/Images/altabadia-mbg.png") no-repeat center center;
    background-size: cover;
  }

  .road-trips-bg {
    min-height: 50vh;
    background: url("../assets/Images/road-trip-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .cassiano-bg {
    min-height: 50vh;
    background: url("../assets/Images/cassiano-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .skiseason-bg {
    min-height: 50vh;
    background: url("../assets/Images/skiseason-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .valdifassa-bg {
    min-height: 50vh;
    background: url("../assets/Images/val-di-fassa-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .ravenna-bg {
    min-height: 50vh;
    background: url("../assets/Images/ravenna-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .cortina-bg {
    min-height: 50vh;
    background: url("../assets/Images/cortina-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .unionlido-bg {
    min-height: 50vh;
    background: url("../assets/Images/unionlido-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .pradelle-bg {
    min-height: 50vh;
    background: url("../assets/Images/pradelle-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .jesolo-bg {
    min-height: 50vh;
    background: url("../assets/Images/jesolo-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .marina-bg {
    min-height: 50vh;
    background: url("../assets/Images/marina-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .campitello-bg {
    min-height: 50vh;
    background: url("../assets/Images/campitello-mbg.webp") no-repeat center center;
    background-size: cover;
  }

  .pay-box {
    display: block !important;
    padding: 2rem 0rem !important;
  }

  .pay-box p {
    margin-bottom: 16px !important;
  }

  /* .lido-bg {
  min-height: 50vh;
  background: url("../assets/Images/lido-mbg.webp") no-repeat center center;
  background-size: cover;
} */



}

@media (min-width: 768px) and (max-width: 1024px) {
  .dolomites-bg {
    background: url("../assets/Images/dolomites-tbg.png") no-repeat center center;
    background-size: cover;
  }

  .altabadia-bg {
    background: url("../assets/Images/altabadia-tbg.png") no-repeat center center;
    background-size: cover;
  }

  .dropdown-menu.show {
    background-color: #242526;
  }

  .road-trips-bg {
    min-height: 50vh;
    background: url("../assets/Images/road-trip-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .cassiano-bg {
    min-height: 50vh;
    background: url("../assets/Images/cassiano-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .skiseason-bg {
    min-height: 50vh;
    background: url("../assets/Images/skiseason-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .valdifassa-bg {
    min-height: 50vh;
    background: url("../assets/Images/val-di-fassa-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .ravenna-bg {
    min-height: 50vh;
    background: url("../assets/Images/ravenna-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .cortina-bg {
    min-height: 50vh;
    background: url("../assets/Images/cortina-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .unionlido-bg {
    min-height: 50vh;
    background: url("../assets/Images/unionlido-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .pradelle-bg {
    min-height: 50vh;
    background: url("../assets/Images/pradelle-bg.webp") no-repeat center center;
    background-size: cover;
  }

  .jesolo-bg {
    min-height: 50vh;
    background: url("../assets/Images/jesolo-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .marina-bg {
    min-height: 50vh;
    background: url("../assets/Images/marina-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  .campitello-bg {
    min-height: 50vh;
    background: url("../assets/Images/campitello-tbg.webp") no-repeat center center;
    background-size: cover;
  }

  /* .lido-bg {
  min-height: 50vh;
  background: url("../assets/Images/lido-tbg.webp") no-repeat center center;
  background-size: cover;
} */

}

.pay-box {
  box-shadow: 0px 2px 3px orange;
  padding: 2rem 1rem;
  margin-top: 1rem;
  border-radius: 24px;
  background: antiquewhite;
  text-align: center;
}

.pay {
  display: flex;
  gap: 30px;
}

.pay-box {
  width: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pay-box p {
  margin-bottom: 0px;
}

.pay-box a {
  border: 1px solid;
  padding: 10px;
  border-radius: 12px;
  color: orange;
  background: #fff;
}

.pay-div {
  box-shadow: 0px 0px 4px orange;
  padding: 2rem;
  border-radius: 24px;
  margin-top: 3rem;
}

/* === main.css === */
:root {
  --color-primary: #ff8500;
  --color-primary-light: #fece00;
  --color-secondary: #2f2e2d;
  --color-bg-light: #f1f1f1;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-muted: #f2f2f2;
  --color-grey: #00000050;
  --color-gradient-start: #fece00;
  --color-gradient-end: #ff8500;
  --color-login-gradient-start: #ff8a00;
  --color-login-gradient-end: #ffc107;
  --color-shadow1: rgba(50, 50, 93, 0.25);
  --color-shadow2: rgba(0, 0, 0, 0.3);
  --btn-info: #309eb5;
}

.text-theme {
  color: var(--color-primary);
}

a {
  text-decoration: none;
}

.orange-bg {
  background-color: var(--color-primary);
}

.orange-text {
  color: var(--color-primary);
}

.btn-orange {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn-orange:hover {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero-section {
  background: linear-gradient(135deg,
      var(--color-login-gradient-start) 0%,
      var(--color-login-gradient-end) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1500673922987-e212871fec22?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80") center/cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.vehicle-card {
  background: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.vehicle-card:hover {
  transform: translateY(-2px);
}

.vehicle-image {
  height: 240px;
  background: linear-gradient(135deg,
      var(--color-login-gradient-start) 0%,
      var(--color-login-gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 3rem;
  position: relative;
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(249, 115, 22, 0.9);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.vehicle-info {
  padding: 2rem;
  background-color: #ff8d220d;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-white);
  display: flex;
  align-items: center;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: #ff8626;
  margin-right: 0.5rem;
  width: 20px;
}

.category-nav {
  background: var(--color-white);
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.category-btn {
  border: none;
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.category-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.spec-item {
  text-align: center;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 10px;
}

.spec-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.spec-label {
  font-size: 1.2rem;
  color: #6c757d;
}

.premium-section {
  background: linear-gradient(135deg,
      var(--color-white) 0%,
      var(--color-white) 100%);
  padding: 0rem 0rem 3rem 0rem;
}

.service-highlight {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Conatct */

.contact-form-section {
  background: linear-gradient(135deg,
      var(--color-white) 0%,
      var(--color-white) 100%);
  padding: 5rem 0;
}

.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin-bottom: 2rem;
  border: none;
  position: relative;
  height: 600px;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
      var(--color-primary),
      var(--color-primary));
  border-radius: 20px 20px 0 0;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-info-card {
  background: linear-gradient(135deg,
      var(--color-login-gradient-start) 0%,
      var(--color-login-gradient-end) 100%);
  color: var(--color-black);
  border-radius: 20px;
  padding: 1rem;
  height: 600px;
}

.contact-method {
  border-radius: 15px;
  padding: 1.5rem 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid #ffffff50;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Company */
.stats-card {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.stats-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg,
      var(--color-primary),
      var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-white);
  font-size: 2rem;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.value-card {
  background: linear-gradient(135deg,
      var(--color-white) 0%,
      var(--color-white) 100%);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.team-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-image {
  height: 250px;
  background: linear-gradient(135deg,
      var(--color-login-gradient-start) 0%,
      var(--color-login-gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 4rem;
}

.timeline-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.timeline-item {
  position: relative;
  padding-bottom: 4rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.timeline-content {
  background: var(--color-white);
  border-radius: 15px;
  padding: 2rem;
  margin: 0 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-year {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}

.cta-section {
  background: linear-gradient(135deg,
      var(--color-login-gradient-start) 0%,
      var(--color-login-gradient-end) 100%);
  color: var(--color-white);
  padding: 3rem 0;
}

.stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.stepper-line {
  height: 2px;
  width: 80px;
  margin: 0 15px;
  background-color: #d9d9d9;
}

.stepper-active {
  background-color: #fece00;
  color: white;
}

.stepper-inactive {
  background-color: #d9d9d9;
  color: #00000030;
}

.stepper-line-active {
  background-color: #f97316;
}

.stepper-line-inactive {
  background-color: #d1d5db;
}

.vehicle-card {
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
  cursor: pointer;
}

.vehicle-card:hover {
  border-color: #f97316;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.extra-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.extra-item:hover {
  border-color: #f97316;
  background-color: #fff7ed;
}

.extra-item.selected {
  border-color: #f97316;
  background-color: #fff7ed;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-btn:hover {
  background-color: #f3f4f6;
}

.quantity-btn.orange {
  background-color: #f97316;
  border-color: #f97316;
  color: white;
}

.themeBtn {
  background: linear-gradient(270deg,
      var(--color-gradient-start) 0%,
      var(--color-gradient-end) 100%);
  color: var(--color-white);
  font-weight: 700;
  border: none;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

@media (max-width: 480px) {
  .themeBtn {
    font-size: 0.85rem;
    padding: 0.4rem;
  }
}


.themeBtn2 {
  background: linear-gradient(270deg,
      var(--color-gradient-start) 0%,
      var(--color-gradient-end) 100%);
  color: var(--color-white);
  height: 40px;
  font-weight: 700;
  border: none;
  padding: 0.3rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.summarytext {
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid #00000030;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid gold;
  background-color: white;
}

.dot-line {
  width: 2px;
  height: 10px;
  background-color: gold;
  margin-left: 5px;
}

.theme_para {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0rem;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lottie-loader {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
}

.mini-title {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}

.mini-para {
  color: #00000050;
  font-size: 0.8rem;
  font-weight: 400;
}

.fs-16 {
  font-size: 1rem;
}

.fs-20 {
  font-size: 1.5rem;
}

.pay-amount {
  font-size: 2rem;
  color: #000;
  font-weight: 400;
}

.anchor-text {
  color: var(--btn-info);
  text-decoration: underline;
}

.text-muted2 {
  color: #00000030;
  font-size: 1rem;
  font-weight: 400;
  margin: 0px;
}

.text-dark2 {
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  margin: 0px;
}

.minWidthForm {
  max-width: 150px !important;
}

.small_text {
  font-size: 0.85rem;
  font-weight: 400;
}

@media screen and (max-width: 500px) {
  .text-muted2 {
    font-size: 0.8rem;
    margin: 0px;
  }

  .text-dark2 {
    font-size: 0.8rem;
    margin: 0px;
  }

  .stepper-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .stepper-line {
    margin: auto;
    width: 30px;
  }

  .minWidthForm {
    max-width: 88px !important;
  }

  .themeBtn2 {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 700px) {
  .themeBtn2 {
    width: 100%;
    margin-top: 0.5rem;
  }

  .contact-info-card {
    height: auto;
  }

  .contact-card {
    height: auto;
  }
}


.processing-container {
  background: linear-gradient(to right, #6e8efb, #a777e3);
  color: #fff;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}

.processing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.8s ease-in-out;
}

.processing-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.processing-card p {
  font-size: 1.1rem;
  color: #f1f1f1;
}

.loader {
  width: 100px;
  height: 100px;
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top: 10px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

.cancel-icon {
  font-size: 4rem;
  color: #ff4d4f;
  margin-bottom: 1rem;
  animation: pulse 1s infinite ease-in-out;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.8);
    opacity: 0.8;
  }
}




.city_images {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Custom Styling for the landing page */
.text-orange {
  color: #ff6a00 !important;
}

.bg-orange {
  background-color: #ff6a00 !important;
}

.bg-orange-subtle {
  background-color: rgba(255, 106, 0, 0.1) !important;
}

.btn-orange {
  background-color: #ff6a00;
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.btn-orange:hover,
.btn-orange:focus {
  background-color: #e65c00;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 106, 0, 0.3) !important;
}

.hover-lift {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08) !important;
}

.hover-card {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(255, 106, 0, 0.3) !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #fff3eb;
  color: #ff6a00;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(255, 106, 0, 0.2) !important;
}

.custom-table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem !important;
}

.custom-table tbody tr {
  transition: all 0.2s ease;
}

.custom-table tbody tr:hover {
  background-color: #f8f9fa !important;
  transform: scale(1.01);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hover-bg-white:hover {
  background-color: white !important;
  color: #333 !important;
}

.hover-underline:hover {
  text-decoration: underline !important;
}

.text-shadow-sm {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.transition-all {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .display-6 {
    font-size: 2rem;
  }

  /* Responsive Table Styles */
  .custom-table thead {
    display: none;
  }

  .custom-table tbody tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .custom-table tbody td {
    display: block;
    text-align: right !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    position: relative;
    padding: 1rem 1rem 1rem 50% !important;
    min-height: 50px;
  }

  .custom-table tbody td:last-child {
    border-bottom: none !important;
  }

  .custom-table tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
  }
}

/* Landing Page Inline CSS Replacements */
.bg-cover-center {
  background-size: cover;
  background-position: center;
}

.trust-strip-bg {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-facts-bg {
  background: linear-gradient(90deg, #111111 0%, #2a2a2a 100%);
  margin-top: -20px;
}

.fact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-60 {
  width: 60px;
  height: 60px;
}

.max-w-800 {
  max-width: 800px;
}

.h-500 {
  height: 500px;
}

.process-line {
  width: 2px;
  height: 100%;
  left: 24px;
  top: 0;
  z-index: 0;
}

.step-circle-lg {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
}

.bg-gradient-light {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.max-w-600 {
  max-width: 600px;
}

.bg-dark-gray {
  background-color: #1a1a1a;
}

.reviews-bg {
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.85);
  background-attachment: fixed;
}

.review-card-custom {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 4px solid #ff6a00 !important;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  font-weight: bold;
  font-size: 1.2rem;
}

.highlight-row {
  background-color: rgba(255, 106, 0, 0.05);
}

.alert-custom {
  max-width: 900px;
  background-color: #fff3eb;
  color: #cc5500;
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.max-w-900 {
  max-width: 900px;
}

.cta-bg {
  background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
}

.cta-shapes {
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.1) 0%, transparent 40%), radial-gradient(circle at bottom left, rgba(255, 106, 0, 0.1) 0%, transparent 40%);
  z-index: 1;
}
.translate-middle-x {
    display: none !important;
}