/* ============================================
   Components - Nav, Buttons, Cards, etc.
   ============================================ */

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding-inline: var(--container-padding);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-menu a {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
  position: relative;
  padding-block: var(--space-1);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-charcoal);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-8);
    transition: right var(--transition-base);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.is-open {
    right: 0;
  }

  .nav-menu a {
    font-size: var(--text-lg);
  }
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  border: none;
  line-height: 1.4;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--color-black);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #fff;
  font-weight: var(--fw-bold);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn svg,
.btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-lg svg,
.btn-lg img {
  width: 24px;
  height: 24px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-charcoal);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}

.hero h1 {
  margin-bottom: var(--space-5);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-silver);
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  color: var(--color-gold-light);
  font-weight: var(--fw-medium);
}

.badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }

  .hero-ctas {
    flex-direction: row;
  }

  .hero-badges {
    justify-content: flex-start;
  }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  padding-block: var(--space-8);
  background: var(--color-charcoal);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.trust-item svg {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}

.trust-label {
  font-size: var(--text-sm);
  color: var(--color-silver);
  text-align: center;
}

/* ---- ABOUT SECTION ---- */
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-gray);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: var(--space-5);
}

.about-text h2::before {
  margin: 0 0 var(--space-4);
}

.about-text p {
  font-size: var(--text-lg);
}

@media (min-width: 768px) {
  .about-text .section-title {
    text-align: left;
  }

  .about-text .section-title::before {
    margin-left: 0;
  }
}

/* ---- VEHICLE CARD ---- */
.vehicle-card {
  background: var(--color-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}

.vehicle-card svg {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-inline: auto;
  margin-bottom: var(--space-4);
}

.vehicle-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.vehicle-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Vehicle gallery */
.vehicle-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.vehicle-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-gray);
}

.vehicle-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .vehicle-gallery {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
  }

  .vehicle-gallery-item:first-child {
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }
}

/* ---- SERVICE CARD ---- */
.service-card {
  background: var(--color-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
}

.service-card p {
  font-size: var(--text-sm);
  flex-grow: 1;
}

.service-card .btn-sm {
  margin-top: var(--space-4);
  align-self: flex-start;
}

/* ---- DESTINATION TABS ---- */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.tab-button {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-silver);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.tab-button.active {
  background: var(--gradient-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  font-weight: var(--fw-semibold);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .tab-panel.active {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tab-panel.active {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Destination card */
.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.destination-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}

.destination-card-image {
  aspect-ratio: 16/9;
  background: var(--color-charcoal);
  overflow: hidden;
}

.destination-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-card:hover .destination-card-image img {
  transform: scale(1.05);
}

.destination-card-body {
  padding: var(--space-4);
}

.destination-card h4 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
}

.destination-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  color: var(--color-silver);
}

.destination-card .link-whatsapp {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.destination-card .link-whatsapp:hover {
  color: var(--color-gold-light);
}

/* ---- HOW IT WORKS / STEPS ---- */
.step {
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  margin: 0 auto var(--space-4);
}

.step h3 {
  font-size: var(--text-xl);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
}

.step p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Step connector line (desktop only) */
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -16px;
    width: calc(100% - 64px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), rgba(201, 168, 76, 0.2));
    transform: translateX(50%);
  }
}

/* ---- TESTIMONIAL CARD ---- */
.testimonial-card {
  scroll-snap-align: center;
  flex: 0 0 min(350px, 85vw);
  background: var(--color-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-star);
  fill: var(--color-star);
}

.testimonial-text {
  font-style: italic;
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-charcoal);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  color: var(--color-white);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--color-silver);
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item summary {
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: color var(--transition-fast);
}

.faq-item summary:hover {
  color: var(--color-gold);
}

.faq-item summary .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-gold);
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-silver);
  line-height: 1.8;
}

/* ---- CONTACT SECTION ---- */
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.contact-phone {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-gold);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
  display: block;
}

.contact-phone:hover {
  color: var(--color-gold-light);
}

/* ---- FOOTER ---- */
.footer {
  background-color: var(--color-charcoal);
  padding-block: var(--space-10) var(--space-6);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.footer-text {
  font-size: var(--text-sm);
  color: var(--color-silver);
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-silver);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer h4 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  margin-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  color: var(--color-silver);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  transition: background var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: var(--color-whatsapp);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
