/* ========================================================= */
/*                    GLOBAL STYLES                          */
/* ========================================================= */

:root {
  --gold: #f5d26a;
  --dark: #0d0d0d;
  --panel: #1a1a1a;
  --accent: rgba(245,210,106,0.15);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0c0c0c;
  color: #fff;
  overflow-x: hidden;
}

/* ========================================================= */
/*                     PREMIUM BUTTONS                       */
/* ========================================================= */

.luxury-btn {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.luxury-btn.primary {
  background: linear-gradient(90deg, #d4af37, #c79b2e);
  color: #000;
  box-shadow: 0 4px 15px rgba(212,175,55,0.45);
}

.luxury-btn.primary:hover {
  background: linear-gradient(90deg, #eacb4f, #d4af37);
  transform: translateY(-3px);
}

.luxury-btn.secondary {
  background: rgba(20,20,20,0.75);
  color: #fff;
  border: 1px solid #555;
}

.luxury-btn.secondary:hover {
  background: #222;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ========================================================= */
/*                   PREMIUM HEADER NEW                      */
/* ========================================================= */

/* =============================================== */
/* ========== FIXED + PREMIUM HEADER ============= */
/* =============================================== */

.rw-header {
  position: relative;
  width: 100%;
  padding-top: 80px;        /* 👍 más espacio arriba */
  padding-bottom: 80px;     /* 👍 más espacio abajo */
  background:
    radial-gradient(circle at center,
      rgba(35,55,35,0.60),
      rgba(5,5,5,0.92)),
    url('Images/aeropuerto.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.rw-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* LOGO */
.rw-header-logo-box {
  position: relative;
  z-index: 3;
  margin-bottom: 25px;     /* 👍 separa del título */
}

.rw-header-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(255,215,0,0.35));
}

/* TITLE */
.rw-header-title {
  position: relative;
  z-index: 3;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* SUBTITLE */
.rw-header-subtitle {
  position: relative;
  z-index: 3;
  font-size: 1.25rem;
  opacity: 0.85;
  letter-spacing: 1px;
  margin-bottom: 35px;      /* 👍 separa de los botones */
}

/* NAV BUTTONS */
.rw-header-buttons {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* MOBILE FIX */
@media(max-width: 768px){
  .rw-header {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .rw-header-logo {
    width: 120px;
  }

  .rw-header-title {
    font-size: 2.1rem;
  }

  .rw-header-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}


/* ========================================================= */
/*                SERVICES CARDS (services.html)             */
/* ========================================================= */

.services-wrapper {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.55);
  transition: 0.24s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.65);
  border-color: var(--gold);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(245,210,106,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-title {
  font-size: 1.15rem;
  color: var(--gold);
}

.service-desc {
  color: #cfcfcf;
  font-size: 0.95rem;
  margin-top: 6px;
}

.service-price {
  color: var(--gold);
  font-weight: 700;
}

.book-btn {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
  box-shadow: 0 6px 18px rgba(245,210,106,0.18);
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(245,210,106,0.26);
}

/* ========================================================= */
/*                     ALERT BOX GLOBAL                      */
/* ========================================================= */

.custom-alert {
  position: fixed;
  top: 28px;
  right: -420px;
  background: linear-gradient(90deg, #1a1a1a, #242424);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  z-index: 10000;
  transition: right 0.45s ease;
  font-weight: 600;
}

.custom-alert.show {
  right: 28px;
}

.custom-alert.error {
  background: linear-gradient(90deg, #7a0000, #b30000);
}

/* ========================================================= */
/*                          FOOTER                           */
/* ========================================================= */

footer {
  background-color: #000;
  text-align: center;
  color: #777;
  padding: 25px 10px;
  border-top: 1px solid rgba(255,215,0,0.25);
  font-size: 14px;
}

