*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }

/* ─── CSS VARIABLES ─── */
:root {
  --orange: #E85C00;
  --orange2: #FF6B1A;
  --dark: #111111;
  --white: #ffffff;
  --light: #F7F7F7;
  --gray: #666;
  --border: #E0E0E0;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  height: 72px; display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.nav-logo img { height: 52px; object-fit: contain; display: block; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links a {
  display: block; padding: 0 18px; height: 72px; line-height: 72px;
  font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  color: var(--dark); border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-book {
  background: var(--orange); color: #fff; padding: 11px 26px;
  border: none; border-radius: 3px; font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background .2s;
}
.btn-book:hover { background: #c94e00; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ─── HERO SLIDER ─── */
#hero {
  position: relative; height: 100vh; min-height: 600px; overflow: hidden;
  margin-top: 72px;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .9s ease;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; }
/* Unsplash bike images */
.slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?w=1800&auto=format&fit=crop&q=80'); }
.slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?w=1800&auto=format&fit=crop&q=80'); }
.slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1609630875171-b1321377ee65?w=1800&auto=format&fit=crop&q=80'); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}
.hero-content {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%); z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.hero-tag {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--orange2); }
.hero-sub {
  color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.7;
  max-width: 480px; margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--orange); color: #fff; padding: 15px 36px;
  font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background .2s, transform .2s;
}
.btn-hero-primary:hover { background: #c94e00; transform: translateY(-2px); }
.btn-hero-outline {
  background: transparent; color: #fff; padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.6); font-family: 'Oswald', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.btn-hero-outline:hover { border-color: var(--orange2); color: var(--orange2); }
/* Slider arrows */
.slider-arrow {
  position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
  width: 50px; height: 50px; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4); color: #fff; cursor: pointer;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: background .3s, transform .3s;
}
.slider-dot.active { background: var(--orange); transform: scale(1.3); }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--dark); }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); divide: 1;
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--orange); }
.stat-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ─── SECTION COMMONS ─── */
.section { padding: 90px 0; }
.section.gray { background: var(--light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec-label {
  font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.1;
}
.sec-title span { color: var(--orange); }
.sec-rule { width: 48px; height: 4px; background: var(--orange); margin-bottom: 20px; }
.sec-sub { color: var(--gray); font-size: 1rem; line-height: 1.8; max-width: 560px; }
.sec-head-center { text-align: center; }
.sec-head-center .sec-rule { margin: 0 auto 20px; }
.sec-head-center .sec-sub { margin: 0 auto; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-block { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: none; display: block;
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: #fff; padding: 22px 24px; text-align: center;
  box-shadow: 0 8px 32px rgba(232,92,0,0.4);
}
.badge-num { font-family: 'Oswald', sans-serif; font-size: 2.6rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feat-item { display: flex; align-items: flex-start; gap: 16px; }
.feat-icon-wrap {
  width: 46px; height: 46px; flex-shrink: 0;
  background: #FFF0E8; display: flex; align-items: center; justify-content: center;
  border-left: 3px solid var(--orange);
}
.feat-icon-wrap img { width: 22px; height: 22px; object-fit: contain; }
.feat-text h4 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.feat-text p { font-size: 0.84rem; color: var(--gray); line-height: 1.5; }

/* ─── FLEET / SERVICE ─── */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 52px; }
.bike-card { background: #fff; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.bike-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); z-index: 2; position: relative; }
.bike-img-wrap { position: relative; overflow: hidden; }
.bike-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .5s; }
.bike-card:hover .bike-img-wrap img { transform: scale(1.06); }
.bike-badge-cat {
  position: absolute; top: 14px; left: 0;
  background: var(--dark); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px;
}
.bike-info { padding: 22px 22px 20px; }
.bike-name { font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.price-list { border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.price-row { display: flex; align-items: center; justify-content: space-between; }
.price-dest { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.price-dest::before { content: ''; display: block; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.price-val { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--orange); }
.price-dur { font-size: 0.72rem; color: #aaa; }
.bike-cta-row { padding: 0 22px 22px; }
.btn-book-bike {
  display: block; width: 100%; padding: 12px;
  background: var(--dark); color: #fff; text-align: center;
  font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-book-bike:hover { background: var(--orange); }
.doc-notice {
  margin-top: 40px; padding: 20px 24px;
  background: #FFF8F4; border-left: 4px solid var(--orange);
  display: flex; align-items: flex-start; gap: 16px;
}
.doc-notice img { width: 36px; height: 36px; object-fit: cover; flex-shrink: 0; border-radius: 4px; }
.doc-notice p { font-size: 0.95rem; color: #555; line-height: 1.6; }
.doc-notice p strong { color: var(--dark); }

/* ─── WHY CHOOSE US (IMAGE BLOCKS) ─── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 52px; }
.why-item { background: #fff; overflow: hidden; }
.why-img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform .5s; }
.why-item:hover .why-img { transform: scale(1.05); }
.why-img-wrap { overflow: hidden; }
.why-body { padding: 22px 20px; }
.why-num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: #F0E8E0; line-height: 1; margin-bottom: 4px; }
.why-title { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-desc { font-size: 0.86rem; color: var(--gray); line-height: 1.6; }

/* ─── GALLERY ─── */
.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 6px; margin-top: 48px; }
.gal-item { overflow: hidden; position: relative; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item:nth-child(1) { grid-column: span 2; }
.gal-item:nth-child(4) { grid-column: span 2; }
.gal-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  transition: background .3s; display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-overlay { background: rgba(232,92,0,0.35); }
.gal-overlay-text {
  color: #fff; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.gal-item:hover .gal-overlay-text { opacity: 1; transform: translateY(0); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 52px; }
.contact-map { height: 520px; }
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-form-panel { background: var(--dark); padding: 52px 48px; }
.contact-form-panel .sec-label { color: rgba(255,255,255,0.5); }
.contact-form-panel .sec-title { color: #fff; }
.contact-form-panel .sec-rule { background: var(--orange); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 0.95rem; outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; padding: 15px; background: var(--orange); color: #fff;
  border: none; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background .2s;
  margin-top: 6px;
}
.btn-submit:hover { background: #c94e00; }
.contact-phones { display: flex; gap: 20px; margin-top: 24px; }
.phone-item { display: flex; align-items: center; gap: 12px; }
.phone-icon { width: 42px; height: 42px; background: rgba(232,92,0,0.15); border-left: 3px solid var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.phone-text a { color: var(--orange); font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; text-decoration: none; }
.phone-text span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── FOOTER ─── */
footer { background: #0A0A0A; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1.3fr; gap: 60px; }
.footer-brand img { height: 50px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 290px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.9rem; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item span { color: var(--orange); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item div { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); margin-top: 48px;
  padding: 18px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.28);
}
.footer-bottom span { color: var(--orange); }

/* ─── WHATSAPP FAB ─── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5); text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.wa-fab:hover { animation: none; transform: scale(1.1); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
}

/* ─── MOBILE MENU ─── */
@media (max-width: 960px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); z-index: 999; padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { height: auto; line-height: 1; padding: 14px 24px; border-bottom: 1px solid var(--border); border-left: 3px solid transparent; }
  .nav-links a:hover, .nav-links a.active { border-left-color: var(--orange); border-bottom-color: var(--border); }
  .hamburger { display: flex; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-item:nth-child(1), .gal-item:nth-child(4) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .about-feats { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .contact-form-panel { padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-phones { flex-direction: column; }
  .hero-content { padding: 0 24px; }
}

.feat-icon-wrap{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#ff6a00,#ff9f43);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 10px 25px rgba(255,106,0,0.25);
    flex-shrink:0;
}

.feat-icon-wrap i{
    color:#fff;
    font-size:28px;
}