* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a54c;
  --dark: #050505;
  --dark-bg: #0a0a0a;
  --soft-dark: #0c0c0c;
  --light: #ffffff;
  --gray: #b5b5b5;
  --gold-light: #ffd77a;
  --gold-mid: #c9a84c;
  --gold-deep: #8b6914;
  --gold-glow: rgba(201, 168, 76, 0.45);
  --gold-glow-sm: rgba(201, 168, 76, 0.18);
  --bg-card: rgba(12, 10, 5, 0.85);
  --text-white: #f5f0e8;
  --text-muted: #a89880;
  --radius-img: 18px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.8;
  letter-spacing: 0.5px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 9999; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro.hidden {
  display: none !important;
}

.intro-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.intro-line {
  width: 0;
  height: 2px;
  background-color: var(--gold);
  margin: 0 auto 25px auto;
  animation: expandLine 1.2s ease forwards;
}

.intro h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: var(--gold);
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeName 1.2s ease 0.8s forwards;
}

#particles-intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .intro {
    padding: 20px; 
  }

  .intro-content {
    max-width: 90%; 
    margin: 0 auto;
  }

  .intro-line {
    width: 0; 
    margin: 0 auto 20px;
  }

  .intro h1 {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
}

.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--dark);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.top-bar.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.bar-wrap {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light);
  font-weight: 500;
}

.logo img {
  width: 35px;
}

.menu-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  position: static;
  transform: none;
}

.menu-links a {
  text-decoration: none;
  color: white;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
  padding: 0;
}

.menu-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: 0.3s;
}

.menu-links a:hover,
.menu-links a.active {
  color: var(--gold);
}

.menu-links a:hover::after {
  width: 100%;
}

#music-btn-desktop {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

#music-btn-desktop:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

#music-btn-mobile {
  display: none; 
  width: 32px;
  height: 32px;
  font-size: 13px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  border-radius: 50%;
  box-shadow: none;
  backdrop-filter: none;
}

@media (max-width: 768px) {
  .bar-wrap {
    padding: 10px 15px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .logo {
    flex: 1;
    max-width: 100%;
  }

  .logo span {
    font-size: 0.85rem;
  }

  .nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 0;
  }

  #music-btn-desktop {
    display: none !important; 
  }

  #music-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 13px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    border-radius: 50%;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }

  .bar {
    height: 3px;
    width: 22px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .menu-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--dark);
    backdrop-filter: blur(8px);
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .menu-links.active {
    transform: translateX(0);
  }

  .menu-links a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    transition: 0.3s;
  }

  .menu-links a:hover,
  .menu-links a.active {
    color: var(--gold);
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease; 
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  width: 90%;
  max-width: 900px;
  display: block;
}

.hero-brand {
  position: absolute;
  top: -150px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  white-space: nowrap; 
}

.hero-brand img {
  width: 95px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
}

.hero-brand h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(
    105deg,
    var(--gold-light) 0%,
    #f0c040 30%,
    var(--gold-mid) 60%,
    var(--gold-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.4));
}

.hgold-line {
  position: absolute;
  top: -77px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: var(--gold);
  margin: 20px 0;
}

.hero-text-box {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  padding: 0;
}

.hero-dynamic-title {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 600; 
  color: var(--gold); 
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-dynamic-text {
  font-family: "DM Sans", sans-serif; 
  font-weight: 300; 
  color: var(--text-white); 
  font-size: 1.4;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.buttons {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.butn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.18) 0%,
    rgba(201, 168, 76, 0.08) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  transition:
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    transform 0.2s ease;
}

.butn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 230, 130, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.butn-premium:hover::before {
  left: 140%;
}

.butn-premium:hover {
  border-color: var(--gold-light);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.28) 0%,
    rgba(201, 168, 76, 0.14) 100%
  );
  box-shadow:
    0 0 24px 6px rgba(201, 168, 76, 0.3),
    0 8px 32px -8px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

.butn-premium:hover svg {
  transform: rotate(8deg) scale(1.12);
}

.butn-premium:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    height: 100vh; 
    min-height: 100vh; 
  }

  .hero-content {
    padding: 0 !important;
    box-sizing: border-box;
  }

  .hero-brand {
    
    top: -140px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 5px;
    white-space: normal;
  }

  .hero-brand img {
    width: 95px !important; 
    height: 95px;
  }

  .hero-brand h1 {
    font-size: 1.8rem !important;
    margin-top: -5px;
  }

  .hgold-line {
    
    top: -50px !important; 
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    margin: 20px 0;
  }

  .hero-text-box {
    top: -15px !important; 
    max-width: 90%;
  }

  .hero-dynamic-title {
    font-size: 1.2rem !important;
  }

  .hero-dynamic-text {
    font-size: 0.85rem !important; 
    line-height: 1.5;
  }

  .buttons {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 280px;
}

.butn-premium {
  width: 100%;
  max-width: 280px;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  padding: 18px 24px;
}
}

.driver {
  padding: 100px 8%;
  position: relative;
  background-image: radial-gradient(
    ellipse 70% 55% at 50% 52%,
    rgba(180, 130, 30, 0.12) 0%,
    transparent 70%
  );
}

.driver-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

.driver-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border-radius: var(--radius-img);
  box-shadow:
    0 0 0 1.5px var(--gold-mid),
    0 0 22px 4px var(--gold-glow),
    0 0 70px 14px rgba(2, 2, 1, 0.22),
    0 0 140px 30px rgba(130, 90, 10, 0.12); 
}

.driver-image-wrapper::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}

.driver-image {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
}

.driver-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transition: transform 0.5s ease;
}

.driver-image img:hover {
  transform: scale(1.03);
}

.exp-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: var(--gold);
  color: #000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(226, 189, 66, 0.4);
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.exp-badge span {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.exp-badge small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.driver-text {
  color: #fff;
}

.section-subtitle {
  display: inline-flex; 
  align-items: center;
  gap: 10px;

  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  display: block;
  height: 1px;
  width: 32px; 
  background: var(--gold-mid);
  opacity: 0.6;
}
.driver-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.driver-text h2 .gold-accent {
  color: var(--gold);
  background: linear-gradient(135deg, #e8c85a, #b8941f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.driver-text p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
  text-align: justify;
}

.driver-text p strong {
  color: #fff;
}

.highlight {
  color: var(--gold) !important;
  font-weight: 500;
  font-size: 1.1rem;
  text-align: justify;
}

.driver-cta {
  display: inline-block;
  margin-top: 30px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

.driver-cta:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .driver-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .driver-image-wrapper {
    max-width: 320px;
    margin: 0 auto 10px;
  }

  .section-subtitle {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .driver-text h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .highlight {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .driver-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
  }

  .driver-cta {
    font-size: 0.95rem;
    margin-top: 20px;
  }
}

#airport-service {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 100px 6vw 110px;
  font-family: "DM Sans", sans-serif;
  color: var(--text-white);
  background-image: radial-gradient(
    ellipse 70% 55% at 50% 52%,
    rgba(180, 130, 30, 0.12) 0%,
    transparent 70%
  );
}

#airport-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-mid),
    var(--gold-light),
    var(--gold-mid),
    transparent
  );
  opacity: 0.55;
}

.airport-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

.airport-image-wrap {
  position: relative;
  border-radius: var(--radius-img);
  box-shadow:
    0 0 0 1.5px var(--gold-mid),
    0 0 22px 4px var(--gold-glow),
    0 0 70px 14px rgba(180, 130, 30, 0.22),
    0 0 140px 30px rgba(130, 90, 10, 0.12); 
}

.airport-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-img);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 45%,
    rgba(139, 105, 20, 0.08) 100%
  );
  pointer-events: none;
}

.airport-image-wrap .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}
.corner-tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
}
.corner-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
}
.corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
}
.corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
}

.airport-image-wrap img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-img);
  filter: brightness(0.9) saturate(1.08) sepia(0.08);
  transition:
    filter var(--transition),
    transform var(--transition);
}

.airport-image-wrap:hover img {
  filter: brightness(0.95) saturate(1.15) sepia(0.05);
  transform: scale(1.015);
}

.airport-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 40px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.airport-badge span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.airport-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.airport-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}
.airport-eyebrow::before,
.airport-eyebrow::after {
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  background: var(--gold-mid);
  opacity: 0.6;
}

.airport-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  background: linear-gradient(
    105deg,
    var(--gold-light) 0%,
    #f0c040 30%,
    var(--gold-mid) 60%,
    var(--gold-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 18px rgba(201, 168, 76, 0.35));
}

.airport-text {
  font-size: 1.05rem;
  text-align: justify;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-white);
  max-width: 480px;
}

.airport-text .highlight {
  color: var(--gold-light);
  font-weight: 500;
}

.airport-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}
.airport-divider::before,
.airport-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid));
}
.airport-divider::after {
  background: linear-gradient(90deg, var(--gold-mid), transparent);
}
.airport-divider span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  position: relative;
  overflow: hidden; 
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.18) 0%,
    rgba(201, 168, 76, 0.08) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-decoration: none;
  cursor: pointer;
  max-width: 300px;
  width: auto;
  align-self: flex-start;
  box-shadow:
    0 0 0 0 rgba(201, 168, 76, 0),
    inset 0 1px 0 rgba(255, 215, 120, 0.12);

  transition:
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    transform 0.2s ease;
}
.btn-premium svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 230, 130, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-premium:hover::before {
  left: 140%;
}
.btn-premium:hover {
  border-color: var(--gold-light);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.28) 0%,
    rgba(201, 168, 76, 0.14) 100%
  );
  box-shadow:
    0 0 24px 6px rgba(201, 168, 76, 0.3),
    0 8px 32px -8px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 215, 120, 0.2);
  transform: translateY(-2px);
}
.btn-premium:hover svg {
  transform: rotate(8deg) scale(1.12);
}
.btn-premium:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .airport-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .airport-image-wrap img {
    height: 280px;
  }
  .airport-content {
    text-align: center;
    align-items: center;
  }
  .airport-eyebrow {
    justify-content: center;
  }
  .airport-title {
    text-align: center;
  }
  .airport-text {
    max-width: 100%;
    font-size: 1rem;
    text-align: justify;
  }
  .btn-premium {
    align-self: center;
  }
  .airport-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    width: 100%;
    max-width: 90%;
    justify-content: center;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  #airport-service {
    padding: 55px 4vw 65px;
  }

  .airport-image-wrap img {
    height: 230px;
  }

  .btn-premium {
    padding: 14px 28px;
    font-size: 0.87rem;
  }
}

.services {
  padding: 80px 8%;
  background: var(--dark);
  text-align: center;
}

.title-gradient {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem); 
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  background: linear-gradient(
    105deg,
    var(--gold-light) 0%,
    #f0c040 30%,
    var(--gold-mid) 60%,
    var(--gold-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(201, 168, 76, 0.3));
}

.title-wrapper {
  position: relative;
  display: inline-block; 
  text-align: center;
  margin-bottom: 10px;
  z-index: 5;
}

.title-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(180, 130, 30, 0.15) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.title-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 15px auto 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px; 
}

.service-card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  min-height: 430px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #d4af37, transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.service-img {
  position: relative;
  overflow: hidden;
  height: 190px; 
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.8));
}

.service-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 18px; 
  gap: 6px;  
}

.service-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
}

.service-tag {
  color: #d4af37;
  text-transform: uppercase;
  font-size: 0.65rem;
  opacity: 0.7;
  letter-spacing: 2px;
}


.service-content h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.service-content p {
  font-size: 0.88rem;
  text-align: justify;
  word-spacing: 1px;
  overflow-wrap: break-word;
  line-height: 1.6;

  color: #aaa;
}

.service-btn {
  margin-top: auto;
  font-size: 0.85rem;
  color: #d4af37;
  text-decoration: none;
  position: relative;
  padding-top: 8px;
}

.service-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 1px;
  background: #d4af37;
  transition: 0.3s;
}

.service-btn:hover::after {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover img {
  transform: scale(1.08); 
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-img {
    height: 160px;
  }
  
  .service-card {
    min-height: auto;
  }
}

.vehicles {
  font-family: "DM Sans", sans-serif;
  padding: 4rem 0;
  overflow: visible;
  background: var(--dark);
  position: relative;
}

.vehicles-header {
  text-align: center;
  margin-bottom: 2rem;
}

.vehicles-viewport {
  overflow: hidden;
  padding: 16px 0 20px;
}

.vehicles-track {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.vehicles-track.no-transition {
  transition: none !important;
}

.vehicle-card {
  flex: 0 0 44%;
  background: #1a1a1a;
  border: 0.5px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.2),
    opacity 0.7s ease,
    border-color 0.5s,
    box-shadow 0.7s ease;
  opacity: 0.38;
  transform: scale(0.85);
}

.vehicle-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: #c9a84c;
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.2);
}

.vehicle-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vehicle-card.active .vehicle-img img {
  transform: scale(1.05);
}

.vehicle-img i {
  font-size: 66px;
  color: #aaa;
  transition:
    transform 0.4s cubic-bezier(0.22, 0.68, 0, 1.2),
    color 0.3s;
}

.vehicle-card.active .vehicle-img i {
  transform: scale(1.12) translateY(-4px);
  color: #c9a84c;
}

.vehicle-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c9a84c;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    opacity 0.3s 0.1s,
    transform 0.3s 0.1s;
}

.vehicle-card.active .vehicle-badge {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-body {
  padding: 14px 16px 18px;
}
.vehicle-exp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #c9a84c;
  border: none;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.3s 0.12s,
    transform 0.3s 0.12s;
}

.vehicle-card.active .vehicle-exp {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-exp i {
  font-size: 12px;
  color: #c9a84c;
}

.vehicle-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 5px;
}

.vehicle-body p {
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
  margin: 0 0 10px;
  line-height: 1.6;
}

.vehicle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.vehicle-card.active .vehicle-chips {
  opacity: 1;
  pointer-events: auto;
}

.vehicle-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #ccc; 
  background: #222; 
  border: 0.5px solid rgba(201, 168, 76, 0.2); 
  border-radius: 20px;
  padding: 4px 12px;
}

.vehicle-chip i {
  font-size: 14px;
  color: var(--gold);
}


.vehicles-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 1rem;
}

.vehicles-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.vehicles-arrow:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #fff;
  transform: scale(1.1);
}

.vehicles-arrow i {
  font-size: 18px;
}


.vehicles-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.vehicles-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s,
    border-radius 0.3s;
}

.vehicles-dot.active {
  background: #c9a84c;
  width: 22px;
  border-radius: 4px;
}



@media (max-width: 768px) {
  .vehicle-img {
    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center ;
  }

  
  .vehicle-card {
    flex: 0 0 78%; 
    transform: scale(0.85); 
  }

  .vehicle-card.active {
    transform: scale(1);
  }

  .vehicle-img {
    aspect-ratio: 16 / 9; 
  }

  .vehicle-exp {
    font-size: 10px;
    padding: 3px 10px;
  }

  .vehicle-body h3 {
    font-size: 16px;
  }

  .vehicle-body p {
    font-size: 11px;
  }

  .vehicle-chip {
    font-size: 10px;
    padding: 3px 8px;
  }

  .vehicle-chip i {
    font-size: 12px;
  }

  .vehicles-controls {
    gap: 20px;
  }

  .vehicles-arrow {
    width: 44px;
    height: 44px;
  }

  .vehicles-arrow i {
    font-size: 22px;
  }

  .vehicles-dot {
    width: 10px;
    height: 10px;
  }

  .vehicles-dot.active {
    width: 28px;
  }
}

@media (max-width: 480px) {
  .vehicle-card {
    flex: 0 0 82%; 
  }

  .vehicle-body h3 {
    font-size: 14px;
  }

  .vehicle-body p {
    font-size: 10px;
  }
}

.testimonios {
  padding: 100px 8%;
  background: var(--dark);
  text-align: center;
  position: relative;
}

.testimonios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-mid),
    var(--gold-light),
    var(--gold-mid),
    transparent
  );
  opacity: 0.55;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonio-card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  text-align: left;
  transition: all 0.4s ease;
}

.testimonio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonio-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonio-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.testimonio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonio-info {
  display: flex;
  flex-direction: column;
}

.testimonio-nombre {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonio-fecha {
  color: #777;
  font-size: 0.75rem;
}

.testimonio-estrellas {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.star-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3));
}

.testimonio-texto {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {

  .testimonios::before {
    left: 5%;
    right: 5%;
  }

  .testimonios-grid {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    gap: 16px;
    padding-bottom: 15px; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
  }

  .testimonio-card {
    flex: 0 0 85%; 
    scroll-snap-align: center; 
    min-width: 280px;
  }

  .testimonios-grid::-webkit-scrollbar {
    height: 4px;
  }

  .testimonios-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
  }

  .testimonios-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
  }
}

.footer {
  background-color: var(--dark);
  padding: 30px 0 10px;
  color: #ccc;
  border-top: 0.5px solid rgba(201, 168, 76, 0.25);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.footer-brand {
  text-align: center;
}

.brand-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.footer-brand img {
  width: 45px; 
}

.footer-brand h3 {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #888;
  max-width: 100%; 
  margin: 0 0 10px; 
  line-height: 1.4;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; 
  height: 34px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.85rem;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: #000;
}

.footer-contact-unified {
  text-align: center;
}

.footer-contact-unified h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.footer-contact-unified h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin: 5px auto 0;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.contact-row i {
  color: var(--gold);
  width: 18px; 
  text-align: center;
}

.contact-row a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-row a:hover {
  color: var(--gold);
}

.contact-row span {
  color: #aaa;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 5px;
}

.footer-bottom p {
  color: #666;
  font-size: 0.75rem;
}

@media (min-width: 769px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; 
    padding: 40px 8% 20px;
  }

  .footer-brand {
    text-align: left;
    flex: 0 0 40%;
    max-width: 400px;
  }

  .footer-brand p {
    text-align: left;
    margin: 5px 0 15px;
  }

  .brand-header {
    justify-content: flex-start;
    gap: 8px;
  }

  .footer-brand img {
    width: 50px;
  }

  .social-links {
    justify-content: flex-start;
    gap: 8px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
  }

  .footer-contact-unified {
    text-align: left;
    flex: 1;
    max-width: 450px;
  }

  .footer-contact-unified h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .footer-contact-unified h4::after {
    margin: 5px 0 0;
  }

  .contact-row {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding-top: 15px;
    margin-top: 5px;
  }
}

@keyframes fadeButtons {
  to {
    opacity: 1;
  }
}

@keyframes expandLine {
  to {
    width: 120px;
  }
}

@keyframes fadeName {
  to {
    opacity: 1;
  }
}

@keyframes fadeOutIntro {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s ease forwards;
}

@media (max-width: 768px) {
  .bar-wrap,
  .driver-container,
  .services-grid,
  .vehicles-viewport,
  .testimonios-grid,
  .footer-container,
  .intro-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px !important;
    box-sizing: border-box !important;
  }

  img, video, iframe {
    max-width: 100% !important;
    height: 100% !important;
  }


  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }
}
