/* ============================================================
   Kenali Bali — style.css
   ============================================================ */

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

:root {
  --primary:       #1E3D2F;
  --primary-mid:   #2D6A4F;
  --primary-light: #E8F2EC;
  --gold:          #C8A84B;
  --bg:            #FFFFFF;
  --bg-alt:        #F5F8F5;
  --text:          #111827;
  --muted:         #6B7280;
  --light:         #9CA3AF;
  --border:        #E4EDE7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .03em;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
}
.nav-cta:hover { background: var(--primary-mid); }

/* ---- HERO ---- */
.hero{
  background-image:url('images/bali-hero.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:100px 48px 80px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(248,246,239,.76);
  pointer-events:none;
  z-index:0;
}

.hero::after{
  content:none;
}

.hero > *{
  position:relative;
  z-index:1;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 720px;
}
.hero-title em { font-style: italic; color: var(--primary-mid); }
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.trust-sep {
  width: 1px; height: 16px;
  background: var(--border);
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-green {
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: background .2s;
}
.btn-green:hover { background: var(--primary-mid); }
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 14px 30px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all .2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---- SHARED SECTION ---- */
.section-wrap { max-width: 1100px; margin: 0 auto; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ---- INCLUDED ---- */
.included-sec {
  padding: 64px 48px;
  background: var(--primary-light);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.included-item {
  text-align: center;
  padding: 20px 12px;
}
.included-icon { font-size: 28px; margin-bottom: 10px; }
.included-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

/* ---- TRIPS ---- */
.trips-sec {
  padding: 88px 48px;
  background: #fff;
}
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trip-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.trip-card:hover {
  box-shadow: 0 8px 32px rgba(30,61,47,.1);
  transform: translateY(-2px);
}
.trip-thumb {
  height: 172px;
  display: flex;
  align-items: flex-start;
  padding: 14px;
  position: relative;
  background-size: cover;
  background-position: center;
}
/* Gradient fallbacks if images missing */
.trip-thumb.ubud    { background-color: #2D5C42; }
.trip-thumb.art     { background-color: #3A1C1C; }
.trip-thumb.uluwatu { background-color: #1C3A52; }
.trip-thumb.north   { background-color: #1C3828; }
.trip-thumb.east    { background-color: #2A4A1C; }
.trip-thumb.jeep    { background-color: #2A1C0A; }
.trip-thumb.nusa    { background-color: #1A3050; }
.trip-thumb.activity{ background-color: #1C2A3A; }

.trip-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.trip-body { padding: 20px; }
.trip-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.trip-meta {
  font-size: 12px;
  color: var(--light);
  margin-bottom: 3px;
}
.trip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 10px 0;
}
.trip-tag {
  font-size: 10px;
  background: var(--primary-light);
  color: var(--primary-mid);
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 500;
}
.trip-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.trip-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trip-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.trip-price span {
  font-size: 11px;
  color: var(--light);
  font-weight: 400;
}
a.trip-card { display: block; color: inherit; }
.trip-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-mid);
}

/* ---- CUSTOM TRIP CARD ---- */
.custom-card{
  border:none;
  border-radius:10px;
  padding:32px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:var(--primary);
  min-height:100%;
  height:100%;
}

.custom-icon{
  font-size:28px;
  margin-bottom:12px;
}

.custom-title{
  font-family:'Playfair Display',serif;
  font-size:20px;
  font-weight:600;
  color:#fff;
  margin-bottom:10px;
}

.custom-desc{
  font-size:13px;
  color:rgba(255,255,255,.75);
  line-height:1.7;
  margin-bottom:22px;
}

.custom-card .btn-green{
  background:var(--gold);
  color:var(--primary);
}

.custom-card .btn-green:hover{
  background:#d4b05a;
}
/* ---- DRIVERS ---- */
.drivers-sec {
  padding: 88px 48px;
  background: var(--bg-alt);
}
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.driver-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.driver-av {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.driver-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}
.driver-exp {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.d-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.d-tag {
  font-size: 11px;
  background: var(--primary-light);
  color: var(--primary-mid);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.driver-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.trust-strip {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.trust-ico {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-copy {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.trust-copy strong {
  color: var(--primary);
  font-weight: 600;
}

/* ---- HOW IT WORKS ---- */
.how-sec {
  padding: 88px 48px;
  background: #fff;
}
.how-inner { text-align: center; }
.how-inner .sec-sub { margin: 0 auto 60px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(17% + 8px);
  right: calc(17% + 8px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary-light), var(--border));
}
.step { text-align: center; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.how-tagline {
  margin-top: 56px;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--primary-mid);
}

/* ---- CONTACT ---- */
.contact-sec {
  padding: 88px 48px;
  background: var(--primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .eyebrow { color: rgba(200,168,75,.8); }
.contact-info .sec-title { color: #fff; }
.contact-info p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.wa-btn:hover { background: #1da851; }
.reply-note {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  margin-top: 16px;
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ff {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ff label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.ff input,
.ff select,
.ff textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 11px 14px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border .2s;
  -webkit-appearance: none;
}
.ff input:focus,
.ff select:focus,
.ff textarea:focus { border-color: rgba(200,168,75,.5); }
.ff input::placeholder,
.ff textarea::placeholder { color: rgba(255,255,255,.25); }
.ff select option { background: var(--primary); color: #fff; }
.ff textarea { resize: none; height: 90px; }
.submit-btn {
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: .04em;
  transition: background .2s;
  width: 100%;
}
.submit-btn:hover { background: #d4b05a; }

/* ---- FOOTER ---- */
footer {
  background: #162D22;
  padding: 40px 48px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 220px;
}
.footer-links h4 {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.2);
}
.footer-tagline {
  font-size: 11px;
  color: rgba(200,168,75,.5);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .trips-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 80px 20px 60px; }
  .trips-sec,
  .drivers-sec,
  .how-sec,
  .contact-sec,
  .included-sec { padding: 60px 20px; }
  footer { padding: 40px 20px; }
  .footer-top { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .drivers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trips-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
