@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --orange: #ff7a00;
  --orange-light: #f59e0b;
  --dark: #ffffff;
  --dark2: #f5f5f5;
  --dark3: #efefef;
  --dark4: #e5e5e5;
  --text: #111111;
  --text-muted: #666666;
  --card-bg: #ffffff;
  --border: #dddddd;
  --radius: 12px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark3); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 1px;
}
.logo-text span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-book {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #ffffff; padding: 9px 22px;
  border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-book:hover { opacity: 0.88; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #111111;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TOP BAR ── */
.top-bar {
  background: #1c1c2e;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 5%;
  font-size: 13px;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
}
.top-bar strong { color: var(--orange); }
.top-bar-btn {
  background: var(--orange); color: #fff;
  padding: 5px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.top-bar-btn:hover { opacity: 0.88; }

/* push navbar below top bar */
.navbar { top: 38px; }

/* ── HERO ── */
.hero-wrap {
  position: relative;
  margin-top: 108px;
  height: 300px;
  overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.15) 100%);
}
.hero-text {
  position: absolute;
  top: 50%; left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero-text h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 7vw, 48px);
  font-weight: 700; line-height: 1.15;
  color: #fff; text-transform: uppercase;
}
.hero-text h1 span { color: var(--orange); }
.hero-sub {
  margin-top: 10px;
  font-size: clamp(13px, 2.5vw, 17px);
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.hero-sub span { color: var(--orange); font-weight: 700; }

/* ── BOOKING CARD ── */
.book-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
  margin: -28px 4% 0;
  position: relative; z-index: 10;
  padding: 18px;
  box-sizing: border-box;
  width: 92%;
}
.book-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #f0f0f0; border-radius: 10px;
  padding: 4px; margin-bottom: 14px; gap: 4px;
}
.book-tab {
  padding: 10px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  color: #666; background: none; cursor: pointer;
  transition: all 0.2s;
}
.book-tab.active { background: var(--orange); color: #fff; }

.book-field {
  display: flex; align-items: center;
  border: 1px solid #ddd; border-radius: 10px;
  padding: 11px 14px; margin-bottom: 10px;
  gap: 8px;
}
.book-field input {
  flex: 1; border: none; background: none;
  font-size: 14px; color: #111; outline: none;
  min-width: 0;
}
.book-field i { color: #999; font-size: 15px; flex-shrink: 0; }

.book-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 10px;
}
.book-row .book-field { margin-bottom: 0; }

.book-search-btn {
  display: block; width: 100%;
  background: var(--orange); color: #fff;
  text-align: center; padding: 14px;
  border-radius: 10px; font-size: 16px; font-weight: 700;
  transition: opacity 0.2s;
}
.book-search-btn:hover { opacity: 0.88; }

/* ── TAGLINE ── */
.home-tagline {
  padding: 28px 5% 4px;
}
.home-tagline h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(17px, 3.5vw, 24px);
  font-weight: 700; color: #111;
  margin-bottom: 10px; line-height: 1.3;
}
.svc-label {
  color: var(--orange); font-weight: 700;
  font-size: 15px; margin-bottom: 4px;
}
.svc-sub { font-size: 13px; color: #666; }
.home-desc {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* ── HERO (old) kept for other pages ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
  background: #ffffff;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #fff8f2 0%, #ffffff 50%, #fff3e8 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; width: 100%; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #ffffff;
  padding: 14px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(255,122,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(255,122,0,0.45); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .top-bar { font-size: 11px; padding: 8px 4%; }
  .navbar { top: 36px; }
  .hero-wrap { margin-top: 106px; height: 240px; }
  .hero-text h1 { font-size: clamp(22px, 8vw, 34px); }
  .book-card { margin: -22px 3% 0; padding: 14px; width: 94%; }
  .book-row { grid-template-columns: 1fr 1fr; }
  .book-field input { font-size: 13px; }
}

/* ── SECTIONS ── */
section { padding: 80px 5%; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(255,122,0,0.08);
  border: 1px solid rgba(255,122,0,0.25);
  color: var(--orange); padding: 5px 14px;
  border-radius: 20px; font-size: 12px;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; margin-bottom: 12px;
}
.section-header h2 span { color: var(--orange); }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 520px; margin: 0 auto; }

/* ── WHY US ── */
.why-us { background: var(--dark2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,0,0.35);
  box-shadow: 0 12px 40px rgba(255,122,0,0.1);
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(255,122,0,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  font-size: 0;
}
.feature-icon i {
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── LOCATION ── */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.contact-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px; font-weight: 700; margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item i {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(255,122,0,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px; flex-shrink: 0;
  line-height: 1;
}
.contact-item div p:first-child { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.contact-item div p:last-child { font-size: 13px; color: var(--text-muted); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 12px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 600; margin-top: 8px;
  transition: all var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 5% 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 14px 0 20px; max-width: 300px; }

.social-links { display: flex; gap: 10px; align-items: center; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex !important; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff; flex-shrink: 0; text-decoration: none;
}
.social-link i {
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1;
  width: 16px; height: 16px; pointer-events: none;
}
.social-link:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.social-link.fb { background: #1877f2; }
.social-link.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-link.tw { background: #14171a; }
.social-link.wa { background: #25d366; }
.social-link.yt { background: #ff0000; }

.footer-col h4 { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.footer-bottom span { color: var(--orange); }

/* ── FLOATING BUTTONS ── */
.fab-wrap {
  position: fixed; right: 20px; bottom: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 900;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex !important; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; flex-shrink: 0;
}
.fab i {
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  width: 20px; height: 20px;
  position: relative; z-index: 1; pointer-events: none;
}
.fab-wa i { font-size: 24px; width: 24px; height: 24px; }
.fab:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.fab-call { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #ffffff; }
.fab-wa   { background: #25d366; }

.fab-call::before {
  content: ''; position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,122,0,0.35);
  animation: pulse 1.8s ease-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-book { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 108px; left: 0; right: 0;
    background: #ffffff;
    padding: 24px 5%;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open + .btn-book {
    display: block; margin: 0 5% 16px; text-align: center;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  section { padding: 60px 4%; }
}

/* ── SAFETY SECTION ── */
.safety-section { background: var(--dark); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.safety-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.safety-card:hover { transform: translateY(-4px); border-color: rgba(255,122,0,0.3); box-shadow: 0 8px 28px rgba(255,122,0,0.08); }
.safety-icon {
  width: 52px; height: 52px;
  background: rgba(255,122,0,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.safety-icon i { font-size: 22px; color: var(--orange); }
.safety-card h3 { font-size: 16px; font-weight: 600; }
.safety-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--dark2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(255,122,0,0.3); box-shadow: 0 8px 28px rgba(255,122,0,0.08); }
.t-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.t-text {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; flex: 1;
  font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #ffffff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 14px; font-weight: 600; }
.t-author span   { font-size: 12px; color: var(--text-muted); }

/* ── LIST VEHICLE ── */
.list-vehicle-section {
  position: relative;
  background: #1c1c2e url('assets/bg_home.jpg') center/cover no-repeat;
  padding: 80px 5%;
  display: flex; justify-content: flex-start;
}
.list-vehicle-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}
.list-vehicle-card {
  position: relative; z-index: 1;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 480px; width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.lv-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 16px;
}
.lv-tag i { color: var(--orange); }
.list-vehicle-card h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700; line-height: 1.25;
  color: var(--text); margin-bottom: 14px;
}
.list-vehicle-card h2 span { color: var(--orange); }
.list-vehicle-card p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 24px;
}
.btn-know-more {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 10px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: all var(--transition);
}
.btn-know-more:hover { background: var(--orange); color: #fff; }

/* ── DOWNLOAD APP ── */
.app-section { background: var(--dark); padding: 60px 5%; text-align: left; }
.app-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700; letter-spacing: 2px;
  color: var(--text); margin-bottom: 28px;
}
.app-btns {
  display: flex;
  gap: 16px; flex-wrap: wrap;
}
.app-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: #111;
  border: 2px solid #111;
  padding: 10px 20px; border-radius: 10px;
  text-decoration: none;
  transition: all var(--transition);
  min-width: 160px;
}
.app-btn:hover { background: #111; color: #fff; transform: translateY(-2px); }
.app-btn i { font-size: 26px; flex-shrink: 0; }
.app-btn div { text-align: left; }
.app-btn div span { display: block; font-size: 10px; font-weight: 500; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }
.app-btn div strong { display: block; font-size: 17px; font-weight: 700; line-height: 1.2; }

/* ── FAQ ── */
.faq-section { background: var(--dark2); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--text);
  background: none; text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-q i { font-size: 13px; color: #999; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--orange); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 14px; }
.google-rating {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #e0e0e0;
  border-radius: 50px; padding: 8px 18px;
  margin-top: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.google-rating .fa-google { color: #4285F4; font-size: 16px; }
.gr-score { font-size: 17px; font-weight: 700; color: #111; }
.gr-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.gr-label { font-size: 13px; color: #666; font-weight: 500; }
