/* ===== VELAN DROP TAXI — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --gold: #F5A623;
  --gold-dark: #D4880A;
  --gold-light: #FFD166;
  --black: #060608;
  --dark: #0C0E12;
  --dark2: #141720;
  --dark3: #1C2030;
  --dark4: #242840;
  --white: #FFFFFF;
  --gray: #8892AA;
  --gray2: #B0BAD0;
  --light: #F4F6FB;
  --green: #25D366;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(6,6,8,0.96);
  border-bottom: 1px solid rgba(245,166,35,0.25);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  height: 64px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  background: rgba(4,4,5,0.99);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  height: 52px; width: auto; object-fit: contain; transition: height 0.3s;
}
#navbar.scrolled .nav-logo img { height: 44px; }

.nav-logo-text { line-height: 1; }
.nav-logo-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px; letter-spacing: 2px; color: var(--white);
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-tagline {
  font-size: 9px; color: var(--gray); letter-spacing: 3px;
  text-transform: uppercase; margin-top: 2px;
}

.nav-links { display: flex; list-style: none; gap: 6px; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray2);
  padding: 8px 14px; border-radius: 6px; transition: all 0.25s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(245,166,35,0.06); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black); padding: 10px 20px;
  border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.3s; white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
  transform: translateY(-1px);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; border-radius: 6px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(6,6,8,0.99); border-bottom: 2px solid rgba(245,166,35,0.3);
  padding: 12px 5% 20px; flex-direction: column; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--gray2);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.float-btns {
  position: fixed; bottom: 24px; right: 20px; z-index: 998;
  display: flex; flex-direction: column; gap: 14px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4); position: relative;
}
.float-btn::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid transparent; animation: ripple 2.2s ease-out infinite;
}
.float-wa { background: var(--green); color: #fff; }
.float-wa::before { border-color: rgba(37,211,102,0.4); }
.float-call { background: var(--gold); color: var(--black); }
.float-call::before { border-color: rgba(245,166,35,0.4); animation-delay: 0.6s; }
.float-btn:hover { transform: scale(1.12); }
.float-btn .tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.88); color: #fff; font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; white-space: nowrap;
  padding: 6px 14px; border-radius: 6px; opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.float-btn:hover .tip { opacity: 1; }

/* =============================================
   PAGE HERO BANNER (inner pages)
   ============================================= */
.page-banner {
  padding: 140px 5% 70px;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(245,166,35,0.07) 0%, transparent 65%);
}
.page-banner-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-banner-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 10px; color: var(--gray); }
.page-banner h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(40px, 6vw, 72px); letter-spacing: 3px; line-height: 1;
}
.page-banner h1 span { color: var(--gold); }

/* =============================================
   SECTION COMMON
   ============================================= */
section { padding: 88px 5%; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani', sans-serif; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-tag::before,
.section-tag::after {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(34px, 4.5vw, 56px); letter-spacing: 2px; line-height: 1.05;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); }
.section-desc { color: var(--gray2); font-size: 16px; line-height: 1.8; max-width: 640px; }
.section-header { text-align: center; margin-bottom: 58px; }
.section-header .section-desc { margin: 0 auto; }

/* =============================================
   TICKER
   ============================================= */
.ticker-bar {
  background: var(--gold); overflow: hidden; padding: 11px 0;
}
.ticker-track {
  display: flex; width: max-content;
  animation: tickerMove 28s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--black);
  padding: 0 36px; white-space: nowrap;
}

/* =============================================
   FORM ELEMENTS
   ============================================= */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Rajdhani', sans-serif; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 13px 16px; color: var(--white); font-family: 'Nunito', sans-serif;
  font-size: 14px; transition: all 0.25s; outline: none; appearance: none;
}
.form-group textarea {
  resize: vertical; min-height: 88px; line-height: 1.6;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: rgba(245,166,35,0.04);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black); padding: 15px 30px;
  border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white); padding: 15px 30px;
  border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-2px);
}
.btn-outline.full { width: 100%; justify-content: center; }

/* Dark button — used in CTA banners */
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white); padding: 15px 30px;
  border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-dark:hover {
  background: var(--dark2); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* WhatsApp green button — used in CTA banners */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white); padding: 15px 30px;
  border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-wa:hover {
  filter: brightness(1.1); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  padding: 64px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 5vw, 58px); color: var(--black);
  letter-spacing: 3px; margin-bottom: 10px;
}
.cta-banner p {
  color: rgba(0,0,0,0.65); font-size: 17px; margin-bottom: 28px;
}
.cta-banner-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* =============================================
   ROUTE BOOK LINK (used in tables)
   ============================================= */
.route-book-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.2s;
}
.route-book-link:hover { color: var(--white); }

/* =============================================
   CARD COMMON
   ============================================= */
.card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 28px 24px; transition: all 0.35s; position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); border-radius: 14px 14px 0 0;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  border-color: rgba(245,166,35,0.18); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black); padding: 64px 5% 0;
  border-top: 1px solid rgba(245,166,35,0.15);
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 56px; width: auto; object-fit: contain; }
.footer-brand-desc {
  color: var(--gray); font-size: 14px; line-height: 1.8;
  max-width: 280px; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 15px; transition: all 0.3s;
}
.social-icon:hover {
  background: var(--gold); color: var(--black);
  border-color: var(--gold); transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--white);
  margin-bottom: 20px; padding-bottom: 10px; position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--gold);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--gray); font-size: 14px; transition: color 0.25s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a i { color: var(--gold); font-size: 9px; transition: transform 0.25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a:hover i { transform: translateX(4px); }

.footer-bottom {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-bottom span { color: var(--gold); }
.footer-bottom a { color: var(--gold); font-weight: 700; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-craft {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray);
}
.footer-craft i { color: #e63946; font-size: 12px; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.anim-up   { animation: fadeUp   0.65s ease both; }
.anim-up-1 { animation: fadeUp   0.65s ease 0.1s both; }
.anim-up-2 { animation: fadeUp   0.65s ease 0.2s both; }
.anim-up-3 { animation: fadeUp   0.65s ease 0.3s both; }
.anim-up-4 { animation: fadeUp   0.65s ease 0.4s both; }
.anim-right { animation: fadeRight 0.7s ease 0.2s both; }
.anim-left  { animation: fadeLeft  0.7s ease 0.2s both; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 64px 5%; }
  .page-banner { padding: 120px 5% 56px; }
  .cta-banner { padding: 48px 5%; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline,
  .btn-dark,
  .btn-wa { width: 100%; justify-content: center; }
}