@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: #c9a84c;
  --orange-light: #e2c06a;
  --dark: #080c14;
  --dark2: #0d1220;
  --dark3: #111827;
  --dark4: #1a2235;
  --text: #f0f4ff;
  --text-muted: #8a96b0;
  --card-bg: #0f1623;
  --border: #1e2d45;
  --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;
}

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; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-svg { width: 180px; margin-bottom: 24px; }

.loader-moto { animation: motoRide 1s ease-in-out infinite alternate; }
@keyframes motoRide {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

.speed-line { animation: speedLine 0.6s linear infinite; opacity: 0.6; }
.speed-line:nth-child(2) { animation-delay: 0.2s; }
.speed-line:nth-child(3) { animation-delay: 0.4s; }
@keyframes speedLine {
  from { transform: translateX(0); opacity: 0.6; }
  to   { transform: translateX(-20px); opacity: 0; }
}

.exhaust { animation: exhaust 0.8s ease-out infinite; transform-origin: left center; }
@keyframes exhaust {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2) translateX(10px); }
}

.loader-bar-wrap {
  width: 200px; height: 4px;
  background: var(--border);
  border-radius: 4px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  animation: loadBar 2s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

.loader-text {
  margin-top: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── 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(13,18,32,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.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: #0a0e18; 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: var(--text);
  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); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/bg.webp') center/cover no-repeat;
}
@media (max-width: 768px) {
  .hero-bg { background: url('assets/bg_Mobile.webp') center/cover no-repeat; }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,12,20,0.97) 0%, rgba(8,12,20,0.78) 55%, rgba(201,168,76,0.08) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--orange); padding: 6px 14px;
  border-radius: 20px; font-size: 13px; font-weight: 500;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 11px; }

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--orange); }

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 520px;
}

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

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

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

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,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(201,168,76,0.4);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  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(201,168,76,0.1);
  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.5); }
.social-link.fb { background: #1877f2; }
.social-link.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-link.tw { background: #14171a; border: 1px solid #444; }
.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.4);
  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.5); }
.fab-call { background: linear-gradient(135deg, #c9a84c, #e2c06a); color: #0a0e18; }
.fab-wa   { background: #25d366; }

.fab-call::before {
  content: ''; position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(201,168,76,0.4);
  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: 70px; left: 0; right: 0;
    background: var(--dark2);
    padding: 24px 5%;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .nav-links.open + .btn-book {
    display: block;
    margin: 0 5% 16px;
    text-align: center;
  }

  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  section { padding: 60px 4%; }
  .hero { padding: 90px 4% 50px; }
  .stat-num { font-size: 28px; }
}

/* ── 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);
}
.safety-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.35); }
.safety-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  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);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.t-stars { color: #facc15; 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: #0a0e18; 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); }
