@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --primary: #143d34;
  --primary-dark: #0b2b25;
  --secondary: #2f6f68;
  --accent: #e3ac52;
  --accent-soft: #f6e8cc;
  --bg: #fffdf9;
  --surface: #ffffff;
  --soft: #f6f0e7;
  --ink: #183029;
  --muted: #687970;
  --line: #e2e8e4;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(20, 61, 52, 0.08);
  --shadow: 0 22px 54px rgba(20, 61, 52, 0.12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1120px;
  --section-space: 76px;
  --font-heading: 'Plus Jakarta Sans', Arial, sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; padding: 10px 16px; border-radius: 10px; background: var(--surface); box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }
.section { padding: var(--section-space) 0; }
.section-sm { padding: 52px 0; }
.section-soft { background: var(--soft); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.14;
}
h1 { font-size: clamp(40px, 5vw, 62px); }
h2 { font-size: clamp(29px, 3.4vw, 43px); }
h3 { font-size: 20px; letter-spacing: -0.025em; }
h4 { font-size: 17px; letter-spacing: -0.015em; }
p { margin: 0 0 16px; }
.lead { max-width: 680px; color: var(--muted); font-size: 16px; line-height: 1.78; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 24px rgba(20, 61, 52, 0.18); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--accent); color: var(--primary-dark); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--primary); }
.btn-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-weight: 700; }
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(227, 172, 82, 0.45);
  outline-offset: 3px;
}

/* Shared header */
.topbar {
  position: relative;
  z-index: 80;
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.84);
  white-space: nowrap;
  contain: paint;
  max-width: 100vw;
}
.promo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding-left: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  animation: promo-marquee 28s linear infinite;
}
.promo-track b { color: var(--accent); }
.topbar:hover .promo-track { animation-play-state: paused; }
@keyframes promo-marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20,61,52,0.06);
  box-shadow: 0 8px 24px rgba(20,61,52,0.06);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
}
.brand-name { font-size: 14px; line-height: 1.1; letter-spacing: -0.015em; }
.brand-name small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 600; }
.nav-links > a:not(.btn), .nav-dropdown > button { position: relative; padding: 9px 0; }
.nav-links > a:not(.btn)::after, .nav-dropdown > button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav-links > a:hover::after, .nav-links > a.active::after, .nav-dropdown > button:hover::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown > button { border: 0; background: transparent; cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: -18px;
  min-width: 200px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.dropdown-menu a { display: block; padding: 10px 11px; border-radius: 9px; }
.dropdown-menu a:hover { background: var(--soft); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { display: block; }
.menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); font-size: 19px; cursor: pointer; }

/* Home hero */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../images/uluwatu-coast.jpg') center 44% / cover no-repeat;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,39,32,0.38), rgba(8,39,32,0.28) 46%, rgba(8,39,32,0.62));
}
.hero-content { position: relative; z-index: 2; max-width: 840px; margin-inline: auto; padding: 82px 0 150px; text-align: center; }
.hero h1 { max-width: 780px; margin-inline: auto; }
.hero .eyebrow { justify-content: center; color: #ffe2b0; }
.hero .eyebrow::before { display: none; }
.hero .lead { max-width: 680px; margin-inline: auto; color: rgba(255,255,255,0.9); }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px; margin: 27px 0 26px; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.trust-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); font-size: 11px; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.quick-book {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 40px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.quick-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.65fr 1.15fr auto; gap: 10px; align-items: end; }
.field, .form-grid > * { min-width: 0; }
.field label { display: block; margin: 0 0 6px 4px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(227,172,82,0.14); }
textarea { resize: vertical; }

/* Value strip */
.value-section { padding: 34px 0 22px; }
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); }
.value-item { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; min-width: 0; padding: 20px 22px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--accent-soft); color: var(--primary); }
.value-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-item strong { display: block; margin-bottom: 3px; font-family: var(--font-heading); font-size: 14px; }
.value-item span:last-child { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; }

/* Shared section headings and grids */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-head > p { max-width: 530px; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.has-section-action { position: relative; }
.has-section-action .section-head { padding-right: 210px; }
.section-action-top { display: none; }
.section-action-bottom { position: absolute; top: 0; right: 0; }

/* Service showcase */
.service-showcase-section { background: var(--soft); }
.service-image-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-image-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); transition: transform 0.28s ease, box-shadow 0.28s ease; }
.service-image-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-media { position: relative; display: block; height: 205px; overflow: hidden; }
.service-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,39,32,0.42)); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.service-image-card:hover img { transform: scale(1.04); }
.service-badge { position: absolute; z-index: 2; left: 16px; bottom: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,0.9); color: var(--primary); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.service-card-body { padding: 23px; }
.service-card-body p { min-height: 72px; margin: 0; color: var(--muted); font-size: 14px; }
.service-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); }
.service-card-foot strong { color: var(--primary); font-size: 13px; }
.service-card-foot .text-link { font-size: 12px; }

/* Common cards */
.service-card, .content-card, .blog-card, .testimonial-card, .contact-card, .step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 6px 22px rgba(20,61,52,0.05);
}
.service-card { padding: 26px; }
.service-card:hover, .blog-card:hover, .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.icon-box { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 20px; border-radius: 14px; background: var(--accent-soft); color: var(--primary); font-size: 20px; }
.price { margin: 18px 0; color: var(--primary); font-weight: 800; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 7px 10px; border-radius: 999px; background: var(--soft); color: var(--primary); font-size: 11px; font-weight: 700; }
.notice { padding: 15px 17px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); color: var(--muted); font-size: 13px; }

/* Dark band */
.band { position: relative; overflow: hidden; background: var(--primary); color: var(--white); }
.band::after { content: ''; position: absolute; right: -160px; top: -230px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,0.025), 0 0 0 160px rgba(255,255,255,0.018); }
.band .lead { color: rgba(255,255,255,0.72); }
.feature-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.feature { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.17); }
.feature-num { color: var(--accent); font-family: var(--font-heading); font-size: 22px; font-weight: 700; }
.feature p { margin: 0; color: rgba(255,255,255,0.7); font-size: 13px; }

/* Image cards */
.image-card { position: relative; min-height: 405px; overflow: hidden; border-radius: var(--radius); background: var(--primary); color: var(--white); }
.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.image-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,39,32,0.93), rgba(8,39,32,0.04) 72%); }
.image-card:hover img { transform: scale(1.04); }
.image-card-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 25px; }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.16); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.image-card p { margin: 0; color: rgba(255,255,255,0.8); font-size: 14px; }
.image-card .price { margin-bottom: 0; color: #ffdfa9; }

/* Split and process layouts */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: 56px; }
.split-image { min-height: 470px; overflow: hidden; border-radius: 28px; }
.split-image img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li { position: relative; padding: 11px 0 11px 29px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 900; }
.process { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.step { padding: 23px; }
.step span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 24px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 13px; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

/* Testimonials */
.testimonial-card { padding: 26px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.stars { color: var(--accent); letter-spacing: 0.12em; font-size: 14px; }
.testimonial-card blockquote { margin: 14px 0 21px; font-family: var(--font-heading); font-size: 17px; font-weight: 600; line-height: 1.58; }
.guest { display: flex; align-items: center; gap: 13px; }
.avatar-photo { width: 54px; height: 54px; flex: 0 0 54px; border: 2px solid var(--white); border-radius: 50%; object-fit: cover; box-shadow: 0 8px 18px rgba(20,61,52,0.13); }
.guest strong { display: block; font-size: 13px; }
.guest span { display: block; color: var(--muted); font-size: 11px; }
.testimonial-grid-6 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.review-form, .booking-form { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.rating-choice { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.rating-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.rating-choice label { cursor: pointer; color: #c8d2ce; font-size: 28px; line-height: 1; }
.rating-choice label:hover, .rating-choice label:hover ~ label, .rating-choice input:checked ~ label { color: var(--accent); }

/* Blog cards and editorial blog */
.blog-card { overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.blog-card > img { width: 100%; height: 215px; object-fit: cover; transition: transform 0.45s ease; }
.blog-card:hover > img { transform: scale(1.035); }
.blog-card-body { padding: 22px; }
.blog-card-body p { color: var(--muted); }
.blog-meta { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 10px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.blog-feature { display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-sm); }
.blog-feature-media { position: relative; min-height: 480px; overflow: hidden; }
.blog-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.blog-feature:hover .blog-feature-media img { transform: scale(1.035); }
.blog-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 46px; }
.blog-feature-label { margin-bottom: 12px; color: var(--primary); font-size: 10px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.reading-time { color: var(--muted); font-size: 12px; }
.blog-topic-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.blog-topic { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 700; }
.editorial-card { display: grid; grid-template-columns: 170px 1fr; gap: 20px; overflow: hidden; padding: 13px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); }
.editorial-card img { width: 170px; height: 175px; border-radius: 14px; object-fit: cover; transition: transform 0.4s ease; }
.editorial-card:hover img { transform: scale(1.035); }
.editorial-card-body { align-self: center; padding-right: 10px; }
.video-feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: center; }
.video-frame { position: relative; overflow: hidden; border-radius: 24px; background: var(--primary-dark); box-shadow: var(--shadow-sm); }
.video-frame::before { content: ''; display: block; padding-top: 56.25%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-note { color: var(--muted); font-size: 12px; }
.visual-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; grid-template-rows: 220px 220px; gap: 14px; }
.visual-grid figure { position: relative; overflow: hidden; margin: 0; border-radius: 20px; background: var(--soft); box-shadow: var(--shadow-sm); }
.visual-grid figure:first-child { grid-row: 1 / 3; }
.visual-grid figure:last-child { grid-column: 2 / 4; }
.visual-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.visual-grid figure:hover img { transform: scale(1.035); }
.visual-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 35px 16px 14px; background: linear-gradient(0deg, rgba(0,0,0,0.62), transparent); color: var(--white); font-size: 12px; }

/* Page hero */
.page-hero { position: relative; min-height: 440px; display: flex; align-items: flex-end; padding: 88px 0 58px; overflow: hidden; background-position: center; background-size: cover; color: var(--white); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,39,32,0.22), rgba(8,39,32,0.82)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 760px; font-size: clamp(37px, 4.7vw, 55px); }
.page-hero p { max-width: 660px; margin: 0; color: rgba(255,255,255,0.86); font-size: 16px; }
.page-hero .eyebrow { color: #ffe0aa; }
.hero-airport { background-image: url('../images/bali-airport.jpg'); }
.hero-driver { background-image: url('../images/rice-terraces.jpg'); }
.hero-tours { background-image: url('../images/bali-temple.jpg'); }
.hero-custom { background-image: url('../images/bali-waterfall.jpg'); }
.hero-about { background-image: url('../images/uluwatu-coast.jpg'); }
.hero-contact { background-image: url('../images/rice-terraces.jpg'); }
.hero-testimonials { background-image: url('../images/bali-waterfall.jpg'); }
.hero-blog { background-image: url('../images/uluwatu-coast.jpg'); }
.blog-page-hero { min-height: 430px; }

/* Price and service details */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: var(--shadow-sm); }
.price-table { width: 100%; min-width: 690px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { background: var(--primary); color: var(--white); font-size: 12px; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { color: var(--primary); font-weight: 800; }
.airport-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.airport-info-grid .content-card { padding: 30px; }
.airport-info-grid .check-list { margin-bottom: 0; }
.airport-info-grid .check-list li:last-child { border-bottom: 0; }

/* Contact, booking and map */
.booking-layout, .location-grid { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: 54px; align-items: start; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.contact-card { display: flex; align-items: center; gap: 15px; margin-top: 14px; padding: 18px; }
.contact-icon { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 14px; background: var(--accent-soft); color: var(--primary); font-weight: 800; }
.map-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; height: 390px; border: 0; }
.map-info { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; }
.service-area-list { margin-top: 22px; border-top: 1px solid var(--line); }
.area-row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.area-row span { color: var(--muted); text-align: right; }

/* FAQ and CTA */
.faq { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 52px; align-items: start; }
.faq details { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--primary); font-size: 20px; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.cta { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 48px; border-radius: 28px; background: linear-gradient(120deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: var(--shadow); }
.cta::after { content: ''; position: absolute; right: -70px; top: -110px; width: 300px; height: 300px; border: 55px solid rgba(255,255,255,0.035); border-radius: 50%; }
.cta p { max-width: 610px; color: rgba(255,255,255,0.74); }
.cta .btn { position: relative; z-index: 2; flex: 0 0 auto; }

/* Article pages */
.article-shell { max-width: 940px; }
.article-header { padding: 70px 0 42px; background: var(--soft); }
.article-header h1 { max-width: 850px; font-size: clamp(36px, 4.8vw, 56px); }
.article-header .lead { max-width: 760px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 11px; font-weight: 700; }
.story-route { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.story-route span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 600; }
.article-cover { margin-top: 36px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-sm); }
.article-cover img { width: 100%; height: min(58vw, 560px); object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 210px minmax(0,1fr); gap: 52px; align-items: start; padding: 48px 0 78px; }
.article-toc { position: sticky; top: 100px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.article-toc strong { display: block; margin-bottom: 12px; color: var(--primary); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.article-toc nav { display: grid; gap: 8px; }
.article-toc a { color: var(--muted); font-size: 12px; line-height: 1.45; }
.article-toc a:hover { color: var(--primary); }
.article-main { min-width: 0; }
.article-content > p:first-child { color: var(--ink); font-size: 17px; line-height: 1.8; }
.article-content p, .article-content li { color: #40554d; }
.article-content h2 { scroll-margin-top: 100px; margin-top: 46px; font-size: 30px; }
.article-content h3 { font-size: 21px; }
.article-content ul, .article-content ol { padding-left: 22px; }
.article-content li + li { margin-top: 7px; }
.article-figure { margin: 30px 0; }
.article-figure img { width: 100%; max-height: 500px; border-radius: 22px; object-fit: cover; }
.article-figure figcaption, .article-video figcaption { margin-top: 10px; color: var(--muted); font-size: 11.5px; text-align: center; }
.article-photo-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 13px; margin: 30px 0; }
.article-photo-grid figure { margin: 0; overflow: hidden; border-radius: 20px; }
.article-photo-grid img { width: 100%; height: 310px; object-fit: cover; }
.article-video { margin: 34px 0; }
.article-checklist { display: grid; gap: 10px; margin: 24px 0; padding: 0; list-style: none; }
.article-checklist li { position: relative; padding: 13px 15px 13px 43px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.article-checklist li::before { content: '✓'; position: absolute; left: 14px; top: 12px; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--accent-soft); color: var(--primary); font-weight: 900; }
.article-callout, .driver-note { display: grid; grid-template-columns: auto 1fr; gap: 14px; margin: 30px 0; padding: 20px; border-radius: 18px; background: var(--soft); }
.article-callout-icon, .driver-note .icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--surface); color: var(--primary); font-size: 20px; }
.article-callout p, .driver-note p { margin: 3px 0 0; }
.journal-quote { margin: 34px 0; padding: 24px 26px; border-left: 2px solid var(--accent); border-radius: 0 18px 18px 0; background: var(--soft); }
.journal-quote p { margin: 0; color: var(--ink); font-family: var(--font-heading); font-size: 20px; font-weight: 600; line-height: 1.55; }
.article-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.related-posts { padding: 58px 0; background: var(--soft); }
.related-mini { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.related-mini img { width: 120px; height: 110px; border-radius: 13px; object-fit: cover; }
.related-mini h3 { margin: 6px 0; font-size: 18px; }
.related-mini p { margin: 0; color: var(--muted); font-size: 12px; }

/* Legal and 404 */
.legal-hero { min-height: 280px; display: flex; align-items: center; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.legal-hero .container { padding-block: 58px; text-align: center; }
.legal-hero .eyebrow { color: #ffe0aa; }
.legal-hero .eyebrow::before { display: none; }
.legal-hero p { margin: 0; color: rgba(255,255,255,0.78); }
.legal-section { padding-top: 0; }
.legal { max-width: 900px; margin: -48px auto 0; padding: 46px 50px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow); }
.legal h2 { margin-top: 34px; font-size: 25px; }
.legal h3 { margin-top: 24px; }
.legal > p { color: var(--muted); }
.legal > p:last-child { margin-bottom: 0; }
.error-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

/* Footer */
.site-footer { padding: 62px 0 25px; background: var(--primary-dark); color: rgba(255,255,255,0.77); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.15fr; gap: 38px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,0.57); font-size: 13px; }
.footer-title { margin-bottom: 14px; color: var(--white); font-weight: 800; font-size: 13px; }
.footer-links { display: grid; gap: 9px; color: rgba(255,255,255,0.64); font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,0.11); color: rgba(255,255,255,0.48); font-size: 11px; }
.wa-float { position: fixed; right: 19px; bottom: 19px; z-index: 60; display: grid; place-items: center; width: 56px; height: 56px; border: 3px solid rgba(255,255,255,0.95); border-radius: 50%; background: linear-gradient(135deg, #25d366, #18b95f); color: var(--white); box-shadow: 0 16px 34px rgba(37,211,102,0.26), 0 7px 18px rgba(0,0,0,0.12); transition: transform 0.22s ease; }
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 29px; height: 29px; }

/* Progressive reveal without blank content if JS fails */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: min(380px, 90%);
    height: 100dvh;
    padding: 96px 26px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: var(--bg);
    box-shadow: -18px 0 55px rgba(0,0,0,0.13);
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn), .nav-dropdown > button { width: 100%; color: var(--ink); text-align: left; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; display: grid; margin-top: 6px; border: 0; box-shadow: none; background: var(--soft); }
  .menu-btn { display: grid; place-items: center; position: relative; z-index: 110; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid .btn { grid-column: 1 / -1; }
  .hero { min-height: 850px; }
  .hero-content { padding-bottom: 260px; }
  .value-strip, .service-image-grid, .testimonial-grid-6 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .service-image-card:last-child { grid-column: 1 / -1; width: min(540px, 100%); justify-self: center; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-grid, .process { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .faq, .booking-layout, .location-grid, .video-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: 390px; }
  .article-layout { grid-template-columns: 1fr; gap: 28px; }
  .article-toc { position: relative; top: auto; }
  .article-toc nav { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  :root { --section-space: 58px; }
  body { font-size: 14.5px; }
  .container { width: min(var(--container), calc(100% - 28px)); }
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  h3 { font-size: 18px; }
  .lead { font-size: 14.5px; }
  .topbar { height: 27px; }
  .promo-track { font-size: 9px; animation-duration: 23s; }
  .nav { min-height: 66px; }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .brand-name { font-size: 12.5px; }
  .brand-name small { font-size: 7.5px; letter-spacing: 0.1em; }

  .hero { min-height: auto; display: block; background-position: 58% center; }
  .hero-content { padding: 76px 0 30px; }
  .hero .lead { font-size: 14.5px; }
  .hero-actions { margin: 22px 0 0; }
  .hero-actions .btn { flex: 1; max-width: 190px; }
  .trust-row { display: none; }
  .quick-book { position: relative; left: auto; bottom: auto; transform: none; width: calc(100% - 28px); margin: 0 auto 18px; padding: 14px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid .btn { grid-column: auto; }

  .value-section { padding: 20px 0 8px; }
  .value-strip { grid-template-columns: 1fr; }
  .value-item, .value-item:nth-child(2), .value-item:last-child { grid-column: auto; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }

  .section-head { align-items: center; flex-direction: column; gap: 12px; margin-bottom: 28px; text-align: center; }
  .section-head > div, .section-head > p { width: 100%; margin-inline: auto; }
  .section-head h2 { text-align: center; }
  .section-head h2 br { display: none; }
  .section-head .eyebrow { justify-content: center; }
  .section-head .eyebrow::before { display: none; }
  .has-section-action .section-head { padding-right: 0; }
  .section-action-bottom { position: static; margin-top: 24px; text-align: center; }
  .section-action-bottom .btn { width: 100%; }

  .grid-3, .grid-2, .service-image-grid, .testimonial-grid-6, .feature-grid, .process, .form-grid, .airport-info-grid { grid-template-columns: 1fr; }
  .service-image-card:last-child { grid-column: auto; width: 100%; }
  .service-media { height: 190px; }
  .service-card-body p { min-height: 0; }
  .service-card-foot { align-items: flex-start; flex-direction: column; gap: 10px; }
  .image-card { min-height: 360px; }
  .feature { text-align: left; }
  .split { gap: 30px; }
  .split-image, .split-image img { min-height: 340px; }
  .page-hero { min-height: 390px; padding: 68px 0 44px; }
  .page-hero .container { text-align: center; }
  .page-hero h1 { max-width: 100%; margin-inline: auto; font-size: 32px; }
  .page-hero p { margin-inline: auto; font-size: 14.5px; }
  .page-hero .eyebrow { justify-content: center; }
  .page-hero .eyebrow::before { display: none; }

  .testimonial-card, .blog-card-body, .content-card, .service-card { text-align: left; }
  .guest { justify-content: flex-start; }
  .booking-form, .review-form, .airport-info-grid .content-card { padding: 22px; }
  .area-row { flex-direction: column; gap: 2px; }
  .area-row span { text-align: left; }
  .map-card iframe { height: 320px; }
  .map-info { align-items: flex-start; flex-direction: column; }
  .cta { align-items: stretch; flex-direction: column; padding: 34px 24px; text-align: center; }
  .cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .wa-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }

  .blog-feature-media { min-height: 300px; }
  .blog-feature-copy { padding: 24px; }
  .editorial-card { grid-template-columns: 112px 1fr; gap: 13px; padding: 10px; }
  .editorial-card img { width: 112px; height: 125px; }
  .editorial-card-body { padding: 2px 2px 2px 0; }
  .editorial-card p { display: none; }
  .visual-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 160px 180px; }
  .visual-grid figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .visual-grid figure:last-child { grid-column: 1 / 3; }

  .article-header { padding: 54px 0 34px; text-align: center; }
  .article-header .eyebrow { justify-content: center; }
  .article-header .eyebrow::before { display: none; }
  .article-header h1 { font-size: 32px; }
  .article-meta, .story-route { justify-content: center; }
  .article-cover { border-radius: 20px; }
  .article-cover img { min-height: 260px; height: 62vw; }
  .article-layout { padding: 34px 0 58px; }
  .article-toc nav { grid-template-columns: 1fr; }
  .article-content h2 { font-size: 27px; }
  .article-photo-grid { grid-template-columns: 1fr; }
  .article-photo-grid img { height: 235px; }
  .related-mini { grid-template-columns: 96px 1fr; }
  .related-mini img { width: 96px; height: 96px; }

  .legal-hero { min-height: 240px; }
  .legal-hero .container { padding-block: 44px 68px; }
  .legal { margin-top: -42px; padding: 28px 22px; border-radius: 20px; }
  .legal h2 { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}


/* Final hero balance and promotional marquee */
.promo-track strong {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .08em;
}
.promo-track span {
  color: rgba(255,255,255,.84);
  font-weight: 600;
}
.hero-content {
  transform: translateY(-42px);
}
@media (max-width: 1020px) {
  .hero-content {
    transform: translateY(-22px);
  }
}
@media (max-width: 760px) {
  .hero-content {
    transform: none;
    padding-top: 64px;
  }
  .promo-track {
    gap: 16px;
  }
  .promo-track strong {
    letter-spacing: .06em;
  }
}


/* Final hero text width refinement */
@media (min-width: 1021px) {
  .hero-content { max-width: 760px; }
  .hero h1 { max-width: 690px; }
  .hero .lead { max-width: 590px; }
}
@media (min-width: 761px) and (max-width: 1020px) {
  .hero-content { max-width: 700px; }
  .hero h1 { max-width: 640px; }
  .hero .lead { max-width: 560px; }
}
