/* 
  House Rental Bikes Website
  Static website for Netlify Drop / Vercel / GitHub Pages
*/

:root {
  --deep-ocean: #073B4C;
  --ocean: #0F766E;
  --sea: #14B8A6;
  --sand: #FFF4DA;
  --sand-dark: #F5D69A;
  --sunset: #F97316;
  --ink: #102027;
  --muted: #60727A;
  --white: #FFFFFF;
  --soft: #F7FBFA;
  --line: rgba(16, 32, 39, 0.12);
  --shadow: 0 24px 60px rgba(7, 59, 76, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 39, 0.08);
  padding: 4px;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: #2B4048;
}

.nav-menu a:not(.nav-cta) {
  position: relative;
  font-size: 0.94rem;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: var(--sunset);
  transition: width 0.25s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.nav-cta,
.btn-primary {
  background: var(--sunset);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--deep-ocean);
  border-color: var(--line);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--deep-ocean);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(20, 184, 166, 0.22), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.16), transparent 32%),
    linear-gradient(135deg, #F8FFFD 0%, #F4FBF8 48%, #FFF4DA 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 59, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 59, 76, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.78fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--ocean);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

.hero h1,
.section-heading h2,
.about-content h2,
.contact-card h2 {
  line-height: 1.05;
  letter-spacing: -0.055em;
  color: var(--deep-ocean);
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 850px;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 26px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats div {
  padding: 16px 20px;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--deep-ocean);
}

.hero-stats span {
  font-weight: 700;
  color: var(--muted);
}

.booking-card,
.contact-card,
.location-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.booking-card {
  padding: 30px;
}

.booking-header h2 {
  margin: 0 0 6px;
  color: var(--deep-ocean);
  letter-spacing: -0.03em;
}

.booking-header p,
.booking-note {
  color: var(--muted);
  margin: 0;
}

.booking-card form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.booking-card label {
  display: grid;
  gap: 8px;
  color: #2B4048;
  font-weight: 800;
  font-size: 0.92rem;
}

.booking-card input,
.booking-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px 15px;
  background: #FBFEFD;
  color: var(--ink);
  outline: none;
}

.booking-card input:focus,
.booking-card select:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.booking-note {
  margin-top: 16px;
  font-size: 0.9rem;
}

.intro-strip {
  padding: 38px 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--deep-ocean);
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.strip-grid div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 22px;
  color: var(--white);
}

.strip-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: var(--sunset);
  color: var(--white);
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.strip-grid h3 {
  margin: 0 0 6px;
}

.strip-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-heading.left {
  text-align: left;
  margin-inline: 0;
}

.section-heading h2,
.about-content h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p,
.about-content p,
.contact-card p,
.location-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.bike-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bike-card,
.service-list article,
.destination-grid article,
.testimonial-grid article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(7, 59, 76, 0.08);
}

.bike-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.bike-image {
  background:
    radial-gradient(circle at 50% 35%, rgba(20, 184, 166, 0.24), transparent 35%),
    linear-gradient(135deg, #EFFFFB, #FFF4DA);
  padding: 32px;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.bike-image img {
  max-height: 190px;
}

.bike-body {
  padding: 26px;
}

.bike-tag {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 12px;
  background: rgba(249, 115, 22, 0.12);
  color: #B34D05;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.bike-body h3,
.service-list h3,
.destination-grid h3 {
  margin: 0 0 10px;
  color: var(--deep-ocean);
  letter-spacing: -0.02em;
}

.bike-body p,
.bike-body li,
.service-list p,
.destination-grid p,
.testimonial-grid p,
.faq-list p {
  color: var(--muted);
}

.bike-body ul {
  margin: 18px 0;
  padding-left: 18px;
}

.text-link {
  color: var(--ocean);
  font-weight: 900;
}

.services-section {
  background: linear-gradient(135deg, var(--deep-ocean), #0A5366);
  color: var(--white);
}

.services-section .section-heading h2,
.services-section .section-heading p {
  color: var(--white);
}

.services-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.services-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-list article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.service-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--sunset);
  color: var(--white);
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-list h3 {
  color: var(--white);
}

.service-list p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  background:
    radial-gradient(circle at 35% 30%, rgba(20, 184, 166, 0.26), transparent 38%),
    linear-gradient(135deg, #EFFFFB, #FFF4DA);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.about-points div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.about-points strong {
  display: block;
  color: var(--deep-ocean);
}

.about-points span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.destination-section {
  background: var(--sand);
}

.destination-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.destination-grid article,
.testimonial-grid article {
  padding: 26px;
}

.destination-grid span {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 14px;
}

.testimonials-section {
  background: linear-gradient(180deg, var(--soft), #FFFFFF);
}

.stars {
  color: var(--sunset);
  letter-spacing: 0.06em;
  font-weight: 900;
  margin-bottom: 18px;
}

.testimonial-grid strong {
  color: var(--deep-ocean);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--deep-ocean);
}

.faq-list p {
  margin-bottom: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(249, 115, 22, 0.13), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(20, 184, 166, 0.18), transparent 35%),
    linear-gradient(135deg, #F8FFFD, #FFF4DA);
}

.contact-card,
.location-card {
  padding: 32px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.map-placeholder {
  margin-top: 24px;
  background: linear-gradient(135deg, #EFFFFB, #FFF4DA);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #22C55E;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.32);
  font-weight: 900;
}

.footer {
  background: #062B38;
  color: var(--white);
  padding: 60px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer p,
.footer a,
.footer small {
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer h4 {
  margin: 0 0 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-grid,
  .services-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .booking-card {
    max-width: 640px;
  }

  .strip-grid,
  .bike-grid,
  .destination-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-list,
  .about-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .booking-card,
  .contact-card,
  .location-card {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}


/* V4 Bike Collection real photo styling */
.bike-image {
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(20, 184, 166, 0.12), transparent 44%),
    linear-gradient(135deg, #F8FFFD, #FFF4DA);
}

.bike-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.bike-photo-note {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .bike-image {
    min-height: 220px;
  }

  .bike-image img {
    height: 220px;
  }
}


/* V5 Language / Bahasa dropdown */
.language-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep-ocean);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.language-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(7, 59, 76, 0.12);
}

.chevron {
  font-size: 0.8rem;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 80;
}

.language-dropdown.open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu button {
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 12px 13px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.active {
  background: rgba(20, 184, 166, 0.12);
  color: var(--ocean);
}

@media (max-width: 980px) {
  .language-dropdown {
    width: 100%;
    display: block;
    padding: 8px 0;
  }

  .language-toggle {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
  }

  .language-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }
}


/* V6 branding refinement */
.brand strong {
  line-height: 1.08;
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }
}
