.carousel-control-next,
.carousel-control-prev {
  background: transparent;
  border: none;
  outline: none;
}

.carousel-caption {
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
}

.carousel-item img{
  aspect-ratio: 16 / 7;
  object-fit: cover;
}


.carousel-item.active .carousel-caption {
  height: 230px;
  visibility: visible;
  opacity: 1;
  /* overflow: visible; */
}



.carousel-caption p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 10px #000;
  margin-bottom: 10px;
}

.carousel-caption h5 {
  font-size: 3.75rem;
  font-weight: 700;
  text-shadow: 0 0 20px #000;
  color: #fff;
  margin-bottom: 20px;
}

.carousel-caption .ban-btn {
  background-color: #642a00;
  color: #fff;
  display: inline-block;
  padding: 10px 40px 12px;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #00000071;
  font-size: 1.2rem;
}

.custom-navbar {
  background-color: #2e42e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
}

.custom-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .custom-navbar {
    padding: 0;
  }
}

.logo img {
  border-radius: 6px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: top;
  margin: 7px 0;
}

.custom-navbar .logo img {
  height: 65px;
}

.ftr .logo img {
  max-width: 280px;
  border-radius: 12px;
  aspect-ratio: 16 / 8.5;
  border: 4px solid #fff;
  box-shadow: 0 0 4px 7px #0000001a;
  padding: 10px;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

ul.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding: 20px 5px;
  display: block;
}

ul.nav-links a:hover {
  color: #fff;
}

.dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  background: #2e42e1;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 250px;
  z-index: 999;
}

.dropdown-menu a {
  padding: 7px 12px !important;
  font-size: 17px !important;
  border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
  background: #642a00;
  color: #fff !important;
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    margin-top: 10px;
    gap: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    border: none;
  }

  .dropdown-menu a {
    padding: 8px 8px 8px 23px !important;
    font-size: 16px !important;
  }

  .has-dropdown .dropdown-menu {
    display: none;
  }

  .has-dropdown.show .dropdown-menu {
    display: flex;
  }
}

/* tour cards */

.tour-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.tour-img {
  position: relative;
}

.tour-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.tour-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #642a00;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-body {
  padding: 20px 15px 26px;
}

.tour-title {
  font-size: 19px;
  color: #1e2a38;
  height: 45px;
  font-weight: 700;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tour-rating {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.tour-rating i {
  color: #ffc107;
  margin-right: 2px;
  font-size: 14px;
}

.tour-rating span {
  margin-left: 8px;
  font-size: 13px;
  color: #888;
}

.tour-info {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tour-info div {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.tour-info i {
  color: #642a00;
  margin-right: 6px;
}

.tour-price {
  font-size: 15px;
  color: #642a00;
  font-weight: 600;
  margin-bottom: 12px;
}

.tour-btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  color: #fff;
  background: #642a00;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.tour-btn:hover {
  background: #2d1301;
  color: #fff;
  text-decoration: none;
}

.tour-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: #642a0063;
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

/* why choose us */

.wcu-sec {
  margin: 0;
  padding: 0 0 30px;
  position: relative;
  z-index: 3;
}
.wcu-sec h2 {
  font-weight: bold;
  text-transform: uppercase;
}
.vline {
  margin: 0 auto 10px;
  background: var(--thm1);
  height: 100px;
  width: 3px;
}
.wcu-box {
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  width: 200px;
  height: 200px;
  margin: 25px 0;
  background: url(../img/shapes/wcu-bg.jpg) no-repeat center;
  background-size: contain;
}
.wcu-box div,
.wcu-box div * {
  transition: all 0.35s;
}
.wcu-box:hover div {
  transform: scale(0.8);
}
.wcu-box span {
  padding: 0 20px;
  line-height: 18px;
  display: block;
  text-align: center;
  color: #333;
  font-size: 15px;
  font-weight: 600;
}
.wcu-box:before {
  background: url(../img/shapes/wcu-airplane.jpg) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  transition-property: transform;
  transition-duration: 1s;
}
.wcu-box:hover:before {
  animation-name: rotate;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* carousel customs */

.services-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-carousel .owl-item img {
  width: auto !important;
  margin: auto !important;
}

/* Custom Nav Buttons */

.owl-nav {
  position: absolute;
  top: 50%;
  left: -95px !important;
  width: 116%;
  color: #000;

  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
  pointer-events: none;
}

.owl-nav button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 20px;
  color: #000;
  width: 45px !important;
  height: 45px !important;
  border-radius: 100px !important;
  border: 2px solid #000 !important;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: #642a00 !important;
  transform: scale(1.1);

  color: #fff !important;
}

.owl-dots {
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .owl-nav {
    width: 100%;
    left: 0 !important;
    transform: translateY(-50%);
    /* top: 100%; */
    justify-content: space-between;
  }

  .car-carousel .owl-nav {
    left: 50% !important;
    right: 0 !important;
    top: 110%;
    width: 130px !important;
    transform: translateX(-50%) translateY(-50%);
  }

  .owl-nav button {
    width: 40px !important;
    height: 40px !important;
  }
}

/* car slider  */

.text-theme {
  color: #642a00;
}

.btn-theme {
  background-color: #642a00;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  background-color: #2d1301;
  color: #fff;
}

.car-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 7px;
  position: relative;
  display: block;
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

.price-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.price-badge p {
  color: #fff;
  margin: 0;
  font-weight: 400;
}

.car-img {
  aspect-ratio: 5/4;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.car-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.car-name {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gal_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 10px;
}

.g-map iframe {
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}

/* contact us  */

/* Animated background particles */
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
}

.particle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 70%;
  left: 80%;
}

.particle:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 40%;
  left: 70%;
}

.contact-container {
  position: relative;
  z-index: 10;
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Glass morphism card */
.glass-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

/* Floating header */
.floating-header {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  margin: 12px 12px 20px;
  border-radius: 20px;
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
}

.title-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin: 0;
}

/* Form styling */
.form-section {
  padding: 30px 35px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.input-group-floating {
  position: relative;
  margin-bottom: 25px;
}

.form-control-glass {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 15px 20px;
  width: 100%;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-control-glass:focus {
  border-color: #ff6b6b;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
}

.form-control-glass::placeholder {
  color: rgba(0, 0, 0, 0.9);
}

.icon-input {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 18px;
}

/* Button styling */
.btn-magic {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-magic:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.6);
  color: white;
}

.btn-magic::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-magic:hover::before {
  left: 100%;
}

/* Info section */
.info-section {
  padding: 20px 12px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-item a{
  color: #000;
  text-decoration: none;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  color: #667eea;
  font-size: 20px;
  margin-right: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.social-links a:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Map styling */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  height: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .form-section {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 12px;
  }

  .info-section {
    padding: 20px 12px;
  }

  .floating-header {
    margin: 12px;
    border-radius: 15px;
    padding: 15px 12px;
  }

  .info-card {
    padding: 12px;
  }
}

/* contact form  */

.contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px 24px;
}
.contact-form h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #642a00;
  letter-spacing: 1px;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form label {
  font-weight: 500;
  color: #333;
  font-size: 18px;
  margin-bottom: 6px;
  display: block;
}
.contact-form .form-control {
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  height: auto;
  padding: 10px 14px;
  font-size: 16px;
  transition: border-color 0.2s;
}
.contact-form .form-control:focus {
  border-color: #642a00;
  box-shadow: 0 0 0 0.3rem rgba(100, 42, 0, 0.25);
  outline: none;
}
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn-primary {
  background: linear-gradient(90deg, #642a00 0%, #c56826 100%);
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.12);
  transition: background 0.3s;
}
.contact-form .btn-primary:hover {
  background: linear-gradient(90deg, #381903 0%, #824113 100%);
}
