/* ==========================================================================
   WING STAR TRAVELS — CONSOLIDATED MAIN STYLESHEET
   ========================================================================== */

:root {
  --primary: #0f2c52;
  --primary-light: #1d4d8a;
  --primary-dark: #071831;
  --gold: #c17f3b;
  --gold-light: #e0a860;
  --gold-dark: #8f5a24;
  --silver: #b8c4d4;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-bg: #eef1f8;
  --dark-bg: #0a1628;
  --darker-bg: #060e1a;
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-light: #8892a4;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-gold: 0 0 30px rgba(193, 127, 59, 0.3);
  --shadow-blue: 0 20px 60px rgba(15, 44, 82, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--darker-bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  background: rgba(193, 127, 59, 0.15);
  border: 1px solid rgba(193, 127, 59, 0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
  color: var(--white);
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--silver);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 20px;
  border-radius: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(193, 127, 59, 0.4);
  text-decoration: none;
  min-height: 46px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(193, 127, 59, 0.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  min-height: 46px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ee672, #1b9e8e);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(193, 127, 59, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Section padding */
.section {
  padding: 80px 0;
}

.section-padding {
  padding: 60px 0 80px;
}

.page-header {
  padding: 130px 0 50px;
  background: linear-gradient(180deg, var(--darker-bg) 0%, rgba(15, 44, 82, 0.4) 100%);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(193, 127, 59, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-header__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-top: 10px;
  margin-bottom: 14px;
  color: var(--white);
  line-height: 1.2;
}

.page-header__subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--silver);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.6;
}

/* Gradient backgrounds */
.bg-dark { background: var(--dark-bg); }
.bg-darker { background: var(--darker-bg); }
.bg-gradient {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 50%, var(--dark-bg) 100%);
}

.main-content {
  min-height: calc(100vh - 400px);
  width: 100%;
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(193, 127, 59, 0.3); }
  50% { box-shadow: 0 0 40px rgba(193, 127, 59, 0.7); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-glow { animation: glow 3s ease-in-out infinite; }


/* ==========================================================================
   NAVBAR COMPONENT
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(6, 14, 26, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 127, 59, 0.25);
  padding: 8px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(193, 127, 59, 0.4));
  transition: all 0.3s ease;
}

.navbar__logo:hover .navbar__logo-img {
  filter: drop-shadow(0 0 20px rgba(193, 127, 59, 0.7));
  transform: scale(1.05);
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #fff 0%, #c17f3b 60%, #e0a860 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--silver);
  margin-top: 2px;
}

/* Desktop Links */
.navbar__links {
  display: flex;
  list-style: none;
  gap: 12px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.navbar__link:hover {
  color: var(--gold-light);
  background: rgba(193, 127, 59, 0.12);
}

.navbar__link.active {
  color: var(--gold-light);
  background: rgba(193, 127, 59, 0.18);
  border-bottom: 2px solid var(--gold);
}

.navbar__chevron {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.navbar__item:hover .navbar__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 14, 26, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(193, 127, 59, 0.3);
  border-radius: 12px;
  padding: 8px;
  min-width: 190px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(193, 127, 59, 0.15);
  animation: dropdownIn 0.2s ease;
  z-index: 1010;
  display: none;
}

.navbar__item:hover .navbar__dropdown {
  display: block;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.navbar__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(193, 127, 59, 0.3);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: left;
  text-decoration: none;
  box-sizing: border-box;
}

.navbar__dropdown-item:hover {
  background: rgba(193, 127, 59, 0.18);
  color: var(--gold-light);
  padding-left: 18px;
}

.navbar__dropdown-dot {
  font-size: 0.4rem;
  color: var(--gold);
}

/* CTA */
.navbar__cta {
  flex-shrink: 0;
  font-size: 0.88rem;
  padding: 9px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.navbar__hamburger:hover {
  background: rgba(193, 127, 59, 0.15);
  border-color: rgba(193, 127, 59, 0.35);
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgba(6, 14, 26, 0.98);
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(193, 127, 59, 0.25);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.navbar__mobile--open {
  max-height: 85vh;
  padding: 12px 0 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.navbar__mobile-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar__mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 48px;
}

.navbar__mobile-link:hover,
.navbar__mobile-link.active {
  color: var(--gold-light);
  background: rgba(193, 127, 59, 0.08);
}

.navbar__mobile-chevron {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: var(--gold-light);
}

.navbar__mobile-chevron.rotated {
  transform: rotate(180deg);
}

.navbar__mobile-sub {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar__mobile-sub.open {
  display: flex;
}

.navbar__mobile-sublink {
  padding: 11px 32px;
  background: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  min-height: 42px;
}

.navbar__mobile-sublink--all {
  color: var(--gold-light);
  font-weight: 600;
}

.navbar__mobile-sublink:hover {
  color: var(--gold-light);
  background: rgba(193, 127, 59, 0.06);
  padding-left: 36px;
}

.navbar__mobile-cta {
  margin: 18px 20px 0;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  width: calc(100% - 40px);
}

@media (max-width: 1100px) {
  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile { display: flex; }
}

@media (max-width: 380px) {
  .navbar__logo-img { width: 38px; height: 38px; }
  .navbar__logo-name { font-size: 1.05rem; letter-spacing: 1px; }
  .navbar__logo-sub { font-size: 0.52rem; letter-spacing: 2.5px; }
}


/* ==========================================================================
   FOOTER COMPONENT
   ========================================================================== */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(193, 127, 59, 0.2);
}

.footer__top {
  padding: 70px 0 50px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Brand */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  text-decoration: none;
}

.footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(193, 127, 59, 0.4));
}

.footer__logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--silver);
  margin-top: 1px;
}

.footer__tagline {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer__tagline strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__badge {
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(193, 127, 59, 0.1);
  border: 1px solid rgba(193, 127, 59, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Columns */
.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(193, 127, 59, 0.2);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  padding: 5px 0;
  transition: all 0.2s ease;
  text-align: left;
  text-decoration: none;
}

.footer__link span {
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 0.75rem;
  transform: translateX(-4px);
}

.footer__link:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__link:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* Contact */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  color: inherit;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.footer__contact-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.footer__contact-label {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer__contact-value {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.footer__whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copy strong {
  color: var(--gold-light);
}

.footer__made {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}


/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.floating-btn:hover {
  transform: scale(1.15) translateY(-2px);
}

.floating-btn:hover .floating-btn__label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Label tooltip */
.floating-btn__label {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(6,14,26,0.95);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s ease;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.floating-btn__label::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid rgba(6,14,26,0.95);
}

/* WhatsApp */
.floating-btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

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

/* Phone */
.floating-btn--phone {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  animation: pulse-phone 3s ease-in-out infinite;
}

@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,162,39,0.4); }
  50% { box-shadow: 0 4px 30px rgba(201,162,39,0.7); }
}

/* Back to Top */
.floating-btn--top {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.3s ease;
  display: none;
}

.floating-btn--top.visible {
  display: flex;
}

.floating-btn--top:hover {
  background: rgba(201,162,39,0.2);
  border-color: rgba(201,162,39,0.5);
}

@media (max-width: 640px) {
  .floating-btns { right: 16px; bottom: 16px; }
  .floating-btn { width: 48px; height: 48px; }
}


/* ==========================================================================
   HERO COMPONENT
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,58,107,0.5) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(193,127,59,0.15) 0%, transparent 50%),
              linear-gradient(180deg, #060e1a 0%, #0a1628 50%, #0d1f3c 100%);
  width: 100%;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(193,127,59,0.05) 0%, transparent 70%);
  z-index: 0;
}

/* Animated Rings */
.hero__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193,127,59,0.1);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero__ring--1 { width: 400px; height: 400px; animation-delay: 0s; }
.hero__ring--2 { width: 650px; height: 650px; animation-delay: 1s; }
.hero__ring--3 { width: 900px; height: 900px; animation-delay: 2s; border-color: rgba(193,127,59,0.05); }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.03); opacity: 0.8; }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 110px;
  padding-bottom: 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193,127,59,0.12);
  border: 1px solid rgba(193,127,59,0.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
  max-width: 90%;
}

.hero__title {
  font-size: clamp(2.1rem, 6.5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.15s ease both;
  line-height: 1.15;
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.hero__desc {
  font-size: clamp(0.92rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero__cta-primary {
  font-size: 1.05rem;
  padding: 14px 32px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(193,127,59,0.2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(193,127,59,0.2);
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 14px;
  background: rgba(6,14,26,0.85);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero__stat-item:hover {
  background: rgba(193,127,59,0.1);
}

.hero__stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
  animation: fadeInUp 1s 1s ease both;
}

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 30px 0 50px; }
  .hero__content { padding-top: 100px; padding-bottom: 40px; }
  .hero__rings { display: none; }
  .hero__actions { flex-direction: column; width: 100%; margin-bottom: 40px; }
  .hero__actions .btn-primary, .hero__actions .btn-outline { width: 100%; justify-content: center; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat-value { font-size: 1.4rem; }
  .hero__scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero__badge { font-size: 0.78rem; padding: 6px 12px; }
  .hero__stat-item { padding: 14px 10px; }
}


/* ==========================================================================
   ABOUT COMPONENT
   ========================================================================== */
.about__eyebrow {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about__intro-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.about__intro-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-weight: 400;
}

.about__highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.about__body {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.about__body strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.about__cta {
  align-self: flex-start;
  margin-top: 8px;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.about__logo-card {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(193, 127, 59, 0.12) 0%, rgba(26, 58, 107, 0.15) 60%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  overflow: visible;
}

.about__logo-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.about__logo {
  position: relative;
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(193, 127, 59, 0.5));
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.about__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193, 127, 59, 0.2);
  animation: ringPulse2 4s ease-in-out infinite;
  z-index: 2;
}

.about__ring--1 { width: 260px; height: 260px; animation-delay: 0s; }
.about__ring--2 { width: 320px; height: 320px; animation-delay: 1s; border-color: rgba(193, 127, 59, 0.1); }

@keyframes ringPulse2 {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}

.about__tag {
  position: absolute;
  background: rgba(6, 14, 26, 0.9);
  border: 1px solid rgba(193, 127, 59, 0.35);
  color: var(--gold-light);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  z-index: 2;
}

.about__tag span { color: var(--gold); }
.about__tag--1 { top: 30px; right: -10px; animation: tagFloat1 4s ease-in-out infinite; }
.about__tag--2 { bottom: 30px; left: -10px; animation: tagFloat2 4s ease-in-out infinite 0.5s; }

@keyframes tagFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes tagFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Milestones */
.about__milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(193, 127, 59, 0.2);
  border: 1px solid rgba(193, 127, 59, 0.2);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 90px;
}

.about__milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 36px 24px;
  background: rgba(6, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about__milestone::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.about__milestone:hover::before { transform: scaleX(1); }
.about__milestone:hover { background: rgba(193, 127, 59, 0.08); }

.about__milestone-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}

.about__milestone:hover .about__milestone-icon {
  transform: scale(1.2) rotate(-5deg);
}

.about__milestone-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about__milestone-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
  line-height: 1.4;
  max-width: 120px;
}

/* Why Travel With Us */
.about__why {
  margin-bottom: 80px;
}

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

.about__why-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.about__why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about__why-card:hover::after { transform: scaleX(1); }

.about__why-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(193, 127, 59, 0.1);
  border: 1px solid rgba(193, 127, 59, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.about__why-card:hover .about__why-icon-wrap {
  background: rgba(193, 127, 59, 0.2);
  border-color: rgba(193, 127, 59, 0.5);
  transform: scale(1.1) rotate(-5deg);
}

.about__why-icon { font-size: 1.6rem; }
.about__why-title { font-size: 1.05rem; font-weight: 700; color: var(--white); font-family: 'Outfit', sans-serif; line-height: 1.3; }
.about__why-desc { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); line-height: 1.75; }

/* Mission Banner */
.about__mission {
  position: relative;
  border-radius: 24px;
  padding: 64px 56px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.4) 0%, rgba(13, 32, 64, 0.6) 40%, rgba(26, 58, 107, 0.3) 100%);
  border: 1px solid rgba(193, 127, 59, 0.25);
  text-align: center;
}

.about__mission-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(193, 127, 59, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.about__mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.01) 40px, rgba(255, 255, 255, 0.01) 41px);
  pointer-events: none;
}

.about__mission-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about__mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 127, 59, 0.15);
  border: 1px solid rgba(193, 127, 59, 0.35);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.about__mission-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

.about__mission-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.about__mission-text strong { color: var(--gold-light); }

.about__mission-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  margin: 8px 0;
  padding: 16px 32px;
  border-top: 1px solid rgba(193, 127, 59, 0.2);
  border-bottom: 1px solid rgba(193, 127, 59, 0.2);
  width: 100%;
}

.about__mission-btn {
  margin-top: 8px;
  font-size: 1rem;
  padding: 14px 36px;
}

@media (max-width: 1024px) {
  .about__intro-wrap { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about__intro-text { align-items: center; }
  .about__cta { align-self: center; }
  .about__visual { min-height: 280px; }
  .about__milestones { grid-template-columns: repeat(2, 1fr); }
  .about__why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .about__intro-wrap { gap: 32px; margin-bottom: 40px; }
  .about__lead { font-size: 1.05rem; line-height: 1.65; }
  .about__body { font-size: 0.9rem; line-height: 1.7; }
  .about__visual { min-height: 220px; }
  .about__logo-card { width: 180px; height: 180px; }
  .about__logo { width: 130px; height: 130px; }
  .about__ring--1 { width: 200px; height: 200px; }
  .about__ring--2 { width: 240px; height: 240px; }
  .about__milestones { grid-template-columns: repeat(2, 1fr); margin-bottom: 48px; }
  .about__milestone { padding: 20px 12px; }
  .about__milestone-value { font-size: 1.6rem; }
  .about__milestone-label { font-size: 0.75rem; }
  .about__why { margin-bottom: 48px; }
  .about__why-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 4px 16px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .about__why-grid::-webkit-scrollbar { display: none; }
  .about__why-card { flex: 0 0 82%; scroll-snap-align: center; padding: 24px 18px; }
  .about__mission { padding: 36px 18px; border-radius: 16px; }
  .about__mission-title { font-size: 1.4rem; }
  .about__mission-text { font-size: 0.9rem; }
  .about__mission-tagline { font-size: 0.95rem; padding: 12px 16px; }
  .about__mission-btn { width: 100%; justify-content: center; }
  .about__tag--1, .about__tag--2 { display: none; }
}


/* ==========================================================================
   SERVICES COMPONENT
   ========================================================================== */
.services__eyebrow {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.services__grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.services__card {
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--card-accent, var(--gold));
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(14px);
  background: var(--card-bg);
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(193, 127, 59, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services__card:hover::before { opacity: 1; }
.services__card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-gold); }

.services__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.services__badge-pill {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--gold-light);
  background: rgba(193, 127, 59, 0.15);
  border: 1px solid rgba(193, 127, 59, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.services__icon-wrap { position: relative; display: inline-block; }
.services__icon {
  font-size: 2.8rem;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.services__card:hover .services__icon { transform: scale(1.15) rotate(-5deg); }

.services__icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services__card:hover .services__icon-glow { opacity: 0.25; }

.services__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.services__desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 22px;
}

.services__sub-list {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.services__sub-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}

.services__sub-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services__sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
}

.services__sub-link:hover {
  background: rgba(193, 127, 59, 0.15);
  border-color: rgba(193, 127, 59, 0.35);
  color: var(--gold-light);
  transform: translateX(4px);
}

.services__sub-icon { font-size: 1rem; }
.services__sub-text { flex: 1; font-weight: 500; }
.services__sub-arrow {
  font-size: 0.75rem;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.services__sub-link:hover .services__sub-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--gold);
}

.services__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.services__cta {
  background: transparent;
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.services__cta:hover { color: var(--white); transform: translateX(4px); }

.services__book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: var(--transition);
}

.services__book-btn:hover {
  box-shadow: 0 4px 14px rgba(193, 127, 59, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .services__grid--two { grid-template-columns: 1fr; }
  .services__card { padding: 28px 20px; }
}


/* ==========================================================================
   WHY US / TESTIMONIALS & GOOGLE REVIEWS COMPONENT
   ========================================================================== */
.whyus__eyebrow {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Google Reviews Trust Banner */
.google-reviews-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  margin-bottom: 30px;
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid rgba(193, 127, 59, 0.28);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.google-reviews-banner__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-rating-score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.google-rating-score strong {
  font-size: 1.4rem;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.google-rating-score .testimonial__stars {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.google-rating-count {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.google-rating-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--silver);
  margin-top: 4px;
  flex-wrap: wrap;
}

.google-rating-sub .verified-badge {
  color: #34A853;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.google-location-link {
  color: var(--gold-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.google-location-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.google-reviews-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e0a359);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(193, 127, 59, 0.4);
}

.btn-google-write {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-google-write:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

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

.testimonial__card {
  padding: 28px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  color: inherit;
}

.testimonial__card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 127, 59, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-gold);
}

.testimonial__card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 5rem;
  color: rgba(193, 127, 59, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.testimonial__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial__card-top .testimonial__stars {
  margin-bottom: 0;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial__google-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 9px;
  border-radius: 20px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.testimonial__card:hover .testimonial__google-tag {
  color: var(--gold);
  border-color: rgba(193, 127, 59, 0.45);
  background: rgba(193, 127, 59, 0.1);
}

.testimonial__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  border: 2px solid rgba(193, 127, 59, 0.35);
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 2px;
}

.testimonial__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.testimonial__role {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
}

.testimonial__location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid > :last-child { grid-column: span 2; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .google-reviews-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px;
  }
  .google-reviews-banner__actions {
    width: 100%;
  }
  .btn-google-review,
  .btn-google-write {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: 18px; }
  .testimonials__grid > :last-child { grid-column: auto; max-width: 100%; }
  .testimonial__card { padding: 22px 18px; }
}


/* ==========================================================================
   OUTSTATION COMPONENT (HOME PAGE PREVIEW)
   ========================================================================== */
.outstation__eyebrow {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

.outstation__card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.outstation__card:hover {
  transform: translateY(-8px);
  border-color: rgba(193, 127, 59, 0.4);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

.outstation__card-top {
  padding: 24px 24px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: rgba(193, 127, 59, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.outstation__icon {
  font-size: 2.6rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.outstation__card:hover .outstation__icon { transform: scale(1.15) rotate(-5deg); }

.outstation__badge {
  background: rgba(193, 127, 59, 0.15);
  border: 1px solid rgba(193, 127, 59, 0.3);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}

.outstation__card-body {
  padding: 20px 24px 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.outstation__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}

.outstation__subtitle {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.outstation__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.outstation__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 10px;
}

.outstation__distance, .outstation__highlight {
  font-size: 0.82rem;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 6px;
}

.outstation__card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.outstation__view-btn {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
}

.outstation__view-btn:hover { color: var(--white); transform: translateX(4px); }

.outstation__btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: var(--transition);
}

.outstation__btn:hover {
  box-shadow: 0 4px 14px rgba(193, 127, 59, 0.4);
  transform: translateY(-2px);
}

.outstation__glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(193, 127, 59, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s ease;
}

.outstation__card:hover .outstation__glow { width: 200px; height: 200px; opacity: 0.8; }

@media (max-width: 1024px) { .outstation__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .outstation__grid { grid-template-columns: 1fr; } }


/* ==========================================================================
   HOME PAGE SPECIFIC STYLES
   ========================================================================== */
.home-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-fleet__card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.home-fleet__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-fleet__card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.home-fleet__card:hover::before { opacity: 1; }

.home-fleet__icon-wrapper {
  width: 54px;
  height: 54px;
  background: rgba(193, 127, 59, 0.12);
  border: 1px solid rgba(193, 127, 59, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.home-fleet__icon { font-size: 1.8rem; }

.home-fleet__seats-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.home-fleet__title { font-size: 1.25rem; color: var(--white); margin-bottom: 8px; }
.home-fleet__models { font-size: 0.9rem; color: var(--silver); margin-bottom: 16px; line-height: 1.4; }

.home-fleet__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-fleet__ideal { font-size: 0.82rem; color: var(--text-light); }
.home-fleet__ideal strong { color: var(--silver); }
.home-fleet__rate { font-size: 0.95rem; font-weight: 700; color: var(--gold-light); font-family: 'Outfit', sans-serif; }

.home-fleet__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.home-fleet__link { font-size: 0.85rem; font-weight: 600; color: var(--silver); text-decoration: none; transition: color 0.2s; }
.home-fleet__link:hover { color: var(--gold-light); }
.home-fleet__btn { padding: 8px 16px; font-size: 0.85rem; border-radius: 8px; text-decoration: none; }

/* Home CTA Strip */
.home-cta-strip {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.95), rgba(7, 24, 49, 0.98));
  border-top: 1px solid rgba(193, 127, 59, 0.25);
  border-bottom: 1px solid rgba(193, 127, 59, 0.25);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.home-cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193, 127, 59, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.home-cta-strip__text h2 { font-size: 1.8rem; color: var(--white); margin-top: 8px; margin-bottom: 6px; }
.home-cta-strip__text p { color: var(--silver); font-size: 0.95rem; }

.home-cta-strip__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .home-fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .home-cta-strip__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .home-fleet__grid { grid-template-columns: 1fr; }
  .home-cta-strip__actions { flex-direction: column; width: 100%; }
  .home-cta-strip__actions .btn-primary, .home-cta-strip__actions .btn-whatsapp { width: 100%; justify-content: center; }
}


/* ==========================================================================
   CAR RENTAL PAGE STYLES
   ========================================================================== */
.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.category-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--silver);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.category-tab:hover {
  background: rgba(193, 127, 59, 0.15);
  border-color: rgba(193, 127, 59, 0.4);
  color: var(--white);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold-light);
  color: #fff;
  box-shadow: 0 4px 18px rgba(193, 127, 59, 0.35);
}

.airport-banner {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.9), rgba(6, 14, 26, 0.95));
  border: 1px solid rgba(193, 127, 59, 0.4);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.airport-banner__content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 10px;
}

.airport-banner__content p {
  color: var(--silver);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 16px;
}

.airport-banner__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.airport-banner__perks span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(193, 127, 59, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(193, 127, 59, 0.25);
}

.airport-banner__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.car-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-gold);
}

.car-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.car-card__icon { font-size: 2.2rem; }

.car-badge {
  background: rgba(193, 127, 59, 0.15);
  border: 1px solid rgba(193, 127, 59, 0.35);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.car-card__category-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--silver);
}

.car-card__name {
  font-size: 1.3rem;
  color: var(--white);
  margin-top: 4px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.car-card__tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.4;
}

.car-card__specs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.car-spec-item { display: flex; align-items: center; gap: 10px; }
.car-spec-icon { font-size: 1rem; }
.car-spec-label { display: block; font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; }
.car-spec-val { font-size: 0.85rem; color: var(--white); }

.car-card__features { margin-bottom: 18px; }
.car-card__features-title { font-size: 0.78rem; font-weight: 600; color: var(--silver); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.car-card__features-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.car-card__features-list li { font-size: 0.82rem; color: var(--silver); line-height: 1.4; }

.car-card__pricing {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.car-price-block { display: flex; flex-direction: column; }
.car-price-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; }
.car-price-val { font-size: 1.1rem; font-weight: 700; color: var(--gold-light); font-family: 'Outfit', sans-serif; }
.car-price-val--sub { font-size: 0.9rem; color: var(--silver); }

.car-card__footer { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.car-card__book-btn { flex: 1; text-align: center; text-decoration: none; font-size: 0.88rem; padding: 10px 14px; border-radius: 8px; }
.car-card__wa-btn { width: 44px; height: 44px; border-radius: 8px; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; }

.rental-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rental-policy-card {
  background: rgba(15, 44, 82, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
}

.rental-policy-card h3 { font-size: 1.15rem; color: var(--gold-light); margin-bottom: 14px; }
.rental-policy-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rental-policy-card li { font-size: 0.88rem; color: var(--silver); line-height: 1.4; }

@media (max-width: 1024px) { .cars-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 28px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .category-tab { padding: 8px 16px; font-size: 0.85rem; }
  .airport-banner { flex-direction: column; text-align: center; padding: 24px 18px; }
  .airport-banner__perks { justify-content: center; }
  .airport-banner__action { width: 100%; }
  .airport-banner__action .btn-primary, .airport-banner__action .btn-secondary { width: 100%; }
  .cars-grid { grid-template-columns: 1fr; gap: 20px; }
  .car-card { padding: 20px 16px; }
  .rental-policy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .car-card__pricing { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ==========================================================================
   BUS BOOKING PAGE STYLES
   ========================================================================== */
.bus-highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(15, 44, 82, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  margin-bottom: 40px;
}

.bus-highlight-item { display: flex; align-items: flex-start; gap: 14px; }
.bus-highlight-icon {
  font-size: 1.8rem;
  background: rgba(193, 127, 59, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bus-highlight-item strong { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.bus-highlight-item p { font-size: 0.82rem; color: var(--silver); line-height: 1.4; }

.buses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.bus-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.bus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-gold);
}

.bus-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bus-card__icon { font-size: 2.2rem; }
.bus-badge {
  background: rgba(193, 127, 59, 0.15);
  border: 1px solid rgba(193, 127, 59, 0.35);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.bus-card__category-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.bus-card__name {
  font-size: 1.35rem;
  color: var(--white);
  margin-top: 4px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.bus-card__specs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.bus-spec-row { display: flex; align-items: center; gap: 10px; }
.bus-spec-icon { font-size: 1rem; }
.bus-spec-text { font-size: 0.85rem; color: var(--silver); }
.bus-spec-text strong { color: var(--white); }

.bus-card__amenities { margin-bottom: 16px; }
.bus-card__amenities-title { font-size: 0.78rem; font-weight: 600; color: var(--silver); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.bus-amenities-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bus-amenity-tag { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--silver); font-size: 0.75rem; padding: 4px 8px; border-radius: 6px; }

.bus-card__ideal {
  background: rgba(193, 127, 59, 0.06);
  border: 1px dashed rgba(193, 127, 59, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 18px;
}

.bus-ideal-label { display: block; font-size: 0.72rem; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 2px; }
.bus-ideal-text { font-size: 0.82rem; color: var(--white); margin: 0; line-height: 1.4; }

.bus-card__pricing {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.bus-price-block { display: flex; flex-direction: column; }
.bus-price-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; }
.bus-price-val { font-size: 1.15rem; font-weight: 700; color: var(--gold-light); font-family: 'Outfit', sans-serif; }
.bus-price-val--sub { font-size: 0.9rem; color: var(--silver); }

.bus-card__footer { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.bus-card__book-btn { flex: 1; text-align: center; text-decoration: none; font-size: 0.88rem; padding: 10px 14px; border-radius: 8px; }
.bus-card__wa-btn { width: 44px; height: 44px; border-radius: 8px; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; }

.bus-faq-strip {
  background: rgba(15, 44, 82, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 30px;
}

.bus-faq-strip h3 { font-size: 1.3rem; color: var(--gold-light); margin-bottom: 20px; }
.bus-faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bus-faq-card h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.bus-faq-card p { font-size: 0.82rem; color: var(--silver); line-height: 1.4; margin: 0; }

@media (max-width: 992px) {
  .bus-highlight-strip { grid-template-columns: repeat(2, 1fr); }
  .buses-grid { grid-template-columns: 1fr; }
  .bus-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bus-highlight-strip { grid-template-columns: 1fr; padding: 18px; gap: 16px; }
  .bus-card { padding: 20px 16px; }
  .bus-faq-strip { padding: 20px 16px; }
}


/* ==========================================================================
   OUTSTATION TOUR DETAIL PAGE STYLES
   ========================================================================== */
.destinations-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 48px;
}

.dest-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: var(--transition);
}

.dest-detail-card:hover {
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), var(--shadow-gold);
}

.dest-detail-header {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.8), rgba(6, 14, 26, 0.9));
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dest-detail-header-left { display: flex; align-items: center; gap: 18px; }
.dest-detail-icon {
  font-size: 2.6rem;
  background: rgba(193, 127, 59, 0.12);
  border: 1px solid rgba(193, 127, 59, 0.3);
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dest-detail-meta { font-size: 0.82rem; font-weight: 600; color: var(--gold-light); display: inline-block; margin-bottom: 2px; }
.dest-detail-name { font-size: 1.8rem; color: var(--white); margin-bottom: 2px; line-height: 1.2; }
.dest-detail-tagline { font-size: 0.9rem; color: var(--silver); }
.dest-detail-header-right { flex-shrink: 0; }

.dest-detail-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}

.dest-box-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.dest-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}

.dest-highlights-list li {
  font-size: 0.85rem;
  color: var(--silver);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.bullet-star { color: var(--gold-light); font-size: 0.8rem; flex-shrink: 0; }

.dest-best-time {
  background: rgba(193, 127, 59, 0.08);
  border: 1px solid rgba(193, 127, 59, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--silver);
}

.dest-best-time strong { color: var(--gold-light); }

.dest-packages-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dest-package-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 18px;
  transition: var(--transition);
}

.dest-package-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(193, 127, 59, 0.3);
}

.dest-package-top { margin-bottom: 8px; }
.dest-pkg-name { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 2px; }
.dest-pkg-time { font-size: 0.75rem; color: var(--text-light); }
.dest-pkg-plan { font-size: 0.82rem; color: var(--silver); margin-bottom: 12px; line-height: 1.4; }
.dest-pkg-plan strong { color: var(--white); }

.dest-pkg-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 10px 6px;
  margin-bottom: 12px;
}

.pkg-price-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.pkg-price-type { font-size: 0.68rem; color: var(--text-light); text-transform: uppercase; }
.pkg-price-val { font-size: 1rem; font-weight: 700; color: var(--gold-light); font-family: 'Outfit', sans-serif; }

.dest-pkg-cta { display: flex; align-items: center; gap: 10px; }
.dest-pkg-btn { flex: 1; text-align: center; padding: 8px 14px; font-size: 0.82rem; }
.dest-pkg-wa { width: 38px; height: 38px; border-radius: 8px; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; }

.outstation-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.outstation-perk-card, .outstation-custom-card {
  background: rgba(15, 44, 82, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
}

.outstation-perk-card h3, .outstation-custom-card h3 { font-size: 1.2rem; color: var(--gold-light); margin-bottom: 14px; }
.outstation-perks-list { display: flex; flex-direction: column; gap: 12px; }
.perk-row { display: flex; align-items: flex-start; gap: 12px; }
.perk-row span { font-size: 1.2rem; flex-shrink: 0; }
.perk-row strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.perk-row p { font-size: 0.8rem; color: var(--silver); margin: 0; }
.outstation-custom-card p { color: var(--silver); font-size: 0.88rem; line-height: 1.5; margin-bottom: 20px; }
.outstation-custom-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 992px) {
  .dest-detail-body { grid-template-columns: 1fr; padding: 24px; }
  .dest-detail-header { flex-direction: column; align-items: flex-start; padding: 20px; }
  .dest-detail-header-right { width: 100%; }
  .dest-detail-header-right .btn-primary { width: 100%; justify-content: center; }
  .outstation-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .dest-detail-body { padding: 18px 14px; }
  .dest-detail-header-left { flex-direction: row; align-items: flex-start; }
  .dest-detail-name { font-size: 1.5rem; }
  .dest-package-card { padding: 14px 12px; }
  .dest-pkg-pricing { grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 8px 4px; }
  .pkg-price-val { font-size: 0.9rem; }
  .outstation-perk-card, .outstation-custom-card { padding: 20px 16px; }
  .outstation-custom-actions { flex-direction: column; }
  .outstation-custom-actions .btn-primary, .outstation-custom-actions .btn-whatsapp { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .dest-pkg-pricing { grid-template-columns: 1fr; gap: 6px; }
}


/* ==========================================================================
   WEDDING PAGE STYLES
   ========================================================================== */
.wedding-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.wedding-service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.wedding-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-gold);
}

.wedding-service-icon {
  font-size: 2.2rem;
  background: rgba(193, 127, 59, 0.12);
  border: 1px solid rgba(193, 127, 59, 0.3);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wedding-service-title { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.wedding-service-desc { font-size: 0.88rem; color: var(--silver); line-height: 1.5; margin-bottom: 18px; }
.wedding-vehicles-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.wedding-vehicle-tag { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--gold-light); font-size: 0.75rem; padding: 4px 8px; border-radius: 6px; }

.wedding-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.wedding-pkg-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.wedding-pkg-card.featured {
  border-color: rgba(193, 127, 59, 0.6);
  background: linear-gradient(180deg, rgba(193, 127, 59, 0.08) 0%, rgba(15, 44, 82, 0.4) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.pkg-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(193, 127, 59, 0.4);
}

.wedding-pkg-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.wedding-pkg-name { font-size: 1.3rem; color: var(--white); margin-bottom: 6px; }
.wedding-pkg-desc { font-size: 0.85rem; color: var(--silver); margin-bottom: 20px; line-height: 1.4; }

.wedding-pkg-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-bottom: 20px;
  flex: 1;
}

.wedding-pkg-inc-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--silver);
  margin-bottom: 10px;
}

.wedding-pkg-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.wedding-pkg-list li { font-size: 0.82rem; color: var(--silver); line-height: 1.4; }
.wedding-pkg-footer { display: flex; flex-direction: column; gap: 8px; }
.wedding-pkg-btn { text-align: center; text-decoration: none; padding: 10px 16px; font-size: 0.88rem; }
.wedding-pkg-wa { text-align: center; text-decoration: none; padding: 9px 16px; font-size: 0.85rem; justify-content: center; }

.wedding-banner {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.9), rgba(6, 14, 26, 0.95));
  border: 1px solid rgba(193, 127, 59, 0.35);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wedding-banner__content h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--white); margin-top: 8px; margin-bottom: 10px; }
.wedding-banner__content p { color: var(--silver); font-size: 0.92rem; line-height: 1.6; max-width: 650px; }
.wedding-banner__actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

@media (max-width: 992px) {
  .wedding-services-grid { grid-template-columns: 1fr; }
  .wedding-packages-grid { grid-template-columns: 1fr; }
  .wedding-banner { flex-direction: column; text-align: center; }
  .wedding-banner__actions { width: 100%; }
  .wedding-banner__actions .btn-primary, .wedding-banner__actions .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .wedding-service-card, .wedding-pkg-card { padding: 20px 16px; }
  .wedding-banner { padding: 24px 16px; }
}


/* ==========================================================================
   CORPORATE PAGE STYLES
   ========================================================================== */
.corp-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.corp-solution-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.corp-solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-gold);
}

.corp-solution-icon {
  font-size: 2.2rem;
  background: rgba(15, 44, 82, 0.6);
  border: 1px solid rgba(193, 127, 59, 0.3);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.corp-solution-title { font-size: 1.25rem; color: var(--white); margin-bottom: 8px; }
.corp-solution-desc { font-size: 0.88rem; color: var(--silver); line-height: 1.5; margin-bottom: 18px; }

.corp-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.corp-feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--silver); }
.corp-check { color: var(--gold-light); font-weight: 700; }

.corp-perks-section { margin-bottom: 56px; }
.corp-perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.corp-perk-item {
  background: rgba(15, 44, 82, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.corp-perk-icon {
  font-size: 1.8rem;
  background: rgba(193, 127, 59, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-perk-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.corp-perk-item p { font-size: 0.8rem; color: var(--silver); line-height: 1.4; margin: 0; }

.corp-cta-banner {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.9), rgba(6, 14, 26, 0.95));
  border: 1px solid rgba(193, 127, 59, 0.35);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.corp-cta-text h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--white); margin-top: 8px; margin-bottom: 8px; }
.corp-cta-text p { color: var(--silver); font-size: 0.92rem; max-width: 650px; line-height: 1.5; }
.corp-cta-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

@media (max-width: 992px) {
  .corp-solutions-grid { grid-template-columns: 1fr; }
  .corp-perks-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-cta-banner { flex-direction: column; text-align: center; }
  .corp-cta-actions { width: 100%; }
  .corp-cta-actions .btn-primary, .corp-cta-actions .btn-whatsapp { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .corp-solution-card, .corp-perk-item { padding: 18px 14px; }
  .corp-perks-grid { grid-template-columns: 1fr; }
  .corp-cta-banner { padding: 24px 16px; }
}


/* ==========================================================================
   GROUP TOURS PAGE STYLES
   ========================================================================== */
.group-tours-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}

.group-tour-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: var(--transition);
}

.group-tour-card:hover {
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), var(--shadow-gold);
}

.group-tour-header {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.8), rgba(6, 14, 26, 0.9));
  border-bottom: 1px solid var(--glass-border);
  padding: 22px 28px;
}

.group-tour-header-left { display: flex; align-items: center; gap: 18px; }
.group-tour-icon {
  font-size: 2.4rem;
  background: rgba(193, 127, 59, 0.12);
  border: 1px solid rgba(193, 127, 59, 0.3);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.group-tour-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.badge-pill {
  background: rgba(193, 127, 59, 0.2);
  border: 1px solid rgba(193, 127, 59, 0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 50px;
}

.duration-pill { font-size: 0.75rem; color: var(--silver); font-weight: 500; }
.group-tour-name { font-size: 1.45rem; color: var(--white); margin-bottom: 4px; line-height: 1.3; }
.group-tour-route { font-size: 0.85rem; color: var(--silver); margin: 0; }
.group-tour-route strong { color: var(--gold-light); }

.group-tour-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}

.gt-col-title {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.gt-highlights-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.gt-highlights-list li { font-size: 0.85rem; color: var(--silver); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.gt-bullet { color: var(--gold-light); font-size: 0.8rem; flex-shrink: 0; }

.gt-vehicle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 18px; }
.gt-vehicle-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gt-veh-type { font-size: 0.75rem; color: var(--silver); }
.gt-veh-price { font-size: 1.05rem; font-weight: 700; color: var(--gold-light); font-family: 'Outfit', sans-serif; }
.gt-card-actions { display: flex; align-items: center; gap: 10px; }
.gt-book-btn { flex: 1; text-align: center; text-decoration: none; padding: 10px 16px; font-size: 0.88rem; border-radius: 8px; }
.gt-wa-btn { text-decoration: none; padding: 10px 14px; font-size: 0.85rem; border-radius: 8px; }

.custom-tour-banner {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.9), rgba(6, 14, 26, 0.95));
  border: 1px solid rgba(193, 127, 59, 0.35);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.custom-tour-text h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--white); margin-top: 8px; margin-bottom: 8px; }
.custom-tour-text p { color: var(--silver); font-size: 0.92rem; line-height: 1.5; max-width: 650px; }
.custom-tour-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

@media (max-width: 992px) {
  .group-tour-body { grid-template-columns: 1fr; padding: 22px; }
  .group-tour-header-left { flex-direction: column; align-items: flex-start; }
  .custom-tour-banner { flex-direction: column; text-align: center; }
  .custom-tour-actions { width: 100%; }
  .custom-tour-actions .btn-primary, .custom-tour-actions .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .group-tour-header, .group-tour-body { padding: 16px 14px; }
  .group-tour-name { font-size: 1.3rem; }
  .gt-vehicle-grid { grid-template-columns: 1fr; }
  .gt-card-actions { flex-direction: column; }
  .gt-book-btn, .gt-wa-btn { width: 100%; justify-content: center; }
  .custom-tour-banner { padding: 24px 16px; }
}


/* ==========================================================================
   ABOUT PAGE STYLES (STANDARDS & CTA)
   ========================================================================== */
.about-standards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-standard-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.about-standard-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 127, 59, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.standard-icon {
  font-size: 2rem;
  background: rgba(193, 127, 59, 0.12);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-standard-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.about-standard-card p { font-size: 0.85rem; color: var(--silver); line-height: 1.5; }

.about-bottom-cta {
  background: linear-gradient(135deg, rgba(15, 44, 82, 0.9), rgba(6, 14, 26, 0.95));
  border-top: 1px solid rgba(193, 127, 59, 0.3);
  padding: 64px 0;
  text-align: center;
}

.about-bottom-cta__inner h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 12px; }
.about-bottom-cta__inner p { color: var(--silver); font-size: 1rem; max-width: 600px; margin: 0 auto 28px; }
.about-bottom-cta__actions { display: flex; align-items: center; justify-content: center; gap: 16px; }

@media (max-width: 992px) { .about-standards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .about-standards__grid { grid-template-columns: 1fr; }
  .about-bottom-cta__actions { flex-direction: column; }
}


/* ==========================================================================
   CONTACT / BOOKING PAGE STYLES
   ========================================================================== */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}

.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  backdrop-filter: blur(14px);
}

.contact-form-header h2 { font-size: clamp(1.3rem, 3vw, 1.6rem); color: var(--white); margin-bottom: 6px; }
.contact-form-header p { color: var(--silver); font-size: 0.88rem; margin-bottom: 20px; }

.contact-alert {
  padding: 14px 18px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-alert.success {
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid rgba(39, 174, 96, 0.4);
  color: #2ecc71;
}

.contact-alert.success strong { color: #2ecc71; display: block; margin-bottom: 2px; }
.contact-alert.success p { color: #d4edda; font-size: 0.85rem; margin: 0; }

.contact-alert.error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

.contact-alert.error strong { color: #e74c3c; display: block; margin-bottom: 2px; }
.contact-alert.error p { color: #f8d7da; font-size: 0.85rem; margin: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--border-radius);
  padding: 12px 14px;
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 12px rgba(193, 127, 59, 0.3);
  background: rgba(15, 44, 82, 0.5);
}

.form-group select option {
  background: var(--darker-bg);
  color: var(--white);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.btn-whatsapp--large,
.btn-primary--large {
  padding: 13px 18px;
  font-size: 0.92rem;
  border-radius: var(--border-radius);
  justify-content: center;
  min-height: 48px;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card,
.contact-highlights-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  backdrop-filter: blur(14px);
}

.contact-info-card h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 6px; }
.contact-info-card > p { font-size: 0.85rem; color: var(--silver); margin-bottom: 20px; }

.contact-direct-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-direct-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-direct-link:hover {
  background: rgba(193, 127, 59, 0.1);
  border-color: rgba(193, 127, 59, 0.35);
  transform: translateX(4px);
}

.direct-icon {
  font-size: 1.4rem;
  background: rgba(193, 127, 59, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.direct-label { display: block; font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; }
.direct-value { font-size: 0.88rem; color: var(--white); font-weight: 600; }

.office-hours {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.office-hours h4 { font-size: 0.9rem; color: var(--gold-light); margin-bottom: 6px; }
.office-hours p { font-size: 0.82rem; color: var(--silver); margin-bottom: 4px; }
.office-hours strong { color: var(--white); }

.contact-highlights-card h4 { font-size: 1.05rem; color: var(--gold-light); margin-bottom: 12px; }
.contact-highlights-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.contact-highlights-card li { font-size: 0.85rem; color: var(--silver); }

/* FAQ Accordion */
.faqs-section { margin-top: 56px; }
.faqs-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(193, 127, 59, 0.4); }
.faq-item.open {
  border-color: rgba(193, 127, 59, 0.5);
  background: rgba(15, 44, 82, 0.35);
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
}

.faq-toggle { font-size: 1.3rem; color: var(--gold-light); font-weight: 400; }

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: none;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.6;
  padding-top: 12px;
}

@media (max-width: 992px) {
  .contact-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .contact-form-wrapper { padding: 20px 14px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-actions { grid-template-columns: 1fr; gap: 10px; }
  .btn-whatsapp--large, .btn-primary--large { width: 100%; }
  .contact-info-card, .contact-highlights-card { padding: 20px 14px; }
  .faq-question { padding: 14px 16px; font-size: 0.92rem; }
  .faq-answer { padding: 0 16px 14px; }
}
