/* ============================================================
   taxi-fes-airport.com — Custom CSS
   Design System: Navy Blue + Gold + White
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1a3a5c;
  --primary-dark:  #0f2338;
  --primary-light: #254e7a;
  --gold:          #e8a020;
  --gold-dark:     #c8851a;
  --gold-light:    #f0b840;
  --white:         #ffffff;
  --off-white:     #f8f9fa;
  --light-gray:    #e9ecef;
  --mid-gray:      #6c757d;
  --dark:          #1a1a2e;
  --text:          #2d3748;
  --shadow-sm:     0 2px 8px rgba(26,58,92,.10);
  --shadow-md:     0 4px 20px rgba(26,58,92,.15);
  --shadow-lg:     0 8px 40px rgba(26,58,92,.20);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', 'Segoe UI', sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}
a { text-decoration: none; color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---------- Navbar ---------- */
.navbar-brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.1;
}
.navbar-brand-sub {
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--gold) !important;
  background: rgba(255,255,255,.07);
}
.lang-switcher .btn {
  padding: 3px 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  background: transparent;
  transition: all var(--transition);
}
.lang-switcher .btn:hover,
.lang-switcher .btn.active-lang {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
}
.navbar-main {
  background: var(--primary) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}

/* ---------- Hero ---------- */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ---------- Booking Card ---------- */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2rem 1.75rem;
  border-top: 4px solid var(--gold);
}
.booking-card .form-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .35rem;
}
.booking-card .form-control,
.booking-card .form-select {
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
  outline: none;
}
.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark) !important;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  padding: .85rem 2rem;
  letter-spacing: .03em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 4px 15px rgba(232,160,32,.4);
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,.55);
  filter: brightness(1.05);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--primary-dark);
  padding: 1.1rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: 1.2rem; }

/* ---------- Section Utilities ---------- */
.section-py { padding: 5rem 0; }
.section-py-sm { padding: 3rem 0; }
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--primary);
  margin-bottom: .75rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  color: var(--mid-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: .75rem auto 1rem;
  border-radius: 2px;
}

/* ---------- Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,160,32,.3);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.route-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.route-card:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--gold);
}
.route-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
}
.vehicle-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--light-gray);
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.vehicle-img-wrap {
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.vehicle-img-icon {
  font-size: 5rem;
  color: var(--primary);
  opacity: .7;
}
.vehicle-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .87rem;
  color: var(--mid-gray);
  padding: .3rem 0;
}
.spec-item i { color: var(--primary); width: 18px; }

/* ---------- Pricing ---------- */
.price-card {
  border-radius: var(--radius);
  border: 2px solid var(--light-gray);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(232,160,32,.2);
  transform: scale(1.03);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 0 0 10px 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}
.price-currency { font-size: 1.2rem; vertical-align: top; margin-top: .4rem; display: inline-block; }
.price-unit { font-size: .82rem; color: var(--mid-gray); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  height: 100%;
}
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: .05em; }
.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Blog ---------- */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.3);
  position: relative;
}
.blog-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-meta { font-size: .8rem; color: var(--mid-gray); }
.blog-meta i { color: var(--gold); margin-right: 3px; }

/* ---------- About ---------- */
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
}
.stat-label { color: var(--mid-gray); font-size: .88rem; margin-top: .3rem; }
.timeline-item { position: relative; padding-left: 2.5rem; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: -2rem;
  width: 2px;
  background: var(--light-gray);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem; color: var(--white);
}

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  text-align: center;
  height: 100%;
  transition: transform var(--transition);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  font-size: 1.4rem; color: var(--gold);
}
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: var(--off-white);
}
.faq-question:hover { background: var(--light-gray); }
.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  color: var(--mid-gray);
  border-top: 1px solid var(--light-gray);
  font-size: .95rem;
}
.faq-answer.open { display: block; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--white);
  font-size: 1.7rem;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 6px 24px rgba(37,211,102,.65);
  color: var(--white);
}
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Footer ---------- */
.footer-main {
  background: var(--primary-dark);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 2rem;
}
.footer-brand { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); }
.footer-tagline { color: var(--gold); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-heading { color: var(--white); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); }
.footer-link { display: block; color: rgba(255,255,255,.65); font-size: .88rem; padding: .2rem 0; transition: color var(--transition), padding-left var(--transition); }
.footer-link:hover { color: var(--gold); padding-left: 5px; }
.footer-link i { width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .82rem; color: rgba(255,255,255,.45); }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }
.nap-info { font-size: .85rem; line-height: 1.8; }
.nap-info i { color: var(--gold); width: 18px; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-9.5zm-2 7.5H4v-5h14v5zm4-5h2v5H22v-5zm2-7.5V13H0v5h24zM8 13v-2.5h12V13H8z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.breadcrumb-hero .breadcrumb-item { color: rgba(255,255,255,.55); font-size: .85rem; }
.breadcrumb-hero .breadcrumb-item.active { color: var(--gold); }
.breadcrumb-hero .breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ---------- Buttons ---------- */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white) !important;
  border: 2px solid var(--primary);
  padding: .7rem 1.8rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: .92rem;
  transition: all var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark) !important;
  border: none;
  padding: .7rem 1.8rem;
  border-radius: 9px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 3px 12px rgba(232,160,32,.35);
  transition: all var(--transition);
}
.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(232,160,32,.5);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  background: transparent;
  padding: .65rem 1.75rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: .92rem;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary-dark) !important;
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white) !important;
  border: none;
  padding: .7rem 1.8rem;
  border-radius: 9px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ---------- Dark section ---------- */
.section-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: rgba(255,255,255,.85);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-subtitle { color: rgba(255,255,255,.65); }

/* ---------- Check list ---------- */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: .4rem 0 .4rem 1.8rem;
  position: relative;
  font-size: .93rem;
  color: var(--text);
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Table ---------- */
.price-table { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table thead { background: var(--primary); color: var(--white); }
.price-table thead th { font-family: var(--font-body); font-weight: 600; font-size: .85rem; letter-spacing: .04em; padding: 1rem 1.25rem; }
.price-table tbody tr:hover { background: rgba(26,58,92,.05); }
.price-table td { padding: .9rem 1.25rem; font-size: .9rem; vertical-align: middle; }

/* ---------- Route Page ---------- */
.route-hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.route-info-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: .6rem 1.25rem;
  color: var(--white);
  font-size: .88rem;
  display: flex; align-items: center; gap: .5rem;
}
.route-info-badge i { color: var(--gold); }
.highlight-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.attraction-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
  height: 100%;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-up-delay-1 { animation-delay: .1s; }
.fade-up-delay-2 { animation-delay: .2s; }
.fade-up-delay-3 { animation-delay: .3s; }

/* ---------- Misc ---------- */
.bg-light-blue { background: #f0f5fb; }
.bg-cream { background: #fdf9f0; }
.text-gold { color: var(--gold) !important; }
.text-primary-custom { color: var(--primary) !important; }
.rounded-custom { border-radius: var(--radius); }
.shadow-custom { box-shadow: var(--shadow-md); }
.border-gold { border-color: var(--gold) !important; }
.icon-gold { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .price-card.featured { transform: none; }
  .hero-section { min-height: auto; padding: 6rem 0 3rem; }
}
@media (max-width: 767px) {
  .section-py { padding: 3.5rem 0; }
  .booking-card { padding: 1.5rem; }
  .trust-bar .col { margin-bottom: .5rem; }
}
