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

body {
  font-family: "Outfit", sans-serif !important;
  background: var(--dark) !important;
  color: white !important;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --gold:#d8b36b;
  --dark:#070707;
  --card:#121212;
  --text:#cfcfcf;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1330px !important;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1405px !important;
  }
}
/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding-top: 22px;
  transition: 0.4s;
}
.header.scrolled .navbar-wrapper {
  background: rgba(10, 10, 10, 0.92);
  border-color: rgba(216, 179, 107, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* =========================
   NAVBAR WRAPPER
========================= */
.navbar-wrapper {
  height: 86px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   LOGO
========================= */
.logo {
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  z-index: 20;
}
.logo span {
  color: #d8b36b;
}

/* =========================
   CUSTOM NAVBAR
========================= */
.custom-navbar {
  flex: 1;
  margin-left: 40px;
  /* REMOVE BOOTSTRAP STYLES */
  /* NAVIGATION */
  /* =========================
     SUBMENU
  ========================= */
  /* =========================
     MEGA MENU
  ========================= */
  /* =========================
     DESKTOP HOVER
  ========================= */
  /* =========================
     ACTIONS
  ========================= */
}
.custom-navbar .dropdown-toggle::after {
  display: none !important;
}
.custom-navbar .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}
.custom-navbar .navbar-toggler i {
  color: white;
  font-size: 34px;
}
.custom-navbar .navbar-toggler:focus {
  box-shadow: none !important;
}
.custom-navbar .navbar-nav {
  gap: 34px;
  align-items: center;
}
.custom-navbar .nav-item {
  position: relative;
}
.custom-navbar .nav-link {
  color: #d0d0d0 !important;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
}
.custom-navbar .nav-link:hover {
  color: white !important;
}
.custom-navbar .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0%;
  height: 2px;
  background: #d8b36b;
  transition: 0.3s;
}
.custom-navbar .nav-link:hover::before {
  width: 100%;
}
.custom-navbar .nav-link:focus, .custom-navbar .nav-link:active {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.custom-navbar .nav-link.active,
.custom-navbar .nav-link.show {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: white !important;
}
.custom-navbar .custom-dropdown {
  background: rgba(15, 15, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 14px;
  backdrop-filter: blur(20px);
  margin-top: 22px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.35s;
  min-width: 240px;
}
.custom-navbar .custom-dropdown .dropdown-item {
  color: #d0d0d0;
  border-radius: 12px;
  padding: 12px 14px;
  transition: 0.3s;
  font-size: 14px;
}
.custom-navbar .custom-dropdown .dropdown-item:hover {
  background: rgba(216, 179, 107, 0.12);
  color: white;
}
.custom-navbar .mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 24px;
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  display: block;
  transition: 0.35s;
}
.custom-navbar .mega-menu h5 {
  color: #d8b36b;
  margin-bottom: 20px;
  font-size: 15px;
}
.custom-navbar .mega-menu a {
  display: block;
  color: #d0d0d0;
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.3s;
}
.custom-navbar .mega-menu a:hover {
  color: white;
  transform: translateX(4px);
}
@media (min-width: 1200px) {
  .custom-navbar .dropdown:hover > .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .custom-navbar .mega-dropdown:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.custom-navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 40px;
}
.custom-navbar .nav-whatsapp {
  height: 50px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.custom-navbar .nav-whatsapp:hover {
  background: rgba(255, 255, 255, 0.12);
}
.custom-navbar .nav-btn {
  height: 50px;
  padding: 0 26px;
  border: none;
  border-radius: 16px;
  background: #d8b36b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.custom-navbar .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(216, 179, 107, 0.25);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1199px) {
  .navbar {
    position: inherit !important;
  }
  .navbar-wrapper {
    height: auto;
    padding: 20px;
    flex-wrap: wrap;
  }
  .custom-navbar {
    flex: inherit;
  }
  .custom-navbar .mega-menu,
  .dropdown-menu.custom-dropdown {
    display: none;
  }
  .custom-navbar .nav-item {
    width: 100%;
  }
  .custom-navbar .nav-link {
    justify-content: space-between;
  }
  .navbar-collapse {
    margin-top: 40px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 67px;
    left: 0;
    width: 100%;
  }
  .navbar-nav {
    gap: 14px !important;
    align-items: flex-start !important;
  }
  .nav-link {
    padding: 10px 0 !important;
  }
  /* MOBILE SUBMENU */
  /* MOBILE SUBMENU */
  .custom-dropdown,
  .mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: none !important;
    display: block;
    margin-top: 16px;
    position: relative !important;
    inset: auto !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    transition: 0.35s;
  }
  /* OPEN STATE */
  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    padding: 20px !important;
    margin-top: 23px !important;
  }
  .dropdown-menu.show {
    display: block;
  }
  .mega-menu {
    padding: 24px;
  }
  .nav-actions {
    flex-direction: column;
    align-items: stretch !important;
    margin-left: 0 !important;
    margin-top: 24px;
    width: 100%;
  }
  .nav-whatsapp,
  .nav-btn {
    width: 100%;
  }
}
/* =========================
   SMALL MOBILE
========================= */
/* NAV ARROW */
.nav-arrow {
  font-size: 11px;
  color: #d8b36b;
  transition: 0.3s;
  margin-top: 2px;
  margin-left: 10px;
}

/* ROTATE WHEN OPEN */
.dropdown:hover .nav-arrow,
.dropdown.show .nav-arrow,
.mega-dropdown:hover .nav-arrow,
.mega-dropdown.show .nav-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .header {
    padding-top: 14px;
  }
  .navbar-wrapper {
    border-radius: 22px;
  }
  .logo {
    font-size: 24px;
  }
  .mega-menu {
    padding: 20px !important;
  }
}
.float-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-title {
  color: #fff;
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 30px;
  font-size: clamp(36px, 6vw, 88px);
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 35px !important;
  }
}

.hero-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
  max-width: 680px;
}

.section-subtitle {
  color: #c9b37a;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}

.btn-gold {
  height: 62px;
  padding: 0 34px;
  border: none;
  border-radius: 18px;
  background: #d4b06a;
  font-weight: 700;
  display: inline-flex;
  text-decoration: none;
  color: #000;
  align-items: center;
  justify-content: center;
}

.btn-dark-glass {
  height: 62px;
  padding: 0 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(12px);
}

.btn-glass {
  height: 64px;
  padding: 0 34px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cta {
  padding-bottom: 120px;
}

.cta-box {
  border-radius: 40px;
  padding: 90px;
  position: relative;
  overflow: hidden;
}
.cta-box h2 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
}
.cta-box p {
  font-size: 20px;
  line-height: 1.9;
  max-width: 700px;
  margin-bottom: 34px;
  color: #d0d0d0;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.4)), url(https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=1800) center/cover;
  z-index: -1;
}

.info-bar {
  margin-top: -55px;
  position: relative;
}

.info-wrapper {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 30px;
}

.info-item {
  padding: 20px;
  background: #151515;
  border-radius: 22px;
}
.info-item small {
  display: block;
  color: #777;
  margin-bottom: 8px;
  font-size: 12px;
}
.info-item strong {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.info-card {
  padding: 36px;
  height: 100%;
}
.info-card h4 {
  font-size: 28px;
  margin-bottom: 16px;
}
.info-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.info-card p {
  color: #cfcfcf;
  line-height: 1.9;
}

.info-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 179, 107, 0.12);
  color: #d8b36b;
  font-size: 26px;
  margin-bottom: 24px;
}

.transfer-card, .vehicle-card, .info-card, .faq-card {
  background: var(--card);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: 0.35s;
}

.transfer-card:hover, .vehicle-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
}

.vehicle-card {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(0px, 4vw, 24px);
  background: #111;
  border-radius: 34px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 991px) {
  .vehicle-card {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.vehicle-card .vehicle-image {
  width: 280px;
  height: 190px;
  border-radius: 24px;
  overflow: hidden;
}
.vehicle-card .vehicle-action .vehicle-price {
  font-size: 52px;
  font-weight: 800;
  color: #d8b36b;
  margin-bottom: 20px;
}

.transfer-card.active, .vehicle-card.active {
  border-color: var(--gold);
  box-shadow: 0 0 35px rgba(216, 179, 107, 0.16);
}

.transfer-image {
  height: 240px;
  overflow: hidden;
}
.transfer-image img {
  height: 100%;
  object-fit: cover;
}

.transfer-content, .vehicle-content {
  padding: clamp(20px, 3vw, 32px) clamp(px, 2vw, 24px);
}
.transfer-content h3, .vehicle-content h3 {
  font-size: 20px;
  margin-bottom: 18px;
}
.transfer-content p, .vehicle-content p {
  color: #cfcfcf;
  margin-bottom: 22px;
}

.experience {
  padding-bottom: 120px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 767px) {
  .experience-grid {
    flex-direction: column;
    display: flex;
  }
}

.experience-image {
  border-radius: 36px;
  overflow: hidden;
  height: 680px;
  position: relative;
}
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-content span {
  color: #d8b36b;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 22px;
}
.experience-content h2 {
  font-size: 68px;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .experience-content h2 {
    font-size: 30px;
  }
}
.experience-content p {
  font-size: 18px;
  line-height: 2;
  color: #bdbdbd;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 991px) {
  .features {
    flex-direction: column;
    display: flex;
  }
}

.feature {
  padding: 22px;
  background: #111;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.feature h4 {
  margin-bottom: 12px;
  font-size: 18px;
}
.feature p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.timeline {
  padding-bottom: 120px;
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.timeline-card {
  background: #111;
  padding: 36px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.timeline-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.timeline-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #bdbdbd;
  position: relative;
  z-index: 2;
}

.timeline-number {
  font-size: 64px;
  font-weight: 800;
  color: rgba(216, 179, 107, 0.15);
  position: absolute;
  top: 18px;
  right: 22px;
}

.accordion-item {
  background: #121212 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 22px !important;
  overflow: hidden;
  margin-bottom: 18px;
}

.accordion-button {
  background: #121212 !important;
  color: white !important;
  font-weight: 700;
  padding: 24px !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
}

.accordion-body {
  color: #cfcfcf;
  line-height: 1.9;
  padding: 0 24px 24px;
}

.footer {
  padding: 100px 0 40px;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(216, 179, 107, 0.05);
  filter: blur(120px);
  top: -200px;
  right: -100px;
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-brand h2 {
  font-size: 38px;
  margin-bottom: 22px;
}
.footer-brand p {
  color: #bdbdbd;
  line-height: 1.9;
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 28px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-badges span {
  padding: 12px 18px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  font-size: 13px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 20px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #d8b36b;
  transform: translateX(4px);
}

.footer-contact p {
  color: #bdbdbd;
  margin-bottom: 14px;
}

.footer-whatsapp {
  margin-top: 18px;
  height: 56px;
  padding: 0 26px;
  border: none;
  border-radius: 18px;
  background: #d8b36b;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.footer-whatsapp:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-bottom p {
  color: #777;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
a {
  text-decoration: none;
}

.section-title {
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 26px;
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
}

.section-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  font-size: 18px;
  line-height: 1.9;
  color: #bdbdbd;
}

.action-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-premium {
  height: 64px;
  padding: 0 34px;
  border: none;
  border-radius: 18px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.btn-confirm {
  background: var(--gold);
  color: black;
}

.btn-back {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.btn-cancel {
  background: #2a1111;
  border: 1px solid rgba(255, 0, 0, 0.15);
  color: #ffb5b5;
}

#bookingSection {
  display: none;
}

.booking-box {
  background: var(--card);
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-label {
  margin-bottom: 12px;
  font-weight: 600;
}

.form-control, .form-select {
  height: 64px;
  background: #191919 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  color: white !important;
}

.form-control:focus, .form-select:focus {
  background: #191919 !important;
  color: white !important;
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

textarea.form-control {
  height: 180px;
  padding-top: 20px;
}

.summary-box {
  background: #181818;
  border-radius: 28px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.summary-item small {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.summary-item strong {
  font-size: 24px;
}

.selected-extras {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.extra-badge {
  padding: 10px 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.extra-badge button {
  border: none;
  background: none;
  color: #ff9f9f;
  font-size: 18px;
}

.modal-content {
  background: #101010;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.category-card {
  background: #171717;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.category-card.active {
  border-color: var(--gold);
}

.category-image {
  height: 220px;
  overflow: hidden;
}
.category-image img {
  height: 100%;
  object-fit: cover;
}

.category-content {
  padding: 24px;
}

.products-grid {
  display: none;
  margin-top: 30px;
}

.product-card {
  background: #171717;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
  height: 100%;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-image {
  height: 170px;
  overflow: hidden;
}
.product-image img {
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 20px;
}
.product-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 22px;
}

.section-space {
  padding: 172px 0 110px 0;
}

.stats-wrapper {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.stat-box {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 34px;
  height: 100%;
}
.stat-box small {
  display: block;
  color: #8f8f8f;
  margin-bottom: 12px;
  font-size: 13px;
}
.stat-box strong {
  font-size: 26px;
}

.service-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #d4b06a;
}
.service-card:hover img {
  transform: scale(1.06);
}

.service-image {
  height: 260px;
  overflow: hidden;
}
.service-image img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.service-content {
  padding: 32px;
}
.service-content h3 {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: 700;
}
.service-content p {
  color: #bdbdbd;
  line-height: 1.9;
  margin-bottom: 26px;
}

.service-link {
  color: #d4b06a;
  font-weight: 700;
}

.route-box {
  background: #101010;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
}
.route-box h4 {
  font-size: 28px;
  margin-bottom: 22px;
}
.route-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.route-box li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #cfcfcf;
  display: flex;
  justify-content: space-between;
}
.route-box li:last-child {
  border: none;
}

.vehicle-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #bdbdbd;
  margin-bottom: 22px;
  max-width: 700px;
}
.vehicle-content h3 {
  font-size: 34px;
  margin-bottom: 18px;
  font-weight: 700;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vehicle-tags span {
  padding: 10px 14px;
  border-radius: 50px;
  background: #181818;
  font-size: 12px;
}

.seo-box {
  background: #101010;
  border-radius: 36px;
  padding: clamp(20px, 4vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.seo-box h2 {
  font-size: clamp(28px, 4vw, 54px);
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .hero {
    padding: 180px 0;
  }
  .hero-title {
    font-size: 58px;
  }
  .section-title {
    font-size: 42px;
    font-size: 42px;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .booking-box {
    padding: 34px;
  }
  .cta-box {
    padding: clamp(20px, 4vw, 30px);
  }
  .cta-box h2 {
    font-size: clamp(30px, 4vw, 48px);
  }
}
.titulo_wp h2 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .titulo_wp h2 {
    font-size: 28px;
  }
}
.titulo_wp p {
  font-size: 18px;
  line-height: 2;
  color: #bdbdbd;
  margin-bottom: 40px;
}

.about-main-image {
  height: 650px;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(10px);
}
.about-floating-card small {
  color: var(--gold);
  letter-spacing: 0.5px;
  font-size: 14px;
}
.about-floating-card strong {
  font-size: 24px;
  font-weight: 600;
}

.about-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(216, 179, 107, 0.12);
  border: 1px solid rgba(216, 179, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 991px) {
  .about-main-image {
    height: 450px;
  }
  .about-floating-card {
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .about-main-image {
    height: 380px;
  }
  .about-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    width: 100%;
  }
}
.contact-form-wrapper {
  padding: 50px;
  background: var(--card);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-icon {
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(216, 179, 107, 0.12);
  border: 1px solid rgba(216, 179, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
}
.contact-icon i {
  font-size: 20px;
}

.custom-input {
  height: 60px;
  background: #0f0f0f !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  color: white !important;
  padding: 0 20px !important;
  box-shadow: none !important;
  transition: 0.3s;
}
.custom-input::placeholder {
  color: #888;
}
.custom-input:focus {
  border-color: rgba(216, 179, 107, 0.5) !important;
  background: #0f0f0f !important;
}

.custom-textarea {
  height: 180px !important;
  padding-top: 20px !important;
  resize: none;
}

.btn-gold {
  border: none;
}

@media (max-width: 991px) {
  .contact-form-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 28px;
    border-radius: 24px;
  }
  .custom-input {
    height: 56px;
  }
  .custom-textarea {
    height: 160px !important;
  }
}
.form-loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  gap: 12px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #d8b36b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-left: 4px solid #d8b36b;
  border-radius: 10px;
  z-index: 9999;
  font-size: 14px;
}

/*# sourceMappingURL=main.css.map */
