* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --main-color: #d60000;
  --primary-color: #00275b;
  --secondary-color: #314c13;
  --tertiary-color: #6a6a68;
}

a {
  text-decoration: none !important;
}

p {
  color: var(--tertiary-color);
}

main {
  max-width: 1500px;
  margin: 0 auto;
  /* overflow: hidden; */
}

header {
  position: sticky;
  width: 100%;
  top: 0;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #00275b24;
  /* overflow: hidden; */
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  width: 150px;
}

.navigation-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

/* TOUR DROPDOWN */
.tour-drop {
  position: relative;
  cursor: pointer;
}

/* link + icon alignment */
.tour-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--text);
}

/* icon animation */
.tour-link i {
  transition: 0.3s ease;
}

/* rotate icon */
.tour-drop:hover .tour-link i {
  transform: rotate(180deg);
}

/* DROPDOWN BOX */
.dropdown-tour {
  position: absolute;
  top: 130%;
  /* show below */
  left: 0;
  min-width: 240px;
  width: 100%;
  background: white;
  border-radius: 12px;
  padding: 10px 0;

  /* premium shadow */
  box-shadow:
    rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;

  /* hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* show dropdown */
.tour-drop:hover .dropdown-tour {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* dropdown links */
.dropdown-tour a {
  display: block;
  padding: 3px 20px;
  color: var(--text);
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}

/* hover effect */
.dropdown-tour a:hover {
  background: #00275b3b;
  padding-left: 25px;
  color: #00275b;
}

.contact-btn {
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);

  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  background: var(--secondary-color);
  color: white;
}

/* .contact-btn span {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50px;
} */

.contact-btn span i {
  font-size: 18px;
}

.contact-btn .user-text {
  margin-top: 1px !important;
  color: white;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  /* max-height: 100vh; */
  background:
    linear-gradient(rgba(120, 119, 119, 0.116), rgba(255, 255, 255, 0.194)),
    url("../media/hero1.webp");
  /* aspect-ratio: 16/9; */
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
  max-width: 900px;
}

.hero h1 {
  font-size: 70px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  color: #eee;
}

/* BUTTONS */
.pills {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  backdrop-filter: blur(10px);
}

/* Search Baar */
.search-card {
  background: #fff;
  border-radius: 16px;
  min-width: 100%;
  padding: 25px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.276);
}

/* search-lable */
.search-lable {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* Input */
.custom-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  border-radius: 3px;
  padding: 10px;
  font-size: 16px;
  color: #333;
  background: transparent;
}

.custom-input:focus {
  outline: none;
  border-color: var(--main-color);
}

/* Date icon right */
.date-wrapper {
  position: relative;
}

.date-wrapper i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
}

/* Hide default calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Divider (desktop only) */
.divider {
  border-left: 1px solid var(--primary-color);
  height: 60px;
}

/* Button */
.search-btn {
  background: var(--main-color);
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.search-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Support Home section */
.support-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  /* padding: 20px 0; */
  flex-wrap: wrap;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.support-card .support-icon {
  width: 40px;
  height: 40px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-weight: bold;
}

.support-card:nth-child(1) .support-icon {
  background: rgba(5, 255, 5, 0.103);
  color: rgb(0, 255, 0);
}

.support-card:nth-child(2) .support-icon {
  background: oklch(97.7% 0.013 236.62);
  color: #0084d1;
}

.support-card:nth-child(3) .support-icon {
  background: oklch(98.7% 0.022 95.277);
  color: oklch(66.6% 0.179 58.318);
}

.support-card .support-icon i {
  font-size: 20px;
}

.support-content p {
  font-weight: 200;
  color: rgba(128, 128, 128, 0.685);
  font-size: 14px;
}

/* Cards Section All Packages */

.package-heading {
  font-family:
    "Instrument Sans", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: oklch(0.704 0.04 256.788);
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.package-heading .line-heading {
  width: 30px !important;
  height: 1px !important;
  background: oklch(0.704 0.04 256.788);
}

.tour-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.card-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.rating i {
  font-size: 14px;
  color: var(--primary-color);
}

.rating strong {
  font-size: 15px;
  margin-right: 5px;
}

.price {
  color: var(--main-color);
  /* red tone */
  font-weight: 700;
}

.btn-reserve {
  background: var(--primary-color);
  color: white;
  border: none;
}

.btn-reserve:hover {
  background: var(--secondary-color);
  color: white;
}

.tour-card hr {
  color: rgba(137, 137, 137, 0.539);
  margin: 10px 0 !important;
}

/* category & Destinations */
.package-heading.second-heading {
  color: var(--primary-color);
  font-weight: bold;
}

.category-btn {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color);
}

.category-content {
  padding: 10px;
}

.category-content p,
.category-content h4 {
  margin-bottom: 0;
  color: white;
  /* backdrop-filter: blur(2px); */
  border-radius: 2px;
  font-weight: 400;
}

/* .second-card .second-inner{
background: radial-gradient(circle at top, #1f1f1f, #000000 70%);
} */

.category-content p {
  font-family:
    "Instrument Sans", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 13px;
  font-weight: 400;
  line-height: 16.5px;
  color: oklab(0.999994 0.0000455678 0.0000200868 / 0.75);
}

.card-img {
  transition: 0.4s ease;
}

.second-card:hover .card-img {
  scale: 1.09;
}

.travel-content .icon {
  min-width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.travel-content .icon.icon1 {
  background: #398cf914;
  color: blue;
}

.travel-content .icon.icon2 {
  background: #55ff8b1b;
  color: rgb(0, 255, 64);
}

.travel-content .icon.icon3 {
  background: #f9f93913;
  color: var(--main-color);
}

.travel-content .icon.icon4 {
  background: #fff1f2;
  color: #ff2056;
}

.travel-content .icon.icon5 {
  background: #398cf914;
  color: blue;
}

.travel-content .icon.icon6 {
  background: #f0fdfa;
  color: #16a094;
}

.newdetail-card {
  font-size: 13px;
}

.newdetail-card i {
  color: #00275b99;
  font-size: 14px;
  /* font-weight: bold; */
}

/* ========================Package Card Carousel=================== */
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.436);
}

.carousel-indicators .active {
  width: 20px;
  border-radius: 10px;
  background: #fff;
}

.carousel-item img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
}

.carousel-item-detail img {
  aspect-ratio: 16/9;
}

/* ========================Package Card Carousel=================== */

/* ========================Gallery Page=================== */
/* MAIN WRAPPER */
.gallery-section .gallery-masonry {
  column-count: 4;
  column-gap: 16px;
}

/* ITEM */
.gallery-section .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.gallery-section .gallery-item img {
  width: 100%;
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-section .gallery-item:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.gallery-section .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: 0.3s;
}

.gallery-section .gallery-item:hover::after {
  opacity: 1;
}

/* ========================Gallery Page=================== */

/* ========================Contact Page=================== */

/* LEFT SIDE */
.contact-left small {
  letter-spacing: 2px;
  color: var(--main-color);
  font-weight: 600;
}

.contact-left h2 {
  font-weight: 700;
  color: var(--primary-color);
}

.contact-left p {
  color: var(--tertiary-color);
}

.info-box {
  margin-top: 30px;
}

.info-box div {
  margin-bottom: 20px;
}
.info-box div a {
  color: var(--tertiary-color);
}
.info-box div a:hover {
  color: var(--primary-color);
}

.info-box i {
  color: var(--main-color);
  margin-right: 8px;
}
.info-box div i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* TAGS */
.tags a {
  display: inline-block;
  padding: 8px 14px;
  background: #eef2f7;
  border-radius: 20px;
  margin: 5px;
  font-size: 13px;
  color: var(--primary-color);
  transition: 0.3s ease;
}

.tags a:hover {
  transform: translateY(-7px);
}

/* RIGHT CARD */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.178);
}

.contact-card small {
  color: var(--main-color);
  letter-spacing: 1px;
}

.contact-card h4 {
  font-weight: 600;
  color: var(--primary-color);
}

/* INPUT */
.primary-input {
  width: 100%;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
}

.primary-input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* BUTTON */
.btn-custom {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  width: 100%;
  font-weight: 500;
  transition: 0.3s;
}

.btn-custom:hover {
  background: var(--secondary-color);
}

/* MAP */
.map {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
}

/* ========================Contact Page=================== */

/* ===== FOOTER BASE ===== */
.footer {
  background: linear-gradient(135deg, #081a2e, #020d1f);
  color: #bcd0e5;
  padding: 70px 0 20px;
  font-family: "Segoe UI", sans-serif;
}

/* ===== LOGO ===== */
.footer-logo {
  width: 150px;
}

.footer-sub {
  font-size: 12px;
  letter-spacing: 5px;
  color: #00c3ff;
  margin-top: 5px;
  position: relative;
}

.footer-sub::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #00c3ff;
  margin-bottom: 8px;
}

/* ===== TEXT ===== */
.footer p {
  color: #9fb3c8;
  line-height: 1.8;
}

/* ===== HEADINGS ===== */
.footer h6 {
  color: #ffffff;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== LINKS ===== */
.footer a {
  display: block;
  color: #9fb3c8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.footer a:hover {
  color: #00c3ff;
  transform: translateX(5px);
}

/* ===== CONTACT ===== */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: #00c3ff;
  font-size: 18px;
  margin-top: 3px;
}
.contact-item span {
  font-size: 14px;
}

/* ===== LOGO STYLE ===== */
.brand-logo {
  max-width: 180px;
  width: 100%;
  opacity: 0.3;

  /* convert to white */
  filter: whitescale(100%) brightness(1);

  transition: all 0.4s ease;
}

/* ===== HOVER EFFECT ===== */
.brand-logo:hover {
  opacity: 1;

  /* restore original color */
  filter: grayscale(0%) brightness(1);

  transform: scale(1.05);
}

/* ========================Tour Detail Page Start=================== */

/* Wrapper */
.trip-section {
  padding: 30px 0 0;
}

/* Title */
.trip-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Info row */
.trip-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.trip-info i {
  margin-right: 5px;
}

/* Right icons */
.trip-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.trip-actions a i.active {
  color: red;
}

.trip-actions a {
  border: none;
  background: #f1f1f1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}

/* Images */
.trip-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
}

.trip-big img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.trip-small {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.trip-small img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

/* View all button */
.trip-view {
  position: relative;
}

.trip-view-btn {
  position: absolute;
  cursor: pointer;
  bottom: 15px;
  right: 15px;
  background: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: var(--tertiary-color);
  gap: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tour-overlay {
  display: none;
}

.carousell-detail {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  /* display: none; */
}

.close-carousell {
  cursor: pointer;
}

.detail-path p a {
  color: var(--tertiary-color);
  font-size: 14px;
}

.detail-path p i {
  color: var(--tertiary-color);
  font-size: 14px;
}

.tour-detail-tick p i {
  color: var(--primary-color);
  font-size: 10px;
}

.tour-detail-tick p {
  font-size: 13px;
}

.ae4-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #ddd;
  max-width: 100%;
}

/* Label */
.ae4-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* Date box */
.ae4-date-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ae4-date-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ae4-day {
  font-weight: 600;
}

.ae4-change-btn {
  background: none;
  border: none;
  font-size: 12px;
  color: #00275b;
}

/* Hidden date */
.ae4-hidden-date {
  display: none;
}

/* Time */
.ae4-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ae4-time {
  border: none;
  background: #eee;
  padding: 6px;
  border-radius: 20px;
  font-size: 12px;
}

.ae4-time.active {
  background: #00275b;
  color: #fff;
}

/* Options */
.ae4-option {
  display: flex;
  gap: 10px;
  /* align-items: start; */
  padding: 10px;
  border-radius: 10px;
  background: #f5f5f5;
  margin-bottom: 8px;
}

.ae4-option.active {
  border: 1px solid #000;
  background: #fff;
}

.ae4-option span {
  color: rgba(0, 0, 0, 0.717);
}

.ae4-option p {
  padding-left: 10px;
  font-size: 11px;
  display: none;
  margin-bottom: 0;
}

/* show paragraph when radio checked */
.ae4-option input:checked ~ div p {
  display: block;
}

/* Hotels */
.hotel-choose {
  display: flex;
  gap: 10px;
  /* align-items: start; */
  padding: 10px;
  border-radius: 10px;
  background: #f5f5f5;
  margin-bottom: 8px;
}

.hotel-choose.active {
  border: 1px solid #000;
  background: #fff;
}

.hotel-choose span {
  color: rgba(0, 0, 0, 0.717);
}

.hotel-choose p {
  padding-left: 10px;
  font-size: 11px;
  display: none;
  margin-bottom: 0;
}

/* show paragraph when radio checked */
.hotel-choose input:checked ~ div p {
  display: block;
}

/* Row */
.ae4-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Counter */
.ae4-counter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ae4-counter button {
  width: 26px;
  height: 26px;
  border: none;
  background: #eee;
  border-radius: 4px;
}

/* Total */
.ae4-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.ae4-price span {
  font-size: 12px;
}

/* Points */
.ae4-points {
  font-size: 12px;
  margin: 5px 0;
}

/* Button */
.ae4-btn {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  border: none;
  margin-top: 10px;
  transition: 0.3s ease;
}

.ae4-btn:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  color: white;
}

/* Customers Review and Feedback Section */
/* Card */
.ae-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  border: 1px solid #eee;
  height: 100%;
}

/* User */
.ae-review-user {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* Stars */
.ae-review-stars {
  color: #f5a623;
  font-size: 14px;
}

/* Text */
.ae-review-text {
  font-size: 14px;
  color: #444;
}

/* Gallery */
.ae-review-gallery {
  display: flex;
  gap: 6px;
}

.ae-review-gallery img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

/* Button */
.ae-review-btn {
  border: none;
  background: #00275b;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
}

/* Overlay */
.ae-review-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  z-index: 9999;
  padding: 15px;
}

/* Modal box */
.ae-review-modal-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: aeReviewFade 0.3s ease;
}

/* Animation */
@keyframes aeReviewFade {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Header */
.ae-review-modal-box h5 {
  font-weight: 600;
}

.ae-review-close {
  cursor: pointer;
  background: #f1f5f9;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.ae-review-close:hover {
  background: #e2e8f0;
}

/* Inputs */
.ae-review-input,
.ae-review-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  transition: 0.2s;
}

.ae-review-input:focus,
.ae-review-textarea:focus {
  border-color: #00275b;
  box-shadow: 0 0 0 2px rgba(0, 39, 91, 0.1);
  outline: none;
}

.ae-review-textarea {
  height: 90px;
  resize: none;
}

/* Stars */
.ae-review-star-input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.ae-review-star-input span {
  font-size: 26px;
  cursor: pointer;
  color: #d1d5db;
  transition: 0.2s;
}

.ae-review-star-input span.active {
  color: #f59e0b;
  transform: scale(1.1);
}

/* Upload */
.ae-review-file {
  border: 1px dashed #d1d5db;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
  background: #fafafa;
}

/* Preview */
.ae-review-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ae-review-preview img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
}

/* Button */
.ae-review-submit {
  width: 100%;
  background: #00275b;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.2s;
}

.ae-review-submit:hover {
  opacity: 0.9;
}

/* timeline */

.ae-timeline {
  position: relative;
  padding-left: 36px;
  margin-bottom: 30px;
}

.ae-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 13px;
  bottom: 0;
  width: 1.5px;
  background: var(--primary-color);
}

/* item */

.ae-item {
  position: relative;
  padding-bottom: 18px;
}

/* meeting dot */

.ae-dot {
  position: absolute;
  left: -32px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* number */

.ae-step {
  position: absolute;
  left: -38px;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* heading */

.ae-place {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

/* time */

.ae-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

/* desc */

.ae-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #777;
  margin: 0;
}

/* hidden */

.ae-hidden {
  display: none;
}

/* button */

.ae-btn {
  border: none;
  background: none;
  padding: 0;
  margin-top: 4px;
  font-size: 14px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ae-btn i {
  transition: 0.3s;
}

.ae-btn.active i {
  transform: rotate(180deg);
}

/* ========================Tour Detail Page End=================== */

/* ========================Booking Details Page======================= */

/* TITLE */
.page-title {
  font-size: 22px;
  font-weight: 600;
}

/* STEP BOX */
.step-box {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

/* HEADER */
.step-header {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

/* LEFT HEADER */
.step-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

/* NUMBER */
.step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EDIT BTN */
.edit-btn {
  font-size: 13px;
  color: var(--main-color);
  cursor: pointer;
  display: none;
}

/* ACTIVE STEP */
.step-box.active .step-content {
  display: block;
}

/* INACTIVE */
.step-box.inactive {
  background: #fafafa;
}

.step-box.inactive .step-header {
  color: #9aa0a6;
}

.step-box.inactive .step-number {
  background: #d1d5db;
  color: #6b7280;
}

/* CONTENT */
.step-content {
  display: none;
  padding: 16px;
  border-top: 1px solid #eee;
}

/* NEXT BTN */
.next-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
}

/* SUMMARY */
.summary-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e5e5e5;
}

.muted {
  color: #6c757d;
  font-size: 14px;
}

.btn-detail {
  background: #cedcdf;
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tertiary-color);
  margin-bottom: 10px;
}

.btn-detail a {
  text-decoration: underline !important;
  padding: 0 5px;
  color: var(--primary-color);
}

.btn-detail i {
  color: var(--primary-color);
}

.ae24-traveller-box {
  margin-bottom: 38px;
}

.ae24-traveller-title {
  font-size: 18px;
  font-weight: 700;
  color: black;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ae24-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--tertiary-color);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ae24-mini-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--tertiary-color);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ae24-gap {
  margin-bottom: 18px;
}

.ae24-input {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1.3px solid #d8d8d8;
  padding: 0 14px;
  outline: none;
  background: #fff;
  font-size: 14px;
  color: var(--primary-color);
  transition: 0.3s ease;
}

.ae24-input::placeholder {
  color: var(--tertiary-color);
  text-transform: uppercase;
  font-size: 14px;
}

.ae24-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 39, 91, 0.05);
}

.ae24-form-row {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 14px;
}

.ae34-payment-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.ae34-payment-title span {
  color: var(--main-color);
  margin-right: 3px;
}

/* =========================
                CARD
        ========================= */

.ae34-payment-card {
  position: relative;

  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 16px;

  padding: 16px 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 14px;

  cursor: pointer;
  transition: 0.3s ease;

  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.ae34-payment-card:hover {
  transform: translateY(-1px);

  border-color: rgba(214, 0, 0, 0.15);
}

/* active */

.ae34-payment-card.active {
  border: 1.5px solid rgba(214, 0, 0, 0.18);

  background: linear-gradient(to right, rgba(214, 0, 0, 0.02), #fff);
}

/* radio */

.ae34-radio {
  position: relative;

  min-width: 24px;
  width: 24px;
  height: 24px;

  border-radius: 50%;
  border: 1.5px solid #f59e0b;

  display: flex;
  align-items: center;
  justify-content: center;
}

.ae34-radio::before {
  content: "";

  width: 10px;
  height: 10px;

  border-radius: 50%;
  background: transparent;

  transition: 0.3s ease;
}

.ae34-payment-card.active .ae34-radio::before {
  background: var(--main-color);
}

/* logo */

.ae34-payment-logo {
  height: 34px;
  object-fit: contain;
}

/* content */

.ae34-payment-content {
  flex: 1;
}

.ae34-payment-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 3px;
}

.ae34-payment-content p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* badge */

.ae34-badge {
  background: rgba(0, 39, 91, 0.06);
  color: var(--primary-color);

  padding: 5px 10px;
  border-radius: 30px;

  font-size: 10px;
  font-weight: 600;
}

/* ========================Booking Details Page======================= */

/* ========================Login/Register Page======================= */

/* LAYOUT */
.auth-wrapper {
  display: flex;
  min-height: 90vh;
  background: url("../media/hero1.webp") center/cover no-repeat;
  object-position: center;
}

/* RIGHT SIDE */
.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #0000003f;
}

/* FORM BOX */
.auth-box {
  width: 100%;
  max-width: 420px;
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 10px;
}

/* TITLE */
.auth-title {
  font-size: 26px;
  font-weight: 600;
}

/* INPUT GROUP */
.input-group {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.input-group-text {
  background: #f8f9fa;
  border: none;
}

/* BUTTON */
.auth-btn {
  height: 48px;
  border-radius: 30px;
  background: #0b3d91;
  color: #fff;
  border: none;
  font-weight: 500;
}

.auth-btn:hover {
  background: #082c6c;
}

/* LINKS */
.auth-link {
  color: #0b3d91;
  cursor: pointer;
  font-size: 14px;
}

/* HIDE */
.hidden {
  display: none;
}

/* ========================Login/Register Page======================= */

/* wrapper */
.user-dropdown-wrapper {
  position: relative;
}

/* dropdown */
.user-dropdown {
  position: absolute;
  top: 70px;
  right: -43px;
  width: 270px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 999;
  scale: 0;
  transition: 0.3s ease;
}

/* show */
.user-dropdown.active {
  scale: 1;
}

/* header (grey top like screenshot) */
.dropdown-header {
  background: var(--primary-color);
  padding: 16px;
  font-weight: 500;
  font-size: 16px;
  color: white;
}

.dropdown-header i {
  color: white;
}

/* links */
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  transition: background 0.2s ease;
}

.user-dropdown a:hover {
  background: #f3f3f3;
}

/* icons */
.user-dropdown a i {
  font-size: 18px;
  color: #333;
}

/* ==================Booking Page========================= */

/* CARD */
.booking-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
}

/* HEADER */
.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

/* STATUS BADGE */
.status {
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

.status.confirmed {
  background: #e7f7ed;
  color: #1e7e34;
}

/* BODY */
.booking-body {
  padding: 20px;
}

.booking-img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* PRICE */
.price {
  font-weight: 700;
  color: #000;
}

/* EMPTY STATE */
.empty-state {
  padding: 80px 20px;
}

.empty-state i {
  font-size: 55px;
  color: #bbb;
}

/* ==================Booking Page========================= */

/* ==================Booking Details Page========================= */

/* CARD */
.detail-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* IMAGE */
.detail-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* STATUS */
.status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.status.confirmed {
  background: #e6f7ea;
  color: #1e7e34;
}

/* TEXT */
.booking-detail i {
  color: #555;
  margin-right: 5px;
}

/* BUTTONS */
.btn-dark {
  border-radius: 10px;
}

.btn-outline-danger {
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .detail-img {
    height: 200px;
  }
}

/* ==================Booking Details Page========================= */

/* ================= PROFILE SYSTEM ================= */

/* MAIN CARD */
.up-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* LEFT PANEL */
.up-sidebar {
  background: var(--primary-color);
  color: #fff;
  padding: 30px;
  text-align: center;
}

.up-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin-bottom: 15px;
}

.up-name {
  font-size: 20px;
  font-weight: 600;
}

.up-role {
  font-size: 13px;
  opacity: 0.7;
}

/* RIGHT CONTENT */
.up-content {
  padding: 30px;
}

/* INFO ROW */
.up-info {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.up-label {
  color: #777;
  font-size: 14px;
}

.up-value {
  font-weight: 600;
}

/* BADGE */
.up-badge {
  background: #e6f7ea;
  color: #1e7e34;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* BUTTON */
.up-btn {
  border-radius: 10px;
}

.card-newbuttons {
  width: 50%;
}

.hoverBtn:hover {
  background: var(--secondary-color);
  color: white;
}

/*========================
OVERLAY
========================*/

.ae-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 15px;
  backdrop-filter: blur(3px);
}

/*========================
MODAL
========================*/

.ae-modal-box {
  background: #fff;
  border-radius: 30px;

  max-width: 880px;
  width: 100%;

  max-height: 85vh;

  position: relative;

  animation: aeModal 0.4s ease;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

  overflow-y: auto;
  overflow-x: hidden;

  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* hide chrome scrollbar */

.ae-modal-box::-webkit-scrollbar {
  display: none;
}

/* animation */

@keyframes aeModal {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* close */

.ae-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-size: 14px;
}

/*========================
LEFT
========================*/

.ae-left {
  height: 100%;
  padding: 40px 30px;
  color: #fff;

  background:
    linear-gradient(rgba(0, 39, 91, 0.88), rgba(0, 39, 91, 0.88)),
    url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?q=80&w=1200&auto=format&fit=crop");

  background-size: cover;
  background-position: center;
}

/* badge */

.ae-badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  margin-bottom: 18px;
  color: white;
}

/* title */

.ae-left h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

/* text */

.ae-left p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* features */

.ae-feature {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ae-feature div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.ae-feature i {
  color: #fff;
}

/*========================
RIGHT
========================*/

.modal-header {
  background: var(--primary-color);
}

.ae-form-area {
  padding: 30px;
  overflow-y: scroll;
  height: 100%;
}

.ae-form-area h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.ae-form-area p {
  font-size: 13px;
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

/* input */

.ae-input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 15px;
  margin-bottom: 14px;
  /* font-size:13px; */
  outline: none;
  /* background:#fafafa; */
  transition: 0.3s;
}

.ae-input:focus {
  border-color: var(--primary-color);
  background: #fff;
}

/* textarea */

.ae-textarea {
  height: 90px;
  /* resize: none; */
  padding-top: 14px;
}

.new-textarea {
  height: 130px !important;
}

/* button */

.ae-submit-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.ae-submit-btn:hover {
  background: #b70000;
}

/*========================
WHATSAPP FLOAT
========================*/

.ae-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: linear-gradient(135deg, #25d366, #128c7e);

  display: flex !important;
  align-items: center;
  justify-content: center;

  z-index: 99999;

  box-shadow:
    0 10px 30px rgba(18, 140, 126, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  animation:
    aeFloat 2.5s ease-in-out infinite,
    aePulse 2.5s infinite;

  transition: 0.3s;
}

/* image */

.ae-whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* hover */

.ae-whatsapp-float:hover {
  transform: scale(1.08);
}

/* floating */

@keyframes aeFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }

  100% {
    transform: translateY(0);
  }
}

/* pulse */

@keyframes aePulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.45),
      0 10px 30px rgba(18, 140, 126, 0.35);
  }

  70% {
    box-shadow:
      0 0 0 16px rgba(37, 211, 102, 0),
      0 10px 30px rgba(18, 140, 126, 0.35);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 10px 30px rgba(18, 140, 126, 0.35);
  }
}

/* ===================================Blog Page ================================ */

/*=========================
BLOG HERO
=========================*/

.ae-blog-hero {
  background:
    linear-gradient(rgba(0, 39, 91, 0.82), rgba(0, 39, 91, 0.82)),
    url("../media/hero2.webp");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  border-radius: 0 0 30px 30px;
}

.ae-blog-title {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 15px;
}

.ae-blog-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 700px;
  line-height: 1.9;
}
/*=================== my CSS ====================== */
.wishlist-btn {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.3s ease;

  background: #fff;
}

.wishlist-btn i {
  font-size: 18px;

  color: #666;

  transition: 0.3s ease;
}

.wishlist-btn.active i {
  color: #ff2e63;
}

.wishlist-btn:hover {
  transform: scale(1.08);
}

.wishlist-btn:hover i {
  color: #ff2e63;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  z-index: 999;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.search-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-item:hover {
  background: #f5f5f5;
}

.search-item a {
  text-decoration: none;
  color: #000;
  display: block;
}

.search-suggestions {
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-item img {
  flex-shrink: 0;
}

/*=========================
SEARCH
=========================*/

.ae-blog-search {
  background: #fff;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.ae-blog-search input {
  border: none;
  height: 56px;
  border-radius: 14px;
  background: #f7f8fb;
  padding: 0 18px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.ae-blog-search button {
  height: 56px;
  border: none;
  border-radius: 14px;
  background: var(--main-color);
  color: #fff;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}

/*=========================
BLOG CARD
=========================*/

.ae-blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
  height: 100%;
}

.ae-blog-card:hover {
  transform: translateY(-6px);
}

.ae-blog-img {
  height: 260px;
  overflow: hidden;
}

.ae-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.ae-blog-card:hover img {
  transform: scale(1.06);
}

.ae-blog-content {
  padding: 24px;
}

.ae-blog-tag {
  display: inline-block;
  background: rgba(214, 0, 0, 0.08);
  color: var(--main-color);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.ae-blog-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin-bottom: 12px;
}

.ae-blog-text {
  font-size: 14px;
  color: var(--tertiary-color);
  line-height: 1.9;
  margin-bottom: 18px;
}

.ae-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.ae-blog-date {
  font-size: 13px;
  color: #777;
}

.ae-blog-btn {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
}

/*=========================
SIDEBAR
=========================*/

.ae-sidebar {
  position: sticky;
  top: 20px;
}

.ae-sidebar-box {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ae-sidebar-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--primary-color);
}

/* recent post */

.ae-recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.ae-recent-post img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
}

.ae-recent-post h6 {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
  font-weight: 700;
}

.ae-recent-post span {
  font-size: 12px;
  color: #777;
}

/* category */

.ae-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ae-category-list li {
  margin-bottom: 12px;
}

.ae-category-list a {
  text-decoration: none;
  background: #f7f8fb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  color: #111;
  font-size: 14px;
  transition: 0.3s;
}

.ae-category-list a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* pagination */

.ae-pagination .page-link {
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px !important;
  margin: 0 5px;
  color: #111;
  box-shadow: none;
}

.ae-pagination .active .page-link {
  background: var(--main-color);
}

/* blog detail Page */

.ae-detail-wrap {
  padding: 60px 0;
}

.ae-detail-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ae-detail-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.ae-detail-content {
  padding: 35px;
}

.ae-detail-tag {
  display: inline-block;
  background: rgba(214, 0, 0, 0.08);
  color: #d60000;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.ae-detail-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
}

.ae-detail-meta {
  display: flex;
  gap: 20px;
  color: #777;
  font-size: 13px;
  margin-bottom: 26px;
}

.ae-detail-text {
  color: #666;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}

/* blog detail Page */

/* ===============================Plan Your Tour========================== */

.ae-form-wrap {
  width: 100%;
  overflow: hidden;
}

.ae-form-card {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #e5eaf2;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

/* STEP HEAD */
.ae-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  overflow: hidden;
}

.ae-step-item {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

.ae-step-item.active {
  color: #0d6efd;
}

/* PROGRESS */
.ae-progress {
  width: 100%;
  height: 6px;
  background: #e7edf5;
  border-radius: 50px;
  overflow: hidden;
  margin: 18px 0 28px;
}

.ae-progress-bar {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #0d6efd, #1da1ff);
  border-radius: 50px;
  transition: 0.4s ease;
}

/* STEP */
.ae-form-step {
  display: none;
  width: 100%;
  overflow: hidden;
  animation: aeFade 0.35s ease;
}

.ae-form-step.active {
  display: block;
}

@keyframes aeFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ae-form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #0f172a;
}

/* INPUT */
.ae-input {
  width: 100%;
  max-width: 100%;
  height: 50px;
  border-radius: 14px;
  border: 1px solid #dbe4f0;
  padding: 10px 16px;
  font-size: 13px;
  outline: none;
  background: #fff;
  transition: 0.3s;
  box-shadow: none;
}

.ae-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.08);
}

/* COUNTER */
.ae-counter-box {
  border: 1px solid #dbe4f0;
  border-radius: 18px;
  padding: 16px;
  overflow: hidden;
}

.ae-counter-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 5px;
}

.ae-counter-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ae-count-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dbe4f0;
  background: #fff;
  font-size: 18px;
  flex-shrink: 0;
  transition: 0.3s;
}

.ae-count-btn:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.ae-count-value {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

/* BUTTONS */
.ae-btns {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ae-end-btn {
  justify-content: flex-end;
}

.ae-btn {
  height: 42px;
  border: none;
  border-radius: 50px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.ae-next-btn {
  background: linear-gradient(90deg, #0d6efd, #1da1ff);
  color: #fff;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.18);
}

.ae-next-btn:hover {
  transform: translateY(-2px);
}

.ae-btn-light {
  background: #fff;
  border: 1px solid #dbe4f0;
  color: #0f172a;
}

/* SUCCESS */
.ae-success {
  text-align: center;
  padding: 15px 0;
}

.ae-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(90deg, #0d6efd, #1da1ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: auto auto 18px;
}

.ae-success h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ae-success p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ===============================Plan Your Tour========================== */

/* ===============================Custom Callender========================== */

/* Calendar */
.ae4-calendar {
  display: none;
  margin-top: 22px;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid #edf0f7;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.ae4-calendar.active {
  display: block;
  animation: ae4Fade 0.3s ease;
}

@keyframes ae4Fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.ae4-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.ae4-month {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.ae4-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 0;
  background: #f3f6fc;
  color: #111;
  transition: 0.3s;
}

.ae4-nav-btn:hover {
  background: #002b6b;
  color: #fff;
}

/* Weekdays */
.ae4-weekdays,
.ae4-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.ae4-weekdays {
  margin-bottom: 14px;
}

.ae4-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
}

/* Days */
.ae4-days button {
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: #f7f8fc;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  transition: 0.25s;
  position: relative;
}

.ae4-days button:hover {
  background: #e8efff;
  transform: translateY(-2px);
}

.ae4-days button.active {
  background: linear-gradient(135deg, #002b6b, #0046ad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 70, 173, 0.25);
}

.ae4-days button.today {
  border: 2px solid #002b6b;
}

.ae4-empty {
  visibility: hidden;
}

/* ===============================Custom Callender========================== */

/* ================================FAQ========================= */

.ae12-hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.ae12-hero-line {
  width: 70px;
  height: 2px;
  background: var(--main-color);
  margin: auto;
  margin-bottom: 24px;
}

.ae12-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0f172a;
  letter-spacing: -1px;
}

.ae12-hero-subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  color: #64748b;
  line-height: 1.9;
}

/* =========================
                FAQ
        ========================= */

.ae12-faq-section {
  padding-bottom: 90px;
}

.ae12-faq-wrapper .row {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 22px;
}

.ae12-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ae12-faq-card {
  border: 1px solid #edf1f5 !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  transition: 0.25s ease;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.ae12-faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.ae12-faq-card.active {
  border-left: 3px solid var(--main-color) !important;
}

.ae12-faq-btn {
  background: #fff !important;
  box-shadow: none !important;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ae12-faq-icon {
  min-width: 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
}

.ae12-red {
  background: #fff2f2;
  color: #ff3535;
}

.ae12-blue {
  background: #eef4ff;
  color: #2c66ff;
}

.ae12-yellow {
  background: #fff8ec;
  color: #f59e0b;
}

.ae12-green {
  background: #eef9ef;
  color: #38b000;
}

.ae12-orange {
  background: #fff5e9;
  color: #ff9800;
}

.ae12-pink {
  background: #fff0f7;
  color: #ff2d7a;
}

.ae12-faq-question {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  flex: 1;
  line-height: 1.5;
}

.ae12-faq-btn::after {
  width: 15px;
  height: 15px;
  background-size: 15px;
}

.ae12-faq-body {
  padding: 0 22px 22px 83px;

  color: #64748b;
  line-height: 1.9;
  font-size: 14px;

  border-top: 1px solid #f4f5f7;
}

/* =========================
                CTA
        ========================= */

.ae12-cta-box {
  margin-top: 50px;
  border: 1px solid #edf1f5;
  border-radius: 18px;
  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.ae12-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ae12-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary-color);
  font-size: 17px;
}

.ae12-cta-left p {
  margin: 0;
  font-size: 15px;
  color: #475569;
}

.ae12-contact-btn {
  min-width: 150px;
  height: 46px;
  border-radius: 50px;
  border: 1.5px solid var(--main-color);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.ae12-contact-btn:hover {
  background: var(--main-color);
  color: #fff;
}

/* ================================FAQ========================= */

/* =========================Footer Bottom======================== */

/* wrapper */

.ae90-footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  /* flex-wrap: wrap; */
}

/* left */

.ae90-footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ae90-footer-left p {
  margin: 0;

  font-size: 14px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.85);

  letter-spacing: 0.2px;
}

.ae90-footer-left span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.ae90-footer-left span a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.ae90-footer-left span a:hover {
  color: var(--main-color);
}

/* right */

.ae90-footer-right {
  display: flex;
  align-items: center;
  gap: 22px;

  flex-wrap: wrap;
}

.ae90-footer-right a {
  position: relative;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.78);

  transition: 0.3s ease;
}

/* hover line */

.ae90-footer-right a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1.5px;

  background: var(--main-color);

  transition: 0.3s ease;
}

.ae90-footer-right a:hover {
  color: #fff;
}

.ae90-footer-right a:hover::after {
  width: 100%;
}

/* =========================Footer Bottom======================== */

/* =========================================Responsive Style Css==================================== */

@media (max-width: 1200px) {
  .gallery-section .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -200%;
    width: 100%;
    background: white;
    flex-direction: column;
    flex-direction: column;
    padding: 20px;
    transition: 0.3s;
  }

  .nav-links.active {
    left: -1px;
  }

  .dropdown-tour {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
  }

  .tour-drop.active .dropdown-tour {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 40px;
  }

  .search-box {
    min-width: 700px;
    gap: 10px;
  }

  .ae-modal-box {
    max-width: 500px;

    border-radius: 24px;
  }

  .ae-form-area {
    padding: 24px;
  }

  .ae-blog-title {
    font-size: 38px;
  }

  .ae-blog-img {
    height: 220px;
  }

  .ae12-hero-title {
    font-size: 40px;
  }

  .ae12-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .search-box {
    min-width: 0;
    gap: 10px;
    padding: 15px 20px;
  }

  .card-img {
    height: 200px;
  }

  /* footer start */

  .footer-logo {
    font-size: 26px;
  }

  .footer {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }

  /* footer End */

  .gallery-section .gallery-masonry {
    column-count: 2;
  }

  .contact-left {
    margin-bottom: 30px;
    margin-top: 0;
  }

  .contact-right {
    margin: 0 !important;
    margin-bottom: 30px;

    padding: 0 !important;
  }

  .contact-card {
    padding: 20px;
  }

  .divider {
    display: none;
  }

  .custom-input {
    padding: 5px 0;
    font-size: 13px;
  }

  .search-btn {
    width: 100%;
    margin-top: 20px;
    font-size: 12px;
    padding: 12px;
  }

  .trip-actions {
    /* display:none; */
    flex-direction: column;
    align-items: end;
  }

  .trip-gallery {
    display: none;
  }

  .tour-overlay {
    display: block;
  }

  .close-carousell {
    display: none;
  }

  .trip-big img {
    height: 250px;
  }

  .trip-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 13px;
  }

  .trip-info {
    gap: 10px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  /* login Register page */

  .auth-right {
    padding: 30px 20px;
  }

  .auth-title {
    font-size: 22px;
    text-align: center;
  }

  .auth-box {
    max-width: 100%;
  }

  .hero-text {
    display: none;
  }

  .contact-btn {
    padding: 0;
    border-radius: 0;
    border: none;
    font-weight: 500;
    background: none;
    color: var(--primary-color);
  }

  .contact-btn span i {
    font-size: 25px;
  }

  .contact-btn span {
    padding: 0;
    margin: 0;
  }

  .contact-btn .user-text {
    display: none;
  }

  .booking-body {
    text-align: center;
  }

  .booking-img {
    height: 180px;
    margin-bottom: 15px;
  }

  .up-sidebar {
    padding: 20px;
  }

  .up-avatar {
    width: 100px;
    height: 100px;
  }

  .ae-place {
    font-size: 14px;
  }

  .ae-desc,
  .ae-time {
    font-size: 13px;
  }

  .ae-form-card {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .ae-step-item {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .ae-form-title {
    font-size: 18px;
  }

  .ae24-traveller-section {
    padding: 22px 0;
  }

  .ae24-traveller-box {
    margin-bottom: 28px;
  }

  .ae24-traveller-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .ae24-label {
    font-size: 12px;
  }

  .ae24-mini-label {
    font-size: 11px;
  }

  .ae24-gap {
    margin-bottom: 16px;
  }

  .ae24-input {
    height: 42px;
    font-size: 13px;
    border-radius: 9px;
    padding: 0 12px;
  }

  .ae24-input::placeholder {
    font-size: 13px;
  }

  .ae34-payment-title {
    font-size: 18px;
  }

  .ae34-payment-card {
    padding: 14px;
    gap: 12px;
    border-radius: 14px;

    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ae34-payment-logo {
    height: 28px;
  }

  .ae34-payment-content h4 {
    font-size: 14px;
  }

  .ae34-payment-content p {
    font-size: 11px;
  }

  .ae34-badge {
    margin-left: 38px;
  }

  .ae12-hero-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .ae12-hero-subtitle {
    font-size: 14px;
  }

  .ae12-faq-btn {
    padding: 16px;
    gap: 12px;
  }

  .ae12-faq-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .ae12-faq-question {
    font-size: 15px;
  }

  .ae12-faq-body {
    padding: 0 16px 18px 16px;

    font-size: 13px;
    line-height: 1.8;
  }

  .ae12-cta-box {
    padding: 18px;
  }

  .ae12-cta-left {
    align-items: flex-start;
  }

  .ae12-contact-btn {
    width: 100%;
  }

  .ae12-footer {
    text-align: center;
  }

  .ae12-footer-text {
    margin: auto;
    margin-bottom: 30px;
  }

  .ae90-footer-bottom {
    padding: 18px 0;
  }

  .ae90-footer-bottom-wrap {
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 16px;
  }

  .ae90-footer-left p {
    font-size: 13px;
    line-height: 1.7;
  }

  .ae90-footer-left span {
    font-size: 12px;
  }

  .ae90-footer-right {
    gap: 14px;
  }

  .ae90-footer-right a {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .brand-logo {
    max-width: 140px;
  }

  .ae4-card {
    padding: 15px;
  }

  .ae-review-gallery img {
    width: 60px;
    height: 60px;
  }

  .ae-overlay {
    padding: 10px;
  }

  .ae-modal-box {
    border-radius: 20px;
    max-height: 70vh;
  }

  .ae-form-area {
    padding: 18px;
  }

  .ae-form-area h3 {
    font-size: 22px;
  }

  .ae-submit-btn {
    height: 48px;
  }

  .ae-whatsapp-float {
    width: 56px;
    height: 56px;

    right: 14px;
    bottom: 14px;
  }

  .ae-whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .ae-blog-hero {
    padding: 70px 0;
  }

  .ae-blog-title {
    font-size: 30px;
  }

  .ae-blog-heading {
    font-size: 20px;
  }

  .ae-sidebar-box,
  .ae-blog-content {
    padding: 18px;
  }

  .ae-detail-content {
    padding: 20px;
  }

  .ae-detail-title {
    font-size: 28px;
  }

  .ae-detail-img img {
    height: 250px;
  }

  .ae4-calendar {
    padding: 18px;
    border-radius: 22px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ae-review-modal-box {
    padding: 16px;
  }
}

/* enquiry box popup */

/* OVERLAY */

.lux-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999999;
  overflow-y: auto;
}

/* POPUP */

.lux-popup {
  width: 100%;
  max-width: 950px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  animation: luxFade 0.35s ease;
  max-height: 95vh;
  overflow-y: auto;
}

/* SCROLLBAR */

.lux-popup::-webkit-scrollbar {
  width: 6px;
}

.lux-popup::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 20px;
}

/* ANIMATION */

@keyframes luxFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CLOSE BUTTON */

.lux-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  font-size: 17px;
  cursor: pointer;
  z-index: 20;
}

/* WRAPPER */

.lux-wrapper {
  display: flex;
  min-height: 620px;
}

/* LEFT */

.lux-left {
  width: 42%;
  position: relative;
  background: url("https://images.unsplash.com/photo-1564507592333-c60657eea523?q=80&w=1200&auto=format&fit=crop")
    center/cover no-repeat;
  color: #fff;
}

.lux-left-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 36, 92, 0.84);
}

.lux-left-content {
  position: relative;
  z-index: 2;
  padding: 38px 30px;
}

.lux-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.lux-left h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
}

.lux-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.lux-features {
  list-style: none;
}

.lux-features li {
  margin-bottom: 15px;
  font-size: 16px;
}

/* RIGHT */

.lux-right {
  width: 58%;
  padding: 34px 28px;
}

.lux-right h3 {
  font-size: 38px;
  color: #032c6c;
  margin-bottom: 10px;
}

.lux-subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* GRID */

.lux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

/* INPUT */

.lux-input,
.lux-textarea {
  width: 100%;
  border: 1px solid #d8dfeb;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: 0.3s;
}

.lux-input:focus,
.lux-textarea:focus {
  border-color: #0a58ca;
}

/* LABEL */

.lux-label {
  display: block;
  margin-bottom: 10px;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

/* FULL */

.lux-full {
  margin-bottom: 16px;
}

/* TEXTAREA */

.lux-textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 22px;
}

/* BUTTON */

.lux-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 14px;
  background: #df0000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.lux-btn:hover {
  background: #bf0000;
}

/* DATE FULL CLICK FIX */

.lux-input[type="date"] {
  position: relative;
  cursor: pointer;
}

.lux-input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 991px) {
  .lux-left {
    display: none;
  }

  .lux-right {
    width: 100%;
    padding: 26px 18px;
  }

  .lux-right h3 {
    font-size: 28px;
  }

  .lux-subtitle {
    font-size: 15px;
  }

  .lux-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lux-popup {
    border-radius: 18px;
  }
}

/* BODY SCROLL STOP */

body.lux-popup-open {
  overflow: hidden;
}
/* enquiry box popup */

/* OVERLAY */

.lux-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999999;
  overflow-y: auto;
}

/* POPUP */

.lux-popup {
  width: 100%;
  max-width: 950px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  animation: luxFade 0.35s ease;
  max-height: 95vh;
  overflow-y: auto;
}

/* SCROLLBAR */

.lux-popup::-webkit-scrollbar {
  width: 6px;
}

.lux-popup::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 20px;
}

/* ANIMATION */

@keyframes luxFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CLOSE BUTTON */

.lux-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
  font-size: 17px;
  cursor: pointer;
  z-index: 20;
}

/* WRAPPER */

.lux-wrapper {
  display: flex;
  min-height: 620px;
}

/* LEFT */

.lux-left {
  width: 42%;
  position: relative;
  background: url("https://images.unsplash.com/photo-1564507592333-c60657eea523?q=80&w=1200&auto=format&fit=crop")
    center/cover no-repeat;
  color: #fff;
}

.lux-left-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 36, 92, 0.84);
}

.lux-left-content {
  position: relative;
  z-index: 2;
  padding: 38px 30px;
}

.lux-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.lux-left h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
}

.lux-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.lux-features {
  list-style: none;
}

.lux-features li {
  margin-bottom: 15px;
  font-size: 16px;
}

/* RIGHT */

.lux-right {
  width: 58%;
  padding: 34px 28px;
}

.lux-right h3 {
  font-size: 38px;
  color: #032c6c;
  margin-bottom: 10px;
}

.lux-subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* GRID */

.lux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

/* INPUT */

.lux-input,
.lux-textarea {
  width: 100%;
  border: 1px solid #d8dfeb;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: 0.3s;
}

.lux-input:focus,
.lux-textarea:focus {
  border-color: #0a58ca;
}

/* LABEL */

.lux-label {
  display: block;
  margin-bottom: 10px;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

/* FULL */

.lux-full {
  margin-bottom: 16px;
}

/* TEXTAREA */

.lux-textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 22px;
}

/* BUTTON */

.lux-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 14px;
  background: #df0000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.lux-btn:hover {
  background: #bf0000;
}

/* DATE FULL CLICK FIX */

.lux-input[type="date"] {
  position: relative;
  cursor: pointer;
}

.lux-input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* MOBILE */

@media (max-width: 991px) {
  .lux-left {
    display: none;
  }

  .lux-right {
    width: 100%;
    padding: 26px 18px;
  }

  .lux-right h3 {
    font-size: 28px;
  }

  .lux-subtitle {
    font-size: 15px;
  }

  .lux-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lux-popup {
    border-radius: 18px;
  }
}

/* BODY SCROLL STOP */

body.lux-popup-open {
  overflow: hidden;
}
